Lines Matching refs:key
123 * `key` : <strong>(required)</strong> The path locator (String)
136 array of objects with key:value pairs assuming the fields in
192 key: 'name',
196 key: 'price',
269 // Fall back to treat resultListLocator as a simple key
308 field, key, locator, path, parser, val,
315 key = field.key || field; // Find the key
316 locator = field.locator || key; // Find the locator
323 key : key,
328 key : key,
334 Y.log("Invalid key syntax: " + key, "warn", "dataschema-json");
345 key : key,
368 key: path.key,
378 record[path.key] = Base.parse.call(this,
386 record[path.key] = Base.parse.call(this,
393 key = fieldParsers[j].key;
394 record[key] = fieldParsers[j].parser.call(this, record[key]);
396 if (record[key] === undefined) {
397 record[key] = null;
420 var key, path;
421 for(key in metaFields) {
422 if (metaFields.hasOwnProperty(key)) {
423 path = SchemaJSON.getPath(metaFields[key]);
425 data_out.meta[key] = SchemaJSON.getLocationValue(path, json_in);