[contents]


Abstract

foo bar

Status of this document

This section describes the status of this document at the time of its publication. Other documents may supersede this document. A list of current W3C publications and the latest revision of this technical report can be found in the W3C technical reports index at http://www.w3.org/TR/.

More things to be added later ...


Table of Contents

To be defined at a later stage ...


1 Introduction

This note presents an RDF representation of a message field defined in [RFC822].

2. RFC822 Classes and properties

2.1 The Field class

The Field class represents a field defined in [RFC822]. It can have the following properties:

3. Example

<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF
  xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  xmlns:rfc822="http://www.example.org/rfc822#">
  <rfc822:Field>
    <rfc822:fieldName>MIME-Version</rfc822:fieldName>
    <rfc822:fieldBody>1.0</rfc822:fieldBody>
  </rfc822:Field>
  <rfc822:Field>
    <rfc822:fieldName>Content-Transfer-Encoding</rfc822:fieldName>
    <rfc822:fieldBody>quoted-printable</rfc822:fieldBody>
  </rfc822:Field>
  <rfc822:Field>
    <rfc822:fieldName>Message-ID</rfc822:fieldName>
    <rfc822:fieldBody>&lt;giq9135goubow@example.org&gt;</rfc822:fieldBody>
  </rfc822:Field>
</rdf:RDF>

4. RDF Schema

<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE rdf:RDF [
  <!ENTITY rfc822-ns "http://www.example.org/rfc822#">
]>
<rdf:RDF
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#">

  <rdf:Description rdf:about="&rfc822-ns;">
    <rdfs:comment>A namespace for describing RFC 822 messages (http://www.ietf.org/rfc/rfc0822.txt)</rdfs:comment>
  </rdf:Description>


  <rdfs:Class rdf:about="&rfc822-ns;Field">
    <rdfs:label xml:lang="en">Field</rdfs:label>
    <rdfs:comment>A field</rdfs:comment>
  </rdfs:Class>

  <rdf:Property rdf:about="&rfc822-ns;fieldName">
    <rdfs:label xml:lang="en">Field name</rdfs:label>
    <rdfs:comment>A field name</rdfs:comment>
    <rdfs:domain rdf:resource="&rfc822-ns;Field"/>
  </rdf:Property>

  <rdf:Property rdf:about="&rfc822-ns;fieldBody">
    <rdfs:label xml:lang="en">Field body</rdfs:label>
    <rdfs:comment>A field body</rdfs:comment>
    <rdfs:domain rdf:resource="&rfc822-ns;Field"/>
  </rdf:Property>

</rdf:RDF>

References

[RFC822]
"Standard for ARPA Internet Text Messages" – David H. Crocker, August 13, 1982.