function schema
%SCHEMA Defines properties for METADATA class

%   Copyright 1986-2003 The MathWorks, Inc.
%   $Revision: 1.1.6.1 $ $Date: 2004/12/26 21:34:33 $

% Register class 
c = schema.class(findpackage('tsdata'),'metadata');

% Public properties
schema.prop(c,'Units','string'); 
schema.prop(c,'Scale','MATLAB array');  
schema.prop(c,'Interpolation','handle');
% make 'offset' property more flexible, instead of double
schema.prop(c,'Offset','MATLAB array'); 
%schema.prop(c,'Offset','double'); 
schema.prop(c,'Name','string'); 
p = schema.prop(c,'GridFirst','bool');
p.FactoryValue = true;
 


