A system table from the sys schema in master database. Exists in every database, contains a row for each XML facet (restriction) of XML type definition.
Create statement
CREATE TABLE master.sys.sysxmlfacet (
compid int NULL,
ord int NULL,
kind char (2) NULL,
status smallint NULL,
dflt nvarchar (8000) NULL)
GO