RDF Site Summary 1.0 Modules: Job

Authors

Travis Owens, Personal Homepage

Version

Latest Version: http://216.244.96.20/travis/papers/rss-module-job.html

0.93  (2002-10-09) - added fax metadata tag, fixed some typos
0.92  (2002-10-07) - added more contact metadata tags
0.91  (2002-10-04) - added salary metadata tags
0.90  (2002-10-03)

Status

Request for Comment

Rights

Copyright © 2002 by the Author(s).

Permission to use, copy, modify and distribute the RDF Site Summary 1.0 Specification and its accompanying documentation for any purpose and without fee is hereby granted in perpetuity, provided that the above copyright notice and this paragraph appear in all copies. The copyright holders make no representation about the suitability of the specification for any purpose. It is provided "as is" without expressed or implied warranty.

This copyright applies to the RDF Site Summary 1.0 Specification and accompanying documentation and does not extend to the RSS format itself.

Description

The Job Metadata Element Set provides some metadata elements needed to fully decribe a job in a small format suitable for streaming.

Namespace Declarations

Model

<channel> Elements:

Example

<?xml version="1.0" encoding="utf-8"?> 

<rdf:RDF 
  xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" 
  xmlns:job="http://purl.org/job/elements/1.1/"
  xmlns="http://purl.org/rss/1.0/"
> 

  <channel rdf:about="http://acmeinct.com/jobs/rss/">
    <title>AcmeInc Job Feed</title>
    <link>http://www.acmeinc.com</link>
    <description>IT jobs for the Windows lover in you</description>
    <dc:creator>Rael Dornfest (mailto:rael@oreilly.com)</dc:creator>
    <dc:rights>Copyright 2002 Acme, Inc.</dc:rights>
    <dc:date>2000-01-01T12:00+00:00</dc:date>

    <image rdf:resource="http://AcmeInc.com/images/logo-rss.gif" />

    <items>
      <rdf:Seq>
        <rdf:li resource="http://AcmeInc.com/jobs/?1234" />
      </rdf:Seq>
    </items>

    <textinput rdf:resource="http://AcmeInc.com" />

  </channel>

  <image rdf:about="http://AcmeInc.com/images/logo-rss.gif">
    <title>AcmeInc Logo</title>
    <url>http://AcmeInc.com/images/logo-rss.gif</url>
    <link>http://acmeinc.com</link>
  </image>

  <item rdf:about="http://AcmeInc.com/jobs/?1234">
    <title>C# Software Engineer</title> 
    <link>http://AcmeInc.com/jobs/?1234</link>
    <description>Coding C# applications under Windows.NET server using
    MS-SQL 2002 server for a company wide intranet.  Job benefits include 410k,
    double overtime pay and company gym.</description>
    <dc:date>2002-10-03T12:00</dc:date>
    <job:deadline>2002-10-31T12:00</job:deadline>
    <job:status>career</job:status>
    <job:positions>3</job:positions>
    <job:salarymin>$50,000</job:salarymin>
    <job:salarymax>$65,000</job:salarymax>
    <job:salarydenomination>USD</job:salarydenomination>
    <job:city>Manhattan</job:city>
    <job:state>New York</job:state>
    <job:country>USA</job:country>
    <job:requirements>2 years exp coding C#, bachelors degree</job:requirements>
    <job:replyurl>http://AcmeInc.com/jobs/?1234&action=apply</job:replyurl>
    <job:replyemail>jobs@acmeinc.com</job:replyemail>
    <job:replyphone>555-555-5555</job:replyphone>
    <job:replyname>John Doe</job:replyname>
  </item>

</rdf:RDF>