<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Max size for Parameter schema in a callable recipe[SOLVED] in Workato Pros Discussion Board</title>
    <link>https://systematic.workato.com/t5/workato-pros-discussion-board/max-size-for-parameter-schema-in-a-callable-recipe-solved/m-p/3303#M1585</link>
    <description>&lt;P&gt;Or the link here: https://pastebin.com/uC8xQXDR&lt;/P&gt;</description>
    <pubDate>Sat, 13 Aug 2022 02:04:52 GMT</pubDate>
    <dc:creator>samuel-malaga</dc:creator>
    <dc:date>2022-08-13T02:04:52Z</dc:date>
    <item>
      <title>Max size for Parameter schema in a callable recipe[SOLVED]</title>
      <link>https://systematic.workato.com/t5/workato-pros-discussion-board/max-size-for-parameter-schema-in-a-callable-recipe-solved/m-p/3300#M1582</link>
      <description>&lt;P&gt;I've been trying create a parameter schema in a callable recipe using a Json and im always getting the following error: &lt;STRONG&gt;Invalid schema(found fields with invalid type/name) &lt;/STRONG&gt;but the message is kind of odd because this schema is used in another recipe i developed in workato and in said recipe the schema is valid, could it be the size of it that is triggering this error? There is specific information about the limits of a json schema for a callable recipe parameter schema?&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;Ps: The schema contains 400 fields, i already tried to update the scema by json(same error) and by uploading a file(file too big error)&lt;/P&gt;</description>
      <pubDate>Fri, 12 Aug 2022 21:38:30 GMT</pubDate>
      <guid>https://systematic.workato.com/t5/workato-pros-discussion-board/max-size-for-parameter-schema-in-a-callable-recipe-solved/m-p/3300#M1582</guid>
      <dc:creator>samuel-malaga</dc:creator>
      <dc:date>2022-08-12T21:38:30Z</dc:date>
    </item>
    <item>
      <title>Re: Max size for Parameter schema in a callable recipe[SOLVED]</title>
      <link>https://systematic.workato.com/t5/workato-pros-discussion-board/max-size-for-parameter-schema-in-a-callable-recipe-solved/m-p/3301#M1583</link>
      <description>&lt;P&gt;Are you able to share the schema or link to it? You can use pastebin.com to quickly make a link to share text.&lt;/P&gt;</description>
      <pubDate>Sat, 13 Aug 2022 01:52:23 GMT</pubDate>
      <guid>https://systematic.workato.com/t5/workato-pros-discussion-board/max-size-for-parameter-schema-in-a-callable-recipe-solved/m-p/3301#M1583</guid>
      <dc:creator>gary1</dc:creator>
      <dc:date>2022-08-13T01:52:23Z</dc:date>
    </item>
    <item>
      <title>Re: Max size for Parameter schema in a callable recipe[SOLVED]</title>
      <link>https://systematic.workato.com/t5/workato-pros-discussion-board/max-size-for-parameter-schema-in-a-callable-recipe-solved/m-p/3302#M1584</link>
      <description>&lt;P&gt;Here is the schema file already in Json. This was extracted from workato itself&lt;/P&gt;</description>
      <pubDate>Sat, 13 Aug 2022 02:02:37 GMT</pubDate>
      <guid>https://systematic.workato.com/t5/workato-pros-discussion-board/max-size-for-parameter-schema-in-a-callable-recipe-solved/m-p/3302#M1584</guid>
      <dc:creator>samuel-malaga</dc:creator>
      <dc:date>2022-08-13T02:02:37Z</dc:date>
    </item>
    <item>
      <title>Re: Max size for Parameter schema in a callable recipe[SOLVED]</title>
      <link>https://systematic.workato.com/t5/workato-pros-discussion-board/max-size-for-parameter-schema-in-a-callable-recipe-solved/m-p/3303#M1585</link>
      <description>&lt;P&gt;Or the link here: https://pastebin.com/uC8xQXDR&lt;/P&gt;</description>
      <pubDate>Sat, 13 Aug 2022 02:04:52 GMT</pubDate>
      <guid>https://systematic.workato.com/t5/workato-pros-discussion-board/max-size-for-parameter-schema-in-a-callable-recipe-solved/m-p/3303#M1585</guid>
      <dc:creator>samuel-malaga</dc:creator>
      <dc:date>2022-08-13T02:04:52Z</dc:date>
    </item>
    <item>
      <title>Re: Max size for Parameter schema in a callable recipe[SOLVED]</title>
      <link>https://systematic.workato.com/t5/workato-pros-discussion-board/max-size-for-parameter-schema-in-a-callable-recipe-solved/m-p/3304#M1586</link>
      <description>&lt;P&gt;Thanks for sharing. The "name" key can't contain spaces.&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;If you try this, it will throw the error:&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;[&lt;/P&gt;&lt;P&gt;  {&lt;/P&gt;&lt;P&gt;    "control_type": "text",&lt;/P&gt;&lt;P&gt;    "label": "Batch  ID",&lt;/P&gt;&lt;P&gt;    "type": "string",&lt;/P&gt;&lt;P&gt;    "name": "Batch ID"&lt;/P&gt;&lt;P&gt;  }&lt;/P&gt;&lt;P&gt;]&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;If you try this, it will work fine:&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;[&lt;/P&gt;&lt;P&gt;  {&lt;/P&gt;&lt;P&gt;    "control_type": "text",&lt;/P&gt;&lt;P&gt;    "label": "Batch  ID",&lt;/P&gt;&lt;P&gt;    "type": "string",&lt;/P&gt;&lt;P&gt;    "name": "Batch_ID"&lt;/P&gt;&lt;P&gt;  }&lt;/P&gt;&lt;P&gt;]&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Sat, 13 Aug 2022 03:07:03 GMT</pubDate>
      <guid>https://systematic.workato.com/t5/workato-pros-discussion-board/max-size-for-parameter-schema-in-a-callable-recipe-solved/m-p/3304#M1586</guid>
      <dc:creator>gary1</dc:creator>
      <dc:date>2022-08-13T03:07:03Z</dc:date>
    </item>
    <item>
      <title>Re: Max size for Parameter schema in a callable recipe[SOLVED]</title>
      <link>https://systematic.workato.com/t5/workato-pros-discussion-board/max-size-for-parameter-schema-in-a-callable-recipe-solved/m-p/3305#M1587</link>
      <description>&lt;P&gt;It's worth noting that when you use the CSV connector to generate the JSON schema using an existing header with spaces and irregular characters, it &lt;STRONG&gt;bypasses &lt;/STRONG&gt;the check for spaces and irregular characters. This means that if you try to copy/paste the schema into another action (like a Collection), it won't work.&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;My fix for this is to update the source CSV header by find/replacing all spaces with underscores, and any other invalid characters, &lt;EM&gt;then&lt;/EM&gt; doing the CSV header schema generation, and then finally copy/pasting the "good" JSON schema into the Collection.&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;This happened to me very recently, so I feel your pain : )&lt;/P&gt;</description>
      <pubDate>Sat, 13 Aug 2022 03:13:48 GMT</pubDate>
      <guid>https://systematic.workato.com/t5/workato-pros-discussion-board/max-size-for-parameter-schema-in-a-callable-recipe-solved/m-p/3305#M1587</guid>
      <dc:creator>gary1</dc:creator>
      <dc:date>2022-08-13T03:13:48Z</dc:date>
    </item>
  </channel>
</rss>

