<?xml version="1.0" encoding="UTF-8"?><metadata xml:lang="de">
<Esri>
<CreaDate>20200730</CreaDate>
<CreaTime>08314900</CreaTime>
<ArcGISFormat>1.0</ArcGISFormat>
<SyncOnce>TRUE</SyncOnce>
<ModDate>20260119</ModDate>
<ModTime>120505</ModTime>
<scaleRange>
<minScale>150000000</minScale>
<maxScale>5000</maxScale>
</scaleRange>
<ArcGISProfile>ItemDescription</ArcGISProfile>
</Esri>
<tool displayname="Get Layout Templates Info Task" name="GetLayoutTemplatesInfoTool" toolboxalias="VertiGIS_Printing_Tools_5_29_0_v3">
<arcToolboxHelpPath>withheld</arcToolboxHelpPath>
<parameters>
<param datatype="Boolean" direction="Input" displayname="Return Additional Info" expression="{Return_Additional_Info}" name="Return_Additional_Info" type="Optional">
<dialogReference>&lt;DIV STYLE="text-align:Left;"&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;P&gt;&lt;SPAN&gt;When checked, additional Layout Properties will be returned for each Layout (e.g. custom Picture Elements, additional Map Frames, etc.). Default is False.&lt;/SPAN&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</dialogReference>
</param>
<param datatype="String" direction="Input" displayname="Additional Settings as JSON" expression="{Additional_Settings_as_JSON}" name="Additional_Settings_as_JSON" type="Optional">
<dialogReference>&lt;DIV STYLE="text-align:Left;"&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;P&gt;&lt;SPAN&gt;Additional Settings as JSON. Default is {}. See Task Request Schema.&lt;/SPAN&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</dialogReference>
</param>
</parameters>
<summary>&lt;DIV STYLE="text-align:Left;"&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;P&gt;&lt;SPAN&gt;Fetches the Information for available Layout Templates refered by a registered Layout Folder Datastore or by ArcGIS AGOL / Enterprise Portal Items.&lt;/SPAN&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</summary>
<usage>&lt;DIV STYLE="text-align:Left;"&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;P&gt;&lt;SPAN&gt;Specify a registered Layout Folder Datastore if Layout Templates are locally hosted and the mandatory Task Parameters before submit.&lt;/SPAN&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</usage>
<scriptExamples>
<scriptExample>
<title>Task Request Schema :: Parameter: 'Additional_Settings_as_JSON'</title>
<code>{
  "$schema": "http://json-schema.org/schema",
  "$id": "https://vertigis.com/print-request-param-settings-additional.schema.json",
  "title": "Additional Settings Layout Parameter Schema",
  "description": "Additional Request Parameters Schema for Layout Infos.",
  "type": "object",
  "properties": {
    "version": {
      "description": "(optional) Request Parameter Schema Version.",
      "type": "string",
      "default": "0.1"
    },
    "portal_layout_items": {
      "description": "(optional) Portal Layout Items to fetch Information from.",
      "type": "object",
      "properties": {
        "authentication": {
          "description": "Authentication Information for Access to an ArcGIS Online / ArcGIS Enterprise Organization.",
          "type": "object",
          "properties": {
            "anonymous": {
              "description": "Whether the Access to an ArcGIS Online / ArcGIS Enterprise Organization is anonymous. If anonymous is true, no token is required.",
              "type": "boolean"
            },
            "portal_url": {
              "description": "(optional) Portal URL of an ArcGIS Enterprise Organization. If not defined, ArcGIS Online Access is assumed.",
              "type": "string"
            },
            "token": {
              "description": "(optional) Access Token. Required for non-anonymous Access.",
              "type": "string"
            },
            "referer": {
              "description": "(optional) Access Token Referer. Required for non-anonymous Access if the token was created with the ESRI 'Generate Token Service'.",
              "type": "string"
            }
          },
          "required": [
            "anonymous"
          ]
        },
        "ids": {
          "description": "List of VGS Layout or VGS Layout Package Item IDs.",
          "type": "array",
          "minItems": 0,
          "items": [
            {
              "description": "VGS Layout or VGS Layout Package Item ID.",
              "type": "string"
            }
          ]
        }
      },
      "required": [
        "authentication",
        "ids"
      ]
    }
  }
}</code>
<para>&lt;DIV STYLE="text-align:Left;"&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;P&gt;&lt;SPAN STYLE="font-style:italic;"&gt;JSON Schema&lt;/SPAN&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</para>
</scriptExample>
</scriptExamples>
<scriptExamples>
<scriptExample>
<title>Task Response Schema</title>
<code>{
  "$schema": "http://json-schema.org/schema",
  "$id": "https://vertigis.com/layout-templates-info-response.schema.json",
  "title": "Layout Templates Info Response Schema",
  "type": "object",
  "properties": {
    "results": {
      "description": "Layout Templates Info Results Output Parameters.",
      "type": "array",
      "minItems": 2,
      "maxItems": 2,
      "items": [
        {
          "type": "object",
          "properties": {
            "paramName": {
              "description": "GP Process Output Parameter Name.",
              "type": "string"
            },
            "dataType": {
              "description": "GP Process Output Parameter Type.",
              "type": "string"
            },
            "value": {
              "description": "GP Process Output Parameter Value according to the ESRI Layout Template Information Specification: https://pro.arcgis.com/en/pro-app/latest/tool-reference/server/get-layout-templates-info.htm.",
              "type": "array",
              "minItems": 0,
              "items": [
                {
                  "description": "Layout Template Information. If Task is requested with Parameter 'Return_Additional_Info' = true, the Layout Information might contain additional Properties, not available in the ESRI Standard. See Print Documentation for more Information.",
                  "type": "object",
                  "properties": {
                    "layoutTemplate": {
                      "description": "Name of the Layout.",
                      "type": "string"
                    },
                    "pageSize": {
                      "description": "Page Size.",
                      "type": "array",
                      "items": [
                        {
                          "description": "Page Width.",
                          "type": "number"
                        },
                        {
                          "description": "Page Height.",
                          "type": "number"
                        }
                      ]
                    },
                    "pageUnits": {
                      "description": "Page Units.",
                      "type": "string"
                    },
                    "webMapFrameSize": {
                      "description": "Size of the Map Frame. If there are multiple Map Frames on the Layout, it returns Information only for the Map Frame that is named 'WEBMAP_MAP_FRAME'.",
                      "type": "array",
                      "items": [
                        {
                          "description": "Map Frame Width.",
                          "type": "number"
                        },
                        {
                          "description": "Map Frame Height.",
                          "type": "number"
                        }
                      ]
                    },
                    "layoutOptions": {
                      "description": "Further Layout Information.",
                      "type": "object",
                      "properties": {
                        "hasTitleText": {
                          "description": "Whether a predefined Title Text is available.",
                          "type": "boolean"
                        },
                        "hasAuthorText": {
                          "description": "Whether a predefined Author Text is available.",
                          "type": "boolean"
                        },
                        "hasCopyrightText": {
                          "description": "Whether a predefined Copyright Text is available.",
                          "type": "boolean"
                        },
                        "hasLegend": {
                          "description": "Whether a Legend Element is available.",
                          "type": "boolean"
                        },
                        "customTextElements": {
                          "description": "List of available Custom Text Elements. See Print Documentation for more Information on Custom Text Elements.",
                          "type": "array",
                          "minItems": 0,
                          "items": [
                            {
                              "description": "Custom Text Element.",
                              "type": "object",
                              "properties": {
                                "&lt;element_name&gt;": {
                                  "description": "Default Value of the Element.",
                                  "type": "string"
                                }
                              },
                              "required": [
                                "&lt;element_name&gt;"
                              ]
                            }
                          ]
                        },
                        "customPictureElements": {
                          "description": "[non-ESRI Property] List of available Custom Picture Elements. See Print Documentation for more Information on Custom Picture Elements.",
                          "type": "array",
                          "minItems": 0,
                          "items": [
                            {
                              "description": "Custom Picture Element.",
                              "type": "object",
                              "properties": {
                                "&lt;element_name&gt;": {
                                  "description": "Value of the Element.",
                                  "type": "object",
                                  "properties": {
                                    "value": {
                                      "description": "Default Value of the Element.",
                                      "type": "string"
                                    },
                                    "elementSize": {
                                      "description": "Width and Height of the Element in Page Units.",
                                      "type": "array",
                                      "minItems": 2,
                                      "maxItems": 2,
                                      "items": [
                                        {
                                          "description": "Value.",
                                          "type": "number"
                                        }
                                      ]
                                    }
                                  },
                                  "required": [
                                    "value",
                                    "elementSize"
                                  ]
                                }
                              },
                              "required": [
                                "&lt;element_name&gt;"
                              ]
                            }
                          ]
                        }
                      },
                      "required": [
                        "hasTitleText",
                        "hasAuthorText",
                        "hasCopyrightText",
                        "hasLegend"
                      ]
                    },
                    "webMapFrameElements": {
                      "description": "[non-ESRI Property] Further Map Frame Information.",
                      "type": "array",
                      "minItems": 0,
                      "items": [
                        {
                          "description": "Map Frame Information.",
                          "type": "object",
                          "properties": {
                            "name": {
                              "description": "Name of the Map Frame.",
                              "type": "string"
                            },
                            "elementSize": {
                              "description": "Width and Height of the Element in Page Units.",
                              "type": "array",
                              "minItems": 2,
                              "maxItems": 2,
                              "items": [
                                {
                                  "description": "Value.",
                                  "type": "number"
                                }
                              ]
                            }
                          },
                          "required": [
                            "name",
                            "elementSize"
                          ]
                        }
                      ]
                    }
                  },
                  "required": [
                    "layoutTemplate",
                    "pageSize",
                    "pageUnits",
                    "layoutOptions"
                  ]
                }
              ]
            }
          },
          "required": [
            "paramName",
            "dataType",
            "value"
          ]
        },
        {
          "type": "object",
          "properties": {
            "paramName": {
              "description": "GP Process Log File Output Parameter Name.",
              "type": "string"
            },
            "dataType": {
              "description": "GP Process Log File Output Parameter Type.",
              "type": "string"
            },
            "value": {
              "description": "GP Process Log File Output Parameter Value.",
              "type": "object",
              "properties": {
                "url": {
                  "description": "Log File URL.",
                  "type": "string"
                }
              },
              "required": [
                "url"
              ]
            }
          },
          "required": [
            "paramName",
            "dataType",
            "value"
          ]
        }
      ]
    },
    "messages": {
      "description": "GP Process Output Messages. Shown according to their Severity when publishing the Toolbox.",
      "type": "array",
      "minItems": 0,
      "items": {}
    }
  },
  "required": [
    "results",
    "messages"
  ]
}</code>
<para>&lt;DIV STYLE="text-align:Left;"&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;P&gt;&lt;SPAN STYLE="font-style:italic;"&gt;JSON Schema&lt;/SPAN&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</para>
</scriptExample>
</scriptExamples>
<scriptExamples>
<scriptExample>
<title>Sample - Request Parameter :: 'Additional_Settings_as_JSON'</title>
<code>{
  "version": "0.1",
  "portal_layout_items": {
    "authentication": {
      "anonymous": false,
      "portal_url": "https://arcgis.com",
      "token": "11ywROwE4fybvSp-3XagNqqWzASjuFqxKgyi2dwO7P6GMvV7ZGXZzXITV7fYHoU2VJ5okZYvD7W5oEwN1Q76XoCfqdh4UwFQiR2Hl2gLevaL5JTdL6t7vV1wTz4hJ85_HJRKA1R6OIferzH_3qqKj_eBS3Dwcmd6IFIzuCyFRjPUa1ORJ86fKt28mEXRyaOutg7E1zp-PiSgR8wmxoGFVg..",
      "referer": "nbweingartner.int.vertigis.com"
    },
    "ids": [
      "vglay_5d9948fa5a91494c849dcc2c9adcae3b",
      "vglay_ce083eee14b549e0954004800dc33f03",
      "vglay_918e1f1bdeed4fc5994b44d6a1990dcc",
      "vglay_510fa17ab23846b2a40767a8e2364f72"
    ]
  }
}</code>
<para>&lt;DIV STYLE="text-align:Left;"&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;P&gt;&lt;SPAN STYLE="font-style:italic;"&gt;Layout Template Infos for specific ArcGIS Online VGS Layout Portal Items&lt;/SPAN&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</para>
</scriptExample>
</scriptExamples>
<scriptExamples>
<scriptExample>
<title>Sample - Request Parameter :: 'Additional_Settings_as_JSON'</title>
<code>{
  "version": "0.1",
  "portal_layout_items": {
    "authentication": {
      "anonymous": false,
      "portal_url": "https://arcgis.com",
      "token": "_IguTGHFQiSHfX7GhVtMf01_X5UcQcAf9PlMK-NUgHeHyzBUndwsbVd_WL_qV2exVXroNPjSsEH87DeHrYn3Df-ql7HpJokEPvQnuVXgAOm6kW-bvdp9wb8txzUAAxLFn5YPmjt_gpObNFxGqDtq8-hc8dCLZYD8Fmn57-RH9xA4ux3uBMkNbk-iQXaReSehCDVIPOv4zHpVFEG9qe7opQ..",
      "referer": "nbweingartner.int.vertigis.com"
    },
    "ids": [
      "vglaypk_c144ee9a948a4f6283f6c9cca5ba11e4"
    ]
  }
}</code>
<para>&lt;DIV STYLE="text-align:Left;"&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;P&gt;&lt;SPAN STYLE="font-style:italic;"&gt;Layout Template Infos for specific ArcGIS Online VGS Layout Package Portal Item&lt;/SPAN&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</para>
</scriptExample>
</scriptExamples>
<scriptExamples>
<scriptExample>
<title>Sample - Response Parameter :: 'Output_JSON'</title>
<code>[
{
    "layoutTemplate": "fdbed030b6bc433e8387b91adae7d06a",
    "portalItem": {
      "id": "fdbed030b6bc433e8387b91adae7d06a",
      "home": "https://Latitudegeo.maps.arcgis.com/home/item.html?id=fdbed030b6bc433e8387b91adae7d06a",
      "name": "36482b8e4cd74b8fa1ab213d2ce1e472.pagx",
      "title": "VGS A3 Portrait Default 01",
      "description": "A3 Portrait Layout with metric Units",
      "vgsId": "5d9948fa5a91494c849dcc2c9adcae3b",
      "vgsLayoutPackageRefs": [
        "c144ee9a948a4f6283f6c9cca5ba11e4"
      ],
      "vgsPrintPageType": "DEFAULT",
      "vgsPrintRequestTypes": [
        "DEFAULT",
        "LINE",
        "GRID",
        "TIME_SERIES",
        "RANGE_SERIES"
      ]
    },
    "pageSize": [
      297.0,
      420.0
    ],
    "pageUnits": "MILLIMETER",
    "webMapFrameSize": [
      256.13,
      362.0
    ],
    "layoutOptions": {
      "hasTitleText": false,
      "hasAuthorText": false,
      "hasCopyrightText": false,
      "hasLegend": false,
      "customTextElements": [
        {
          "vglay_id": "&lt;vglay_id&gt;"
        },
        {
          "vglay_default_ref": "&lt;vglay_default_ref&gt;"
        },
        {
          "time_caption": "&lt;time_caption&gt;"
        },
        {
          "time_value": "&lt;time_value&gt;"
        },
        {
          "range_caption": "&lt;range_caption&gt;"
        },
        {
          "range_value": "&lt;range_value&gt;"
        },
        {
          "syn_crs": "&lt;syn_crs&gt;"
        },
        {
          "scale_value": "&lt;scale_value&gt;"
        },
        {
          "scale_caption": "&lt;scale_caption&gt;"
        },
        {
          "scale_value_ov": "&lt;scale_value_ov&gt;"
        },
        {
          "scale_caption_ov": "&lt;scale_caption_ov&gt;"
        },
        {
          "orgadr_value": "Wilhelm-Greil-Straße 17,\nA-6020 Innsbruck"
        },
        {
          "orgname_value": "&lt;orgname_value&gt;"
        },
        {
          "title_value": "&lt;title_value&gt;"
        },
        {
          "syn_index": "&lt;syn_index&gt;"
        },
        {
          "creator_description": "&lt;creator_description&gt;"
        },
        {
          "creator_value": "&lt;creator_value&gt;"
        },
        {
          "creator_caption": "&lt;creator_caption&gt;"
        },
        {
          "createdat_value": "&lt;createdat_value&gt;"
        },
        {
          "createdat_caption": "&lt;createdat_caption&gt;"
        },
        {
          "disclaimer_value": "&lt;disclaimer_value&gt;"
        }
      ],
      "customPictureElements": [
        {
          "company_logo": {
            "value": "C:VertiGIS-Logo-Color.jpg",
 
           "elementSize": [
              30.0,
              15.0
            ]
          }
        }
      ]
    },
    "webMapFrameElements": [
      {
        "name": "OVERVIEW",
        "elementSize": [
          74.0,
          30.52
        ]
      },
      {
        "name": "WEBMAP_MAP_FRAME",
        "elementSize": [
          256.13,
          362.0
        ]
      }
    ]
  },
{
    "layoutTemplate": "728e2ca1e2fb4db6a8012a8c5745b077",
    "portalItem": {
      "id": "728e2ca1e2fb4db6a8012a8c5745b077",
      "home": "https://Latitudegeo.maps.arcgis.com/home/item.html?id=728e2ca1e2fb4db6a8012a8c5745b077",
      "name": "582a77bf872740959b805a57f3234d59.pagx",
      "title": "VGS A3 Portrait Cover 01",
      "description": "A3 Portrait Cover Layout in metric Units",
      "vgsId": "ce083eee14b549e0954004800dc33f03",
      "vgsLayoutPackageRefs": [
        "c144ee9a948a4f6283f6c9cca5ba11e4",
        "6ecf4a0129104b33b00ed12d0e518635",
        "ad90e99a954847f2ad25c1eeaa011756"
      ],
      "vgsPrintPageType": "COVER",
      "vgsPrintRequestTypes": [
        "DEFAULT",
        "LINE",
        "GRID",
        "INFINITE",
        "TIME_SERIES",
        "RANGE_SERIES"
      ]
    },
    "pageSize": [
      297.0,
      420.0
    ],
    "pageUnits": "MILLIMETER",
    "layoutOptions": {
      "hasTitleText": false,
      "hasAuthorText": false,
      "hasCopyrightText": false,
      "hasLegend": false,
      "customTextElements": [
        {
          "vglay_id": "&lt;vglay_id&gt;"
        },
        {
          "vglay_default_ref": "&lt;vglay_id&gt;"
        },
        {
          "title_value": "DEMONSTRATION\nA3 PORTRAIT COVER PAGE"
        },
        {
          "orgadr_value": "Wilhelm-Greil-Straße 17,\nA-6020 Innsbruck"
        },
        {
          "orgname_value": "&lt;orgname_value&gt;"
        },
        {
          "syn_index": "&lt;syn_index&gt;"
        },
        {
          "creator_description": "&lt;creator_description&gt;"
        },
        {
          "creator_value": "&lt;creator_value&gt;"
        },
        {
          "creator_caption": "&lt;creator_caption&gt;"
        },
        {
          "createdat_value": "&lt;createdat_value&gt;"
        },
        {
          "createdat_caption": "&lt;createdat_caption&gt;"
        },
        {
          "disclaimer_value": "&lt;disclaimer_value&gt;"
        }
      ],
      "customPictureElements": [
        {
          "company_logo": {
            "value": "C:VertiGIS-Logo-Color.jpg",
 
           "elementSize": [
              30.0,
              15.0
            ]
          }
        }
      ]
    }
  }
]</code>
<para>&lt;DIV STYLE="text-align:Left;"&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;P&gt;&lt;SPAN STYLE="font-style:italic;"&gt;Extended Layout Templates Infos for Portal Layout Items&lt;/SPAN&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</para>
</scriptExample>
</scriptExamples>
</tool>
<dataIdInfo>
<idCitation>
<resTitle>Get Layout Templates Info Task</resTitle>
</idCitation>
<searchKeys>
<keyword>VertiGIS</keyword>
<keyword>Printing</keyword>
<keyword>Layout</keyword>
<keyword>Template</keyword>
</searchKeys>
<idCredit>Copyright 2023, VertiGIS GmbH</idCredit>
</dataIdInfo>
<distInfo>
<distributor>
<distorFormat>
<formatName>ArcToolbox Tool</formatName>
</distorFormat>
</distributor>
</distInfo>
<mdHrLv>
<ScopeCd value="005"/>
</mdHrLv>
<mdDateSt Sync="TRUE">20230814</mdDateSt>
</metadata>
