{
  "Info": {
    "Label": "Create Post",
    "Description": "Creates a new post from a title and body.",
    "RequestType": "POST",
    "DoNotUseBaseURL": false,
    "RequestPath": "posts",
    "Body": "{\"title\": \"{title}\", \"body\": \"{body}\", \"userId\": {userId}}",
    "Type": "Trigger",
    "FeedbackType": "None"
  },
  "Headers": {
    "Headers": [
      {
        "Key": "Content-Type",
        "Value": "application/json; charset=UTF-8"
      }
    ]
  },
  "Variables": [
    {
      "Label": "Title",
      "Description": "Post title",
      "Tag": "title",
      "Type": "String",
      "Min": 0,
      "Max": 1
    },
    {
      "Label": "Body",
      "Description": "Post body text",
      "Tag": "body",
      "Type": "String",
      "Min": 0,
      "Max": 1
    },
    {
      "Label": "User ID",
      "Description": "Author user ID (1-10)",
      "Tag": "userId",
      "Type": "Int",
      "Min": 1,
      "Max": 10
    }
  ]
}
