github.com/slspeek/camlistore_namedsearch@v0.0.0-20140519202248-ed6f70f7721a/doc/schema/files/symlink.txt (about) 1 Symlink schema 2 3 {"camliVersion": 1, 4 "camliType": "symlink", 5 6 // 7 // INCLUDE ALL REQUIRED & ANY OPTIONAL FIELDS FROM file-common.txt 8 // 9 10 // Exactly one of: 11 12 // If UTF-8: 13 "symlinkTarget": "../foo/blah", 14 15 // If unknown charset & have raw 8-bit filenames and can't convert 16 // to UTF-8. The array is a mix of UTF-8 and/or non-UTF-8 bytes (0-255). 17 "symlinkTargetBytes": ["../foo/Am", 233, "lie.jpg"], // e.g. Amélie in ISO-8859-1 when charset unknown 18 }