XML:NewAward

From ISFDB
Jump to navigation Jump to search

Introduction

The NewAward submission creates a new award record.

Required Tags

Award Associated With a Bibliographic Record

The submission type keyed off the presence of a Record tag. This submission contains five required tags:

  • Record - Specifies the title associated with the award.
  • AwardType - The encoded award type (Hugo, Nebula, etc...).
  • AwardYear - Year awarded.
  • AwardCategory - The award category (novel, novella, etc...).
  • AwardLevel - The award level (1=win, 2=nomination, etc...).


Award Not Associated With a Bibliographic Record

The submission type is used for non-bibliographic award winners, such as a movie or script. This submission contains six required tags:

  • AwardTitle - Indicates the name associated with the award.
  • AwardAuthors - Contains some number of AwardAuthor tags, one for each author associated with the title.
  • AwardType - The encoded award type (Hugo, Nebula, etc...).
  • AwardYear - Year awarded.
  • AwardCategory - The award category (novel, novella, etc...).
  • AwardLevel - The award level (1=win, 2=nomination, etc...).


Examples

Bibliographic Example

 <?xml version="1.0" encoding="iso-8859-1" ?>
 <IsfdbSubmission>
   <NewAward>
     <Subject>The Red Bow</Subject>
     <Submitter>Alvonruff</Submitter>
     <Record>869624</Record>
     <AwardType>St</AwardType>
     <AwardYear>2003-00-00</AwardYear>
     <AwardCategory>Short Fiction</AwardCategory>
     <AwardLevel>9</AwardLevel>
   </NewAward>
 </IsfdbSubmission>


Non-Bibliographic Example

 <?xml version="1.0" encoding="iso-8859-1" ?>
 <IsfdbSubmission>
   <NewAward>
     <Subject>Pan&rsquo;s Labyrinth</Subject>
     <Submitter>Alvonruff</Submitter>
     <AwardTitle>Pan&rsquo;s Labyrinth</AwardTitle>
     <AwardAuthors>
       <AwardAuthor>Guillermo del Toro</AwardAuthor>
     </AwardAuthors>
     <AwardType>Ne</AwardType>
     <AwardYear>2007-00-00</AwardYear>
     <AwardCategory>Script</AwardCategory>
     <AwardLevel>9</AwardLevel>
   </NewAward>
 </IsfdbSubmission>