Quantcast
Channel: Mockaroo Community Forum - Latest posts
Viewing all articles
Browse latest Browse all 2665

Unable to reference another dataset column in other schema

$
0
0

I have a dataset of following JSON structure.

[{
		"articles": [{
			"action": "edit",
			"messageId": "75ab4788-af4e-478d-bb84-b5d5d5c4c080",
			"articleNumber": "3313"

		}]
	},
	{
		"articles": [{
			"action": "add",
			"messageId": "15ab4788-af4e-478d-bb84-b5d5d5c4c090",
			"articleNumber": "5316"

		}]
	}
]

I want to reference “articleNumber” property in another schema, but getting error which is below.

[{
  "purchaseOrders": [
    {
      "action": "delete",
      "lines": [
        {
          "articleNumber": "error: no implicit conversion of String into Integer"
        }
      ]
    }
  ]
}]

setup

Can someone please suggest, If I am missing something.


Viewing all articles
Browse latest Browse all 2665

Trending Articles