<?xml version="1.0"?>
<ONIXMessage xmlns="http://ns.editeur.org/onix/3.0/reference" release="3.0">

  <Header>
    <Sender>
      <SenderName>My Publishing Company or Client Services Provider</SenderName>
      <ContactName>Alice Smith</ContactName>
      <EmailAddress>alice.smith@publisher.com</EmailAddress>
    </Sender>
    <Addressee>
      <AddresseeName>Google</AddresseeName>
    </Addressee>
    <SentDateTime>20150723T142048Z</SentDateTime>
  </Header>

  <!-- Sample product composite, puts a book on sale on Google Play -->
  <Product>
     <!-- Unique identifier per product record, Google suggests using ISBN13 -->
    <RecordReference>myid.9789999999991</RecordReference>
    <NotificationType>04</NotificationType>

    <!-- The record must have at least one valid ISBN, when possible, type = 15 recommended -->
    <ProductIdentifier>
      <ProductIDType>15</ProductIDType>
      <IDValue>9789999999991</IDValue>
    </ProductIdentifier>

    <DescriptiveDetail>
      <ProductComposition>00</ProductComposition>
      <ProductForm>ED</ProductForm>
      <ProductFormDetail>E101</ProductFormDetail>
      <PrimaryContentType>10</PrimaryContentType>
      <EpubTechnicalProtection>02</EpubTechnicalProtection>
      <NoCollection />
      <TitleDetail>
        <TitleType>01</TitleType>
        <TitleElement>
          <TitleElementLevel>01</TitleElementLevel>
          <TitleText>This Is My Distinctive Title</TitleText>
          <Subtitle>This Is A Subtitle</Subtitle>
        </TitleElement>
      </TitleDetail>
      <Contributor>
        <SequenceNumber>1</SequenceNumber>
        <ContributorRole>A01</ContributorRole>
        <PersonName>Jane Smith</PersonName>
      </Contributor>
      <EditionType>DGO</EditionType>
      <Language>
        <LanguageRole>01</LanguageRole>
        <LanguageCode>eng</LanguageCode>
      </Language>
      <Extent>
        <ExtentType>10</ExtentType>
        <ExtentValue>1234</ExtentValue>
        <ExtentUnit>03</ExtentUnit>
      </Extent>
      <Subject>
        <MainSubject/>
        <!-- BISAC classification -->
        <SubjectSchemeIdentifier>10</SubjectSchemeIdentifier>
        <SubjectCode>LIT014000</SubjectCode>
      </Subject>
      <Subject>
        <!-- BISAC classification -->
        <SubjectSchemeIdentifier>10</SubjectSchemeIdentifier>
        <SubjectCode>LIT024060</SubjectCode>
      </Subject>
    </DescriptiveDetail>

    <CollateralDetail>
      <TextContent>
        <TextType>02</TextType>
        <ContentAudience>00</ContentAudience>
        <Text>I am a short description of the book.</Text>
      </TextContent>
      <TextContent>
        <TextType>03</TextType>
        <ContentAudience>00</ContentAudience>
        <Text>I am a description of the book.</Text>
      </TextContent>
      <TextContent>
        <TextType>12</TextType>
        <ContentAudience>00</ContentAudience>
        <Text>I am a biographical note of a book not a specific author.</Text>
      </TextContent>
    </CollateralDetail>

    <PublishingDetail>
      <Imprint>
        <ImprintName>My Publishing Imprint</ImprintName>
      </Imprint>
      <Publisher>
        <PublishingRole>01</PublishingRole>
        <PublisherName>My Publisher Name</PublisherName>
      </Publisher>
      <PublishingStatus>04</PublishingStatus>
      <PublishingDate>
        <PublishingDateRole>01</PublishingDateRole>
        <DateFormat>00</DateFormat>
        <Date>20120927</Date> <!-- YYYY and YYYYMM also valid -->
      </PublishingDate>
      <SalesRights>
        <SalesRightsType>01</SalesRightsType>
        <Territory>
          <RegionsIncluded>WORLD</RegionsIncluded>
        </Territory>
      </SalesRights>
    </PublishingDetail>

    <!-- Related material not required if book is digital-only. -->
    <RelatedMaterial/>

    <ProductSupply>
      <SupplyDetail>
        <Supplier>
          <SupplierRole>03</SupplierRole>
          <SupplierName>My Supplier Name</SupplierName>
        </Supplier>
        <ProductAvailability>20</ProductAvailability>
        <Price>
          <PriceType>02</PriceType> <!-- This should match the price type that you are configured to sell in the Partner Center -->
          <PriceAmount>9.99</PriceAmount>
          <CurrencyCode>USD</CurrencyCode>
          <Territory>
            <CountriesIncluded>US</CountriesIncluded>
          </Territory>
        </Price>
      </SupplyDetail>
    </ProductSupply>
  </Product>

</ONIXMessage>
