Id3db/schema: Difference between revisions

mNo edit summary
complete frames link added
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
Lets work on the xml schema here. Like what sorts of info we need to collect.
Lets work on the xml schema here. Like what sorts of info we need to collect.


Data needs to be collected.
* [http://www.id3.org/Frames Complete list of allowed tags]
Discuss if any more data needs to be collected.
<pre>
Title - string, one value
Artist - string, more than one
Album - string, one value
Genre - string, one value
Track Number - integer, one value
Disc Number - integer, one value
Year - integer, one value
Duration - time
</pre>


Some ideas about xml schema [http://www.w3schools.com/schema/default.asp here].


<pre>


<?xml version="1.0"?>
<song>
<xs:schema xmlns:xs="http://fci.wikia.com/wiki/Id3db/schema"
<title></title>
targetNamespace="http://fci.wikia.com"
<artist>
xmlns="http://fci.wikia.com"
</artist>
elementFormDefault="qualified">
<composer></composer>
<album></album>
<genre></genre>
<track_number></track_number>
<disc_number></disc_number>
<year></year>
<duration></duration>
<comment></comment>
</song>


</xml>
</pre>
Some ideas about xml schema [http://www.w3schools.com/schema/default.asp here].