1Import DEFINITIONS IMPLICIT TAGS ::=
2BEGIN
3EXPORTS Person;
4--IMPORTS
5--	OPERATION, ERROR FROM Remote-Operations-Notation
6--	{joint-iso-ccitt(2) remote-operations(4) notation(0)};
7--	{joint-iso-ccitt remote-operations notation};
8
9Person ::= [PRIVATE 19] SEQUENCE {
10	name PrintableString,
11	location INTEGER {home(0),field(1),roving(2)},
12	age INTEGER OPTIONAL
13	}
14END
15