next up previous contents
Next: Introduction to file systems Up: Schema and type based Previous: Example 1   Contents

Example 2

As an other example I will define the schemas for storing photos:


schema Person
  String name
  String relation
  Relationship Contacts contact
end

schema GeographicPos
  String koordinat
  String NameOfPlace
end

schema Photo inherit File
  Person[] person
  GeographicPos pos
end



2007-11-09