Сравнение версий

Ключ

  • Эта строка добавлена.
  • Эта строка удалена.
  • Изменено форматирование.

...

The action returns collection of all JSON keys.

Action icon

Image Modified

Settings of parameters

Свойство
Property
Англ. наименование
Description
Описание
Type
ТипПример заполненияОбязательность заполнения поляПараметры

JSON

JSON

JSON для обработки
Filling exampleMandatory field
Parameters
JSONJSON for processing. Note: The action does not work with JSON arrays (start with „[„).Robin.JSON
Да

Yes
Результаты
Results

Коллекция ключей

Collection of all keys
Переменная, содержащая коллекцию всех ключей JSON
A variable containing a collection of all JSON keys.Robin.Collection

Special conditions of use

None. 

Example of use

Task

Get JSON file key collection test.json and read the first key of the collection at index 0.

Блок кода
titletest.json
linenumberstrue
collapsetrue
{
	"firstname":"Joe",
	"lastname": "Jackson",
	"gender":"male",
	"age": 28,
	"address": {
		"streetAddress": "101",
		"city": "San Diego",
		"state": "CA"
	},
	"phonenumber": [
	{ "type": "home", "number": "9349282382"}
	]
}

...

The program robot completed successfully. The keys collection from JSON was obtained.

The key at index 0 is obtained.