/Resources/config/schema/facebook-1.0.xsd

http://github.com/FriendsOfSymfony/FOSFacebookBundle · XML Schema · 33 lines · 28 code · 5 blank · 0 comment · 0 complexity · 3f9199fbefaa8f2a04f26c37797f26b2 MD5 · raw file

  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <xsd:schema xmlns="http://symfony.com/schema/dic/fos_facebook"
  3. xmlns:xsd="http://www.w3.org/2001/XMLSchema"
  4. targetNamespace="http://symfony.com/schema/dic/fos_facebook"
  5. elementFormDefault="qualified">
  6. <xsd:element name="config" type="config" />
  7. <xsd:complexType name="config">
  8. <xsd:attribute name="alias" type="xsd:string" />
  9. <xsd:attribute name="class" type="xsd:string" />
  10. <xsd:attribute name="app_id" type="xsd:integer" />
  11. <xsd:attribute name="secret" type="xsd:string" />
  12. <xsd:attribute name="cookie" type="xsd:boolean" />
  13. <xsd:attribute name="domain" type="xsd:string" />
  14. <xsd:attribute name="logging" type="xsd:boolean" />
  15. <xsd:attribute name="culture" type="xsd:string" />
  16. <xsd:attribute name="xfbml" type="xsd:boolean" />
  17. <xsd:attribute name="channel" type="channel" />
  18. <xsd:attribute name="permissions" type="permissions" />
  19. </xsd:complexType>
  20. <xsd:complexType name="permissions">
  21. <xsd:sequence>
  22. <xsd:element name="permission" type="xsd:string" />
  23. </xsd:sequence>
  24. </xsd:complexType>
  25. <xsd:complexType name="channel">
  26. <xsd:attribute name="expire" type="xsd:integer" />
  27. </xsd:complexType>
  28. </xsd:schema>