# File lib/puppet/file_serving/metadata.rb, line 87 87: def to_pson_data_hash 88: { 89: 'document_type' => 'FileMetadata', 90: 91: 'data' => super['data'].update( 92: { 93: 'owner' => owner, 94: 'group' => group, 95: 'mode' => mode, 96: 'checksum' => { 97: 'type' => checksum_type, 98: 'value' => checksum 99: }, 100: 'type' => ftype, 101: 'destination' => destination, 102: 103: }), 104: 'metadata' => { 105: 'api_version' => 1 106: } 107: } 108: end