diff options
Diffstat (limited to 'addons/xbmc.metadata')
-rw-r--r-- | addons/xbmc.metadata/scraper.xsd | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/addons/xbmc.metadata/scraper.xsd b/addons/xbmc.metadata/scraper.xsd index 7843f4dca2..edcf97b3a0 100644 --- a/addons/xbmc.metadata/scraper.xsd +++ b/addons/xbmc.metadata/scraper.xsd @@ -3,8 +3,8 @@ <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"> <xs:element name="extension"> <xs:complexType> - <xs:attribute name="point" type="xs:string" use="required"/> - <xs:attribute name="id" type="simpleIdentifier"/> + <xs:attribute name="point" type="simpleIdentifier" use="required"/> + <xs:attribute name="id" type="xs:string"/> <xs:attribute name="name" type="xs:string"/> <xs:attribute name="library" type="xs:string" use="required"/> <xs:attribute name="language" type="xs:string"/> @@ -14,7 +14,7 @@ </xs:element> <xs:simpleType name="simpleIdentifier"> <xs:restriction base="xs:string"> - <xs:pattern value="[^.]+"/> + <xs:pattern value="xbmc\.metadata\.scraper\.(albums|artists|library|movies|musicvideos|tvshows)"/> </xs:restriction> </xs:simpleType> </xs:schema> |