Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

This document describes the objects and structures that compose a Fedora repository. 

A Fedora 4 repository consists of a directed acyclic graph of resources where edges represent a parent-child relation.

...

  • A resource is an object or datastream.
  • An edge is a relationship (in this case, a parent-child relationship) that links two resources. Edges are represented as RDF properties in a Fedora object.
  • A graph is a set of resources connected by edges. The entire set of objects and their relationships to each other form a graph.
  • A directed graph is a graph whose edges have direction associated with them: that is, the relations that link the resources move in a given direction from one resource to the next.  An example of an edge with a direction is isAChildOf. The relationship expresses a direction from the child to the parent. The relationship isParentOf can also link the same two resources, but in the opposite direction.
  • A directed acyclic graph is a graph in which edges never form loops (i.e., cycles) of resources. That is, if you start at resource A, then follow a set of identical relations from that resource to other resources in a chain, you will never end up back at resource A. 
  • A hierarchical tree, such as the one modeled in the Fedora repository by the relationships provided by the JCR underpinnings of Fedora, is a classic example of a directed acyclic graph of resources. In this sense, no Fedora object can ever be its own grandpa. Of course, the additional relationships that you, the user, distribute amongst among your objects are entirely up to you. You can make them as simple or complex as you like.

...

Some resources may possess a "binary" payload with a length and digest. These resources are normally leaves in the tree (meaning they have no child resources of their own). They are the best match in the current Fedora 4 software to the Fedora 3 concept of "datastream".

...

Properties may be single- or multi-valuedmultivalued, and are typed. Some properties are reserved for internal-use under mutation only (e.g. those in the fedora-internal namespace), but can otherwise be used freely by implementors. By default, properties are multivalued string types.

...