Lines Matching refs:key
125 * `key` : <strong>(required)</strong> The path locator (String)
138 array of objects with key:value pairs assuming the fields in
194 key: 'name',
198 key: 'price',
271 // Fall back to treat resultListLocator as a simple key
310 field, key, locator, path, parser, val,
317 key = field.key || field; // Find the key
318 locator = field.locator || key; // Find the locator
325 key : key,
330 key : key,
336 Y.log("Invalid key syntax: " + key, "warn", "dataschema-json");
347 key : key,
370 key: path.key,
380 record[path.key] = Base.parse.call(this,
388 record[path.key] = Base.parse.call(this,
395 key = fieldParsers[j].key;
396 record[key] = fieldParsers[j].parser.call(this, record[key]);
398 if (record[key] === undefined) {
399 record[key] = null;
422 var key, path;
423 for(key in metaFields) {
424 if (metaFields.hasOwnProperty(key)) {
425 path = SchemaJSON.getPath(metaFields[key]);
427 data_out.meta[key] = SchemaJSON.getLocationValue(path, json_in);