XML-20003 to XML-30017

XML-20003: missing token "string" at line string, column string
Cause: An expected token was not found in the input data.
Action: Check the input data and fix the syntax error.
XML-20004: missing keyword string at line string, column string
Cause: An expected keyword was not found in the input data.
Action: Update the input data with the correct keyword.
XML-20005: missing keyword string or string at line string, column string
Cause: An expected keyword was not found in the input data.
Action: Update the input data with the correct keyword.
XML-20006: unexpected text at line string, column string; expected EOF
Cause: Additional text was found after the end-tag of the root element.
Action: The end-tag of the root element can be followed only by comments, processing instructions, or white space. Remove the extra text after the end-tag.
XML-20007: missing content model in element declaration at line string, column string
Cause: The element declaration was missing the required content model spec. See Production [45] in XML 1.0 2nd Edition.
Action: Add the required contectspec to the element declaration.
XML-20008: missing element name in content model at line string, column string
Cause: The content model in the element declaration was invalid because the content particle requires an element name. See Production [48] in XML 1.0 2nd Edition.
Action: Add the element name to fix the contectspec syntax.
XML-20009: target name string of processing instruction at line string, column string is reserved
Cause: The target names "XML", "xml", and so on are reserved for standardization in future versions of XML specification. See Production [17] in XML 1.0 2nd Edition.
Action: If the processing instruction is meant to be an XML declaration, then make sure the declaration occurs at the very beginning of the file. Otherwise, change to the name of the processing instruction.
XML-20010: missing notation name in unparsed entity declaration at line string, column string
Cause: The notation name used in the unparsed entity declaration did not match the name in a declared notation [VC: Notation Declared]. See Production [76] in XML 1.0 2nd Edition.
Action: Add the notation declaration to the DTD.
XML-20011: missing attribute type in attribute-list declaration at line string, column string
Cause: The attribute type was missing the attribute-list declaration. One of the following types must be added: CDATA, ID, IDREF, IDREFS, ENTITY, ENTITIES, NMTOKEN, or NMTOKENS. See Production [52], [53] in XML 1.0 2nd Edition.
Action: Check and correct attribute declaration.
XML-20012: missing white space at line string, column string
Cause: The required white space was missing.
Action: Add white space to fix the syntax error.
XML-20013: invalid character string in entity value at line string, column string
Cause: An invalid character was used in the entity value. The ampersand, percent, and quote characters (&, %, ", ’) (based on the value delimiters) are invalid. See Production [9] in XML 1.0 2nd Edition.
Action: Use entity or character references instead of the characters For example, you can use & or & instead of "&".
XML-20014: "--" not allowed in comment at line string, column string
Cause: A syntax error in comment due to the use of "--". See Production [15] in XML 1.0 2nd Edition.
Action: Fix the comment and use "--" only as part of end of comment "-->".
XML-20015: "]]" not allowed in text at line string, column string
Cause: "]]>" is not allowed in text. It is used only as an end marker for a CDATA section. See Production [14] in XML 1.0 2nd Edition.
Action: Fix the text content by using > or char ref for ">".
XML-20016: white space not allowed before occurrence indicator at line string, column string
Cause: White space is not allowed in the contentspec before the occurrence indicator. For example, <!ELEMENT x (a,b) *> is not valid. See Production [47], [48] in XML 1.0 2nd Edition.
Action: Fix the contentspec by removing the extra space.
XML-20017: occurrence indicator "string" not allowed in mixed-content at line string, column string
Cause: Occurrence is not allowed in mixed content declaration. For example, <!ELEMENT x (#PCDATA)?> is not valid. See Production [51] in XML 1.0 2nd Edition.
Action: Fix the syntax to remove the occurrence indicator.
XML-20018: content list not allowed inside mixed-content at line string, column string
Cause: Content list is not allowed in mixed-content declaration. For example, <!ELEMENT x (#PCDATA | (a,b))> is not valid. See Production [51] in XML 1.0 2nd Edition.
Action: Fix the syntax to remove the content list.
XML-20019: duplicate element "string" in mixed-content declaration at line string, column string
Cause: Duplicate element name was found in mixed-content declaration [VC: No Duplicate Types, Section 3.2.2]. For example, <!ELEMENT x (#PCDATA | a | a)> is not valid. See Production [51] in XML 1.0 2nd Edition.
Action: Remove the duplicate element name.
XML-20020: root element "string" does not match the DOCTYPE name "string" at line string, column string
Cause: [VC: Root Element Type, Section 2.8] failed because the Name in the document type declaration must match the element type of the root element. For example:
<?xml version="1.0"?> <!DOCTYPE greeting [ <!ELEMENT greeting (#PCDATA)> ]> <salutation>Hello!</salutation> 

The document’s root element, <salutation>, does not match the root element declared in the DTD, i.e., <greeting>.

Action: Correct the document.
XML-20021: duplicate element declaration "string" at line string, column string
Cause: Element was declared twice in the DTD [VC: Unique Element Type Declaration. Section 3.2].
Action: Remove the duplicate declaration.
XML-20022: element "string" has multiple ID attributes at line string, column string
Cause: [VC: One ID per Element Type, Section 3.3.1] failed because no element type may have more than one ID attribute specified.
Action: Correct the document by removing the duplicate ID attribute declaration.
XML-20023: ID attribute "string" in element "string" must be #IMPLIED or #REQUIRED at line string, column string
Cause: [VC: ID Attribute Default, Section 3.3.1] failed because an ID attribute must have a declared default of #IMPLIED or #REQUIRED.
Action: Fix the attribute declaration.
XML-20024: missing required attribute "string" in element "string" at line string, column string
Cause: [VC: Required Attribute, Section 3.3.2] failed because if the default declaration has the keyword #REQUIRED, then the attribute must be specified for all elements of the type in the attribute-list declaration.
Action: Fix the input document by specifying the required attribute.
XML-20025: duplicate ID value: "string"
Cause: [VC: ID, Section 3.3.1] failed because values of type ID must match the Name production. A name must not appear more than once in an XML document as a value of this type; that is, ID values must uniquely identify the elements which bear them.
Action: Fix the input document by removing the duplicate ID value.
XML-20026: undefined ID value "string" in IDREF
Cause: [VC: IDREF, Section 3.3.1] failed because values of type IDREF must match the value of some ID attribute.
Action: Fix the document by adding an ID corresponding to the IDREF or by removing the IDREF.
XML-20027: attribute "string" in element "string" has invalid enumeration value "string" at line string, column string
Cause: [VC: Enumeration, Section 3.3.1] failed because values of this type must match one of the Nmtoken tokens in the declaration.
Action: Fix the attribute value to match one of the enumerated values.
XML-20028: attribute "string" in element "string" has invalid value "string", must be "string" at line string, column string
Cause: [VC: Fixed Attribute Default, Section 3.3.2] failed because if an attribute has a default value declared with the #FIXED keyword, then instances of this attribute must match the default value.
Action: Update the attribute value to match the fixed default value.
XML-20029: attribute default must be REQUIRED, IMPLIED, or FIXED at line string, column string
Cause: [VC: Attribute Default Legal, Section 3.3.2] failed because the declared default value must meet the lexical constraints of the declared attribute type.
Action: Use one of REQUIRED, IMPLIED, or FIXED for attribute default declaration.
XML-20030: invalid text in content of element "string" at line string, column string
Cause: [VC: Element Valid, Section 3, bullet #2] failed because the element does not allow text in content. An element is valid if there is a declaration matching elementdecl where the Name matches the element type and the following holds: the declaration matches children and the sequence of child elements belongs to the language generated by the regular expression in the content model, with optional white space (characters matching the nonterminal S) between the start-tag and the first child element, between child elements, or between the last child element and the end-tag. Note that a CDATA section containing only white space does not match the nonterminal S and hence cannot appear in these positions.
Action: Fix the content by removing unexpected text.
XML-20031: invalid element "string" in content of element "string" at line string, column string
Cause: VC: Element Valid, Section 3, bullet #2] failed because the element has invalid content. An element is valid if there is a declaration matching elementdecl where the Name matches the element type, and one of the following applies:

1. The declaration matches children and the sequence of child elements belongs to the language generated by the regular expression in the content model, with optional white space (characters matching the nonterminal S) between the start-tag and the first child element, between child elements, or between the last child element and the end-tag. Note that a CDATA section containing only white space does not match the nonterminal S, and hence cannot appear in these positions.

2. The declaration matches Mixed and the content consists of character data and child elements whose types match names in the content model.

Action: Fix the content by removing unexpected elements.
XML-20032: incomplete content in element "string" at line string, column string
Cause: [VC: Element Valid, Section 3, bullet #2] failed because the element has invalid content. An element is valid if there is a declaration matching elementdecl where the Name matches the element type, and one of the following holds:

1. The declaration matches children and the sequence of child elements belongs to the language generated by the regular expression in the content model, with optional white space (characters matching the nonterminal S) between the start-tag and the first child element, between child elements, or between the last child element and the end-tag. Note that a CDATA section containing only white space does not match the nonterminal S, and hence cannot appear in these positions.

2. The declaration matches Mixed and the content consists of character data and child elements whose types match names in the content model.

Action: Fix the content by removing unexpected elements.
XML-20033: invalid replacement-text for entity "string" at line string, column string
Cause: [VC: Proper Declaration/PE Nesting, Section 2.8] failed because parameter-entity replacement text must be properly nested with markup declarations. If either the first character or the last character of a markup declaration (markupdecl above) is contained in the replacement text for a parameter-entity reference, then both must be contained in the same replacement text.
Action: Fix the entity value.
XML-20034: end-element tag "string" does not match start-element tag "string" at line string, column string
Cause: [WFC: Element Type Match, Section 3] failed because the Name in an element’s end-tag must match the element type in the start-tag.
Action: Fix the end-tag or start-tag to match the other.
XML-20035: duplicate attribute "string" in element "string" at line string, column string
Cause: [WFC: Unique Att Spec, Section 3.1] failed because no attribute name may appear more than once in the same start-tag or empty-element tag.
Action: Remove the duplicate attribute.
XML-20036: invalid character string in attribute value at line string, column string
Cause: An invalid character was used in the attribute value. The ampersand, less-than character, and quote sign (&, <, ", ’) are invalid. See Production [10] in XML 1.0 2nd Edition.
Action: Use entity or character references instead of the characters. For example, &amp; or &#38; can be used instead of "&".
XML-20037: invalid reference to external entity "string" in attribute "string" at line string, column string
Cause: [WFC: No External Entity References, Section 3.1] failed because attribute values cannot contain direct or indirect entity references to external entities.
Action: Fix the document to remove the reference to an external entity in the attribute.
XML-20038: invalid reference to unparsed entity "string" in element "string" at line string, column string
Cause: [WFC: Parsed Entity, Section 4.1] failed because an entity reference must not contain the name of an unparsed entity. Unparsed entities may be referred to only in attribute values declared to be of type ENTITY or ENTITIES.
Action: Fix the document to remove the reference to an unparsed entity in the content.
XML-20039: invalid attribute type string in attribute-list declaration at line string, column string
Cause: [VC: Attribute Value Type, Section 3.2] failed because an invalid attribute type was used in the attribute-list declaration. One of the following types must be added: CDATA, ID, IDREF, IDREFS, ENTITY, ENTITIES, NMTOKEN, or NMTOKENS. See Production [52], [53] in XML 1.0 2nd Edition.
Action: Check and correct the attribute declaration.
XML-20040: invalid character string in element content at line string, column string
Cause: [WFC: Legal Character, Section 4.1] failed because characters referred to using character references must match the production for Char.
Action: Fix the document by removing the invalid character or char-ref.
XML-20041: entity reference "string" refers to itself at line string, column string
Cause: [WFC: No Recursion, Section 4.1] failed because a parsed entity must not contain a recursive reference to itself, either directly or indirectly.
Action: Fix the document.
XML-20042: invalid Nmtoken: "string"
Cause: [VC: Enumeration, Section 3.3] failed because values of this type must match one of the Nmtoken tokens in the declaration, and must be a valid Nmtoken.
Action: Fix the attribute value.
XML-20043: invalid character string in public identifier at line string, column string
Cause: An invalid character was used in a public identifier. See Production [12], [13] in XML 1.0 2nd Edition.
Action: Fix the public identifier.
XML-20044: undeclared namespace prefix "string" used at line string, column string
Cause: The prefix was not defined in any namespace declaration in scope.
Action: Add a namespace declaration to define the prefix.
XML-20045: attribute "string" in element "string" must be an unparsed entity at line string, column string
Cause: [VC: Entity Name, Section 3.3.1] failed because values of type ENTITY must match the Name production, values of type ENTITIES must match Names; each Name must match the name of an unparsed entity declared in the DTD.
Action: Fix the attribute value to refer to an unparsed entity.
XML-20046: undeclared notation "string" used in unparsed entity "string" at line string, column string
Cause: [VC: Notation Attributes, Section 3.3.1] failed because values of this type must match one of the notation names included in the declaration; all notation names in the declaration must be declared.
Action: Fix the notation name in the unparsed entity declaration.
XML-20047: missing element declaration "string"
Cause: The element declaration referred to by an attribute declaration was not found in the DTD.
Action: Fix the DTD by adding the element declaration.
XML-20048: duplicate entity declaration "string" at line string, column string
Cause: Warning regarding duplicate entity declaration.
Action: No action required.
XML-20049: invalid use of NDATA in parameter entity declaration at line string, column string
Cause: NDATA declaration was found in parameter entity declaration. It is allowed only in general unparsed entity declaration. See Production [72], [74] in XML 1.0 2nd Edition.
Action: Fix the entity declaration.
XML-20050: duplicate attribute declaration "string" at line string, column string
Cause: Warning regarding duplicate attribute declaration.
Action: No action required.
XML-20051: duplicate notation declaration "string" at line string, column string
Cause: [VC: Unique Notation Name. Section 4.7] failed because only one notation declaration can declare a given Name.
Action: Fix the document by removing the duplicate notation.
XML-20052: undeclared attribute "string" used at line string, column string
Cause: The attribute declaration was not found in the DTD.
Action: Fix the DTD by adding the attribute declaration.
XML-20053: undeclared element "string" used at line string, column string
Cause: The element declaration was not found in the DTD.
Action: Fix the DTD by adding the element declaration.
XML-20054: undeclared entity "string" used at line string, column string
Cause: The entity declaration was not found in the DTD.
Action: Fix the DTD by adding the element declaration.
XML-20055: invalid document returned by NodeFactory"s createDocument
Cause: The document returned by the createDocument function of NodeFactory was invalid, either it was null or instance of an unsupported class.
Action: Fix the NodeFactory implementation to return an instance of XMLDocument or its subclass.
XML-20056: invalid SAX feature "string"
Cause: The SAX feature supplied was not a valid feature name.
Action: Refer to documentation for a valid list of features.
XML-20057: invalid value "string" passed for SAX feature "string"
Cause: The value supplied for the SAX feature was not valid.
Action: Refer to documentation for a valid list of features and their corresponding values.
XML-20058: invalid SAX property "string"
Cause: The SAX property supplied was not a valid property name.
Action: Refer to documentation for a valid list of properties.
XML-20059: invalid value passed for SAX property "string"
Cause: The value supplied for the SAX property was not valid.
Action: Refer to documentation for a valid list of properties and their corresponding values.
XML-20060: error occurred while opening URL "string"
Cause: An error occurred while opening the supplied URL.
Action: Verify the URL and take appropriate action to allow data to be read.
XML-20061: invalid byte stream "string" in UTF-8 encoded data
Cause: The input data contained bytes that are not valid with regard to the UTF-8 encoding scheme.
Action: Fix the input data.
XML-20062: 5-byte UTF-8 encoding not supported
Cause: The XML Parser does not support the 5-byte UTF-8 encoding scheme. It is also possible that invalid UTF-8 characters were misinterpreted as 5-byte UTF-8 encoding.
Action: If the data contains invalid UTF-8 bytes, fix the input; otherwise if 5-byte UTF-8 supported data is required, contact Oracle Support.
XML-20063: 6-byte UTF-8 encoding not supported
Cause: The XML Parser does not support 6-byte UTF-8 encoding scheme. It is also possible that invalid UTF-8 characters were misinterpreted as 6-byte UTF-8 encoding.
Action: If the data contains invalid UTF-8 bytes, fix the input, otherwise if 6-byte UTF-8 supported is required, please contact Oracle Support.
XML-20064: invalid XML character "string"
Cause: Invalid XML character was found in the input data.
Action: Fix the input data.
XML-20065: encoding "string" doesn’t match encoding "string" in XML declaration
Cause: The encoding of the data, either by auto-detection or by user action, did not match the encoding specified in the XML declaration.
Action: Fix the XML declaration to match the encoding of the data.
XML-20066: encoding "string" not supported
Cause: The XML Parser does not support the specified encoding.
Action: If support for the encoding is required, contact Oracle Support.
XML-20067: invalid InputSource returned by EntityResolver’s resolveEntity
Cause: An invalid instance of InputSource was returned by the EntityResolver. An InputSource can be invalid if the none of Reader, InputStream, and SystemId were initialized or if the SystemId was invalid.
Action: Fix the EntityResolver class to return a valid instance of InputSource
XML-21000: invalid size string specified
Cause: An invalid size or count was passed to a DOM function.
Action: Correct the argument passed to a valid value.
XML-21001: invalid index string specified; must be between 0 and string
Cause: An invalid index was passed to a DOM function.
Action: Correct the argument passed to a valid value specified by the bounds in the error message.
XML-21002: cannot add an ancestor as a child node
Cause: The DOM operation was trying to a add an ancestor node as a child, which is not permitted because it can lead to inconsistencies in the tree.
Action: Check the application to fix the usage.
XML-21003: node of type string cannot be added to node of type string
Cause: The DOM specification does not allow the parent-child combination used in the DOM operation.
Action: Refer to the DOM specification to fix the usage.
XML-21004: document node can have only one string node as child
Cause: The XML well-formedness requires that the document node have only one element node as its child. The application tried adding a second element node.
Action: Fix the usage in the application.
XML-21005: node of type string cannot be added to attribute list
Cause: The attribute list (instance of NamedNodeMap) can contain only attribute nodes.
Action: Fix the usage of NamedNodeMap.
XML-21006: cannot add a node belonging to a different document
Cause: The node being added was created by a different document. The DOM specification does not allow use of nodes across documents.
Action: Use importNode or adoptNode to move a node from one document to another before adding it.
XML-21007: invalid character string in name
Cause: The qualified or local name passed was invalid.
Action: Fix the name to contain only valid characters.
XML-21008: cannot set value for node of type string
Cause: The node of the specified type cannot have a value.
Action: Fix the usage of DOM functions.
XML-21009: cannot modify descendants of entity or entity reference nodes
Cause: The descendants of entity or entity reference nodes are read-only nodes. Modification is not allowed.
Action: Fix the usage of DOM functions.
XML-21010: cannot modify DTD’s content
Cause: DTD and all its content is read-only and cannot be modified.
Action: Fix usage of DOM functions.
XML-21011: cannot remove attribute; not found in the current element
Cause: An attempt was made to remove an attribute that does not belong the current element.
Action: Fix the usage in the application.
XML-21012: cannot remove or replace node; it is not a child of the current node
Cause: An attempt was made to remove a node that does not belong to the current node as a child.
Action: Fix the usage in the application.
XML-21013: parameter string not recognized
Cause: The DOM parameter was not recognized.
Action: See documentation for a valid list of parameters.
XML-21014: value string of parameter string is not supported
Cause: The DOM parameter was not recognized.
Action: See documentation for a valid list of parameters.
XML-21015: cannot add attribute belonging to another element
Cause: An attempt was made to add an attribute that belonged to another element.
Action: Fix the usage in the application.
XML-21016: invalid namespace string for prefix string
Cause: The namespace for xml and xmlns prefixes is fixed. Usage must match this standard.
Action: Correct the namespace for the prefixes. Namespaces are xml=http://www.w3.org/XML/1998/namespace and xmlns=http://www.w3.org/2000/xmlns/.
XML-21017: invalid qualified name: string
Cause: The qualified name passed to a DOM function was invalid.
Action: Fix the qualified name.
XML-21018: conflicting namespace declarations "string" and "string" for prefix string
Cause: The DOM tree has conflicting namespace declarations for the same prefix and so cannot be serialized.
Action: Fix the DOM tree before printing it.
XML-21019: string object is detached
Cause: The object was detached, but no operations are supported on a detached object. The object can be a Range or iterator object.
Action: Fix the usage in the application.
XML-21020: bad boundary specified; cannot partially select a node of type string
Cause: The boundary specified in the range was invalid. The selection can be partial only for text nodes.
Action: Fix the usage in the application.
XML-21021: node of type string does not support range operation string
Cause: The range operation is not supported on the node type specified.
Action: Refer to DOM documentation for restrictions of node types for each range operation.
XML-21022: invalid event type: string
Cause: The event type passed was invalid.
Action: Fix the usage in the application.
XML-21023: prefix not allowed on nodes of type string
Cause: The application tried to set prefix on a node on which a prefix is not allowed.
Action: Fix the usage in the application.
XML-21024: import not allowed on nodes of type string
Cause: The application tried to import a node of type DOCUMENT or DOCUMENT FRAGMENT.
Action: Fix the usage in the application.
XML-21025: rename not allowed on nodes of type string
Cause: The application tried to import a node of type other than ELEMENT or ATTRIBUTE.
Action: Fix the usage in the application.
XML-24000: internal error
Cause: An unexpected error occurred during processing.
Action: Report the error
XML-24001: attribute "string" not expected at line string, column string
Cause: [cvc-assess-attr.1] The attribute was not expected for the owner element.
Action: Add the attribute declaration to the type of the owner element.
XML-24002: cannot find element declaration "string"
Cause: [cvc-assess-elt.1.1.1.1] The element declaration required by the processor for validation was absent.
Action: Add the element declaration to schema or change the instance document to comply to the schema.
XML-24003: context-determined element declaration "string" absent
Cause: [cvc-assess-elt.1.1.1.2] The element declaration required by the context was missing in the schema.
Action: Add the element declaration to the schema.
XML-24004: declaration for element "string" absent
Cause: [cvc-assess-elt.1.1.1.3] The context-determined declaration was not skipped. The declaration that matches the element could not be found in the schema.
Action: Add the element declaration to the schema or change the context-determined declaration to skip.
XML-24005: element "string" not assessed
Cause: [cvc-assess-elt.2]
Action: none
XML-24006: element "string" laxly assessed
Cause: [cvc-assess-elt.2]
Action: none
XML-24007: missing attribute declaration "string"in element "string"
Cause: [cvc-attribute.1] Attribute declaration was absent from the element declaration.
Action: Add the attribute declaration to the schema.
XML-24008: type absent for attribute "string"
Cause: [cvc-attribute.2] Missing type definition for the attribute declaration.
Action: Specify a data type for the attribute declaration.
XML-24009: invalid attribute value "string"
Cause: [cvc-attribute.3] Invalid attribute value with respect to its type.
Action: Correct the attribute value in the instance.
XML-24010: attribute value "string" and fixed value "string" not matched
Cause: [cvc-au] Attribute’s normalized value was not the same as the fixed value declared.
Action: Change attribute value to the required value.
XML-24011: type of element "string" is abstract.
Cause: [cvc-complex-type.1] The type of this element was specified as abstract.
Action: Remove the abstract attribute from the type definition.
XML-24012: no children allowed for element "string" with empty content type
Cause: [cvc-complex-type.2.1] The content type was specified empty while the actual content was not.
Action: Make the content empty or modify the content type of this element.
XML-24013: element child "string" not allowed for simple content
Cause: [cvc-complex-type.2.2] The element was declared with simple content, but the instance had element children.
Action: Use only character content for this element.
XML-24014: characters "string" not allowed for element-only content
Cause: [cvc-complex-type.2.3] Characters appeared in the content of the element with element-only content.
Action: Use only element children for this element.
XML-24015: multiple ID attributes in element "string" at line string, column string
Cause: [cvc-complex-type.2.5] More than one attribute with type ID or its derivation matched the attribute wildcard.
Action: Do not use more than one attribute with ID or ID derived type.
XML-24016: invalid string value "string" at line string, column string
Cause: [cvc-datatype-valid.1.2.2] Characters were not valid with respect to the string type.
Action: Correct the value to satisfy the declared type.
XML-24017: invalid boolean value "string" at line string, column string
Cause: [cvc-datatype-valid.1.2.2] Characters were not valid with respect to the boolean type.
Action: Correct the value to satisfy the boolean type. Valid values are as follows: 0, 1, true, and false.
XML-24018: invalid decimal value "string" at line string, column string
Cause: [cvc-datatype-valid.1.2.2] Characters could not be parsed into a decimal value.
Action: Correct the data value to satisfy the decimal type.
XML-24019: invalid float value "string" at line string, column string
Cause: [cvc-datatype-valid.1.2.2] Characters could not be parsed into a float value.
Action: Correct the value to satisfy the string type.
XML-24020: invalid double value "string" at line string, column string
Cause: [cvc-datatype-valid.1.2.2] Characters were not in a valid double format as specified in IEEE 754-1985.
Action: Correct the value to satisfy the double format.
XML-24021: invalid duration "string" at line string, column string
Cause: [cvc-datatype-valid.1.2.2] Characters were not in a correct extended date time format defined in ISO 8601.
Action: Correct the value to satisfy format PnYnMnDTnHnMnS.
XML-24022: invalid date value "string" at line string, column string
Cause: [cvc-datatype-valid.1.2.2] Characters were not in a valid calendar date format specified in ISO 8601.
Action: Correct the value to satisfy the CCYY-MM-DD format.
XML-24023: invalid dateTime value "string" at line string, column string
Cause: [cvc-datatype-valid.1.2.2] Characters were not in a valid combined data time format as specified in ISO 8601.
Action: Correct the value to satisfy format CCYY-MM-DDThh:mm:ss with optional timezone.
XML-24024: invalid time value "string" at line string, column string
Cause: [cvc-datatype-valid.1.2.2] Characters were not in a valid time format as specified in ISO 8601.
Action: Correct the value to satisfy format DDThh:mm:ss with optional timezone.
XML-24025: invalid gYearMonth value "string" at line string, column string
Cause: [cvc-datatype-valid.1.2.2] Characters were not in a valid right-truncated date format as specified in ISO 8601.
Action: Correct the value to satisfy the format: CCYY-MM.
XML-24026: invalid gYear value "string" at line string, column string
Cause: [cvc-datatype-valid.1.2.2] Characters were not in a valid right-truncated date format as specified in ISO 8601.
Action: Correct the value to satisfy the format: CCYY.
XML-24027: invalid gMonthDay value "string" at line string, column string
Cause: [cvc-datatype-valid.1.2.2] Characters were not in a valid left-truncated date format as specified in ISO 8601.
Action: Correct the value to required format: --MM-DD.
XML-24028: invalid gDay value "string" at line string, column string
Cause: [cvc-datatype-valid.1.2.2] Characters were not in a valid left-truncated date format as specified in ISO 8601.
Action: Correct the value to required format: ---DD.
XML-24029: invalid gMonth value "string" at line string, column string
Cause: [cvc-datatype-valid.1.2.2] Characters were not in a valid left-and-right-truncated date format as specified in ISO 8601.
Action: Correct the value to the required format: --MM--.
XML-24030: invalid hexBinary value "string" at line string, column string
Cause: [cvc-datatype-valid.1.2.2] Characters were not valid hex encoded binary.
Action: Correct the value to satisfy the hexBinary type.
XML-24031: invalid base64Binary value "string" at line string, column string
Cause: [cvc-datatype-valid.1.2.2] Characters were not valid with respect to base64 encoding.
Action: Correct the value to satisfy base64 binary encoding.
XML-24032: invalid anyURI value "string" at line string, column string
Cause: [cvc-datatype-valid.1.2.2] Characters were not in a valid format as specified in RFC 2396 and RFC 2732.
Action: Correct the value to satisfy anyURI type.
XML-24033: invalid QName value "string" at line string, column string
Cause: [cvc-datatype-valid.1.2.2] Characters were not in a valid QName format.
Action: Correct the value to satisfy the QName type.
XML-24034: invalid NOTATION value "string" at line string, column string
Cause: [cvc-datatype-valid.1.2.2] Characters were not valid value for NOTATION type.
Action: Correct the value to satisfy the NOTATION type.
XML-24035: invalid normalizedString value "string" at line string, column string
Cause: [cvc-datatype-valid.1.2.2] Characters were not a valid normalizedString value.
Action: Correct the value to satisfy the normalizedString type.
XML-24036: invalid token value "string" at line string, column string
Cause: [cvc-datatype-valid.1.2.2] Characters were not valid a value for the token type.
Action: Correct the value to satisfy the token type.
XML-24037: invalid language value "string" at line string, column string
Cause: [cvc-datatype-valid.1.2.2] Characters were not a valid value for the language type.
Action: Correct the value to satisfy the language type.
XML-24038: invalid NMTOKEN value "string" at line string, column string
Cause: [cvc-datatype-valid.1.2.2] Characters were not a valid value for NMTOKEN type.
Action: Correct the value to satisfy the NMTOKEN type.
XML-24039: invalid NMTOKENS value "string" at line string, column string
Cause: [cvc-datatype-valid.1.2.2] Characters were not a valid list of NMTOKEN type.
Action: Correct the value to satisfy the NMTOKENS type.
XML-24040: invalid Name value "string" at line string, column string
Cause: [cvc-datatype-valid.1.2.2] Characters were not valid a value for Name type.
Action: Correct the value to satisfy the Name type.
XML-24041: invalid NCName value "string" at line string, column string
Cause: [cvc-datatype-valid.1.2.2] Characters were not a valid value for the NCName type.
Action: Correct the value to satisfy the NCName type.
XML-24042: invalid ID value "string" at line string, column string
Cause: [cvc-datatype-valid.1.2.2] Characters were not a valid value for the ID type.
Action: Correct the value to satisfy the ID type.
XML-24043: invalid IDREF value "string" at line string, column string
Cause: [cvc-datatype-valid.1.2.2] Characters were not a valid value for the IDREF type.
Action: Correct the value to satisfy the IDREF type.
XML-24044: invalid ENTITY value "string" at line string, column string
Cause: [cvc-datatype-valid.1.2.2] Characters were not a valid value for the ENTITY type.
Action: Correct the value to satisfy the ENTITY type.
XML-24045: invalid ENTITIES value "string" at line string, column string
Cause: [cvc-datatype-valid.1.2.2] Characters were not a valid list of ENTITY value.
Action: Correct the value to satisfy ENTITIES type.
XML-24046: invalid integer value "string" at line string, column string
Cause: [cvc-datatype-valid.1.2.2] Characters were not a valid value for the integer type.
Action: Correct the value to satisfy the integer type.
XML-24047: invalid nonPositiveInteger value "string" at line string, column string
Cause: [cvc-datatype-valid.1.2.2] Characters were not a valid value for the nonPositiveInteger type.
Action: Correct the value to satisfy nonPositiveInteger type.
XML-24048: invalid negativeInteger value "string"
Cause: [cvc-datatype-valid.1.2.2] Characters were not a valid value for the negativeInteger type.
Action: Correct the value to satisfy the negativeInteger type.
XML-24049: invalid long value "string" at line string, column string
Cause: [cvc-datatype-valid.1.2.2] Characters were not a valid value for long type.
Action: Correct the value to satisfy the long type.
XML-24050: invalid int value "string" at line string, column string
Cause: [cvc-datatype-valid.1.2.2] Characters were not a valid value for int type.
Action: Correct the value to satisfy the int type.
XML-24051: invalid short value "string" at line string, column string
Cause: [cvc-datatype-valid.1.2.2] Characters were not a valid value for the short type.
Action: Correct the value to satisfy the short type.
XML-24052: invalid byte value "string" at line string, column string
Cause: [cvc-datatype-valid.1.2.2] Characters were not a valid value for the byte type.
Action: Correct the value to satisfy the byte type.
XML-24053: invalid nonNegativeInteger value "string" at line string, column string
Cause: [cvc-datatype-valid.1.2.2] Characters were not a valid value for the nonNegativeInteger type.
Action: Correct the value to satisfy the nonNegativeInteger type.
XML-24054: invalid unsignedLong value "string" at line string, column string
Cause: [cvc-datatype-valid.1.2.2] Characters were not a valid value for unsignedlong type.
Action: Correct the value to satisfy the unsignedlong type.
XML-24055: invalid unsignedInt value "string" at line string, column string
Cause: [cvc-datatype-valid.1.2.2] Characters were not a valid value of the unsignedInt type.
Action: Correct the value to satisfy the unsignedInt type.
XML-24056: invalid unsignedShort value "string" at line string, column string
Cause: [cvc-datatype-valid.1.2.2] Characters were not a valid value for the unsignedShort type.
Action: Correct the value to satisfy unsignedShort type
XML-24057: invalid unsignedByte value "string" at line string, column string
Cause: [cvc-datatype-valid.1.2.2] Characters were not a valid value for the unsignedByte type.
Action: Correct the value to satisfy the unsignedByte type.
XML-24058: value "string" must be valid with respect to one member type
Cause: [cvc-datatype-valid.1.2.3] Characters were invalid with respect to any member type of union.
Action: Correct the data value to satisfy at least one member type.
XML-24059: element "string" not expected at line string, column string
Cause: [cvc-elt.1]
Action: none
XML-24060: element "string" abstract
Cause: [cvc-elt.2] Element declared abstract was used in an instance document.
Action: Do not declare the element as abstract.
XML-24061: element "string" not nillable at line string, column string
Cause: [cvc-elt.3.1] There was an attribute xsi:nil, which was not allowed because the element declaration was not nillable.
Action: Remove the xsi:nil attribute from the element.
XML-24062: no character or element children allowed for nill content "string"
Cause: [cvc-elt.3.2.1] Element was specified nill but had character or element children.
Action: Remove element content or remove nil attribute.
XML-24063: nil element does not satisfy fixed value constraint
Cause: [cvc-elt.3.2.2] Element had a fixed value while the content in the instance was empty.
Action: Remove nill attribute from the element.
XML-24064: xsi:type not a QName at line string, column string
Cause: [cvc-elt.4.1] The value of xsi:type attribute was not a QName.
Action: Change the value to a valid QName that references to a type.
XML-24065: xsi:type "string" not resolved to a type definition
Cause: [cvc-elt.4.2] The referenced type specified by xsi:type was absent.
Action: Correct the value of xsi:type so it points to a valid type definition.
XML-24066: local type "string" not validly derived from the type of element "string"
Cause: [cvc-elt.4.3] The type referenced by xsi:type was not derived from the original type.
Action: Modify the reference type definition so it satisfies the constraint or use another type that is derived from the original type.
XML-24067: value "string" not in enumeration
Cause: [cvc-enumeration-valid] The value was not in the enumeration constraint.
Action: Use a valid value specified in the enumeration.
XML-24068: invalid facet "string" for type "string"
Cause: [cvc-facet-valid] The given data value violates the constraining facet.
Action: Correct the data value.
XML-24069: too many fraction digits in value "string" at line string, column string
Cause: [cvc-fractionDigits-valid] The given number violated the fractionDigits constraining facet.
Action: Use fewer fraction digits.
XML-24070: missing ID definition for ID reference "string" at line string, column string
Cause: [cvc-id.1] There is no ID binding in the ID/IDREF table for the validation root.
Action: Define the ID for the ID reference.
XML-24071: duplicate ID "string" at line string, column string
Cause: [cvc-id.2] The same ID was defined more than once.
Action: Eliminate duplicate ID attributes.
XML-24072: duplicate key sequence "string"
Cause: [cvc-identity-constraint] The document contained a duplicate key sequence that violated a uniqueness constraint.
Action: Correct the document to make the key sequence unique, or modify xpath to avoid it.
XML-24073: target node set not equals to qualified node set for key "string"
Cause: [cvc-identity-constraint.4.2.1] There were empty key sequences in the key constraint.
Action: Make sure every element in the target node set has a non-empty key sequence.
XML-24074: element member "string" in key sequence is nillable
Cause: [cvc-identity-constraint.4.2.3] The element selected as a member in a key sequence was nillable, which is not allowed.
Action: Modify the schema to make the corresponding element declaration not nillable.
XML-24075: missing key sequence for key reference "string"
Cause: [cvc-identity-constraint.4.3] A keyref referenced an empty key sequence.
Action: Make sure every key sequence for keyref has a corresponding key sequence for referenced key.
XML-24076: incorrect length of value "string"
Cause: [cvc-length-valid] The length of the value was not the same as specified in the length facet.
Action: Use a data value with the correct length.
XML-24077: value "string" greater than or equal to maxExclusive
Cause: [cvc-maxExclusive-valid] The data value was out of the boundary specified in the maxExclusive facet.
Action: Correct the data value.
XML-24078: value "string" greater than the maxInclusive
Cause: [cvc-maxInclusive-valid] The data value was out of boundary specified in the maxInclusive facet.
Action: Correct the data value.
XML-24079: value length of "string" greater than maxLength
Cause: [cvc-maxLength-valid] The length of the data value was greater than maxLength.
Action: Make the data value’s length smaller than maxLength.
XML-24080: value "string" smaller or equals to minExclusive
Cause: [cvc-minExclusive-valid] The data value was out of the lower boundary of the value range.
Action: Use a data value that is greater than minExclusive.
XML-24081: value "string" smaller than minInclusive
Cause: [cvc-minInclusive-valid] The data value was too small.
Action: Use a data value not smaller than the value of minInclusive.
XML-24082: value "string" shorter than minLength
Cause: [cvc-minLength-valid] The length of the value was smaller than that specified in minLength.
Action: Use a data value with length greater than or equals to minLength.
XML-24083: wildcard particle in the content of element "string" not done
Cause: [cvc-particle.1.1] The wildcard particle’s minOccurs had not been met.
Action: Have more elements in the content that match the wildcard.
XML-24084: element particle "string" not done
Cause: [cvc-particle.1.2] The element particle’s minOccurs had not been met.
Action: Have more elements that match the element declaration or members in its substitution group.
XML-24085: model group "string" in the content of element "string" not done
Cause: [cvc-particle.1.3] The model group particle’s minOccurs had not been met.
Action: Have more elements in the content that match the model group.
XML-24086: invlid literal "string" with respect to pattern facet "string"
Cause: [cvc-pattern-valid] The literal did not match the pattern constraining facet.
Action: Correct the lexical data to match the pattern facet.
XML-24087: undefined type "string"
Cause: [cvc-resolve-instance.1] Could not resolve the type reference to a type definition.
Action: Add the type definition to the schema.
XML-24088: undeclared attribute "string"
Cause: [cvc-resolve-instance.2] Could not resolve attribute reference to an attribute declaration.
Action: Add the attribute declaration to the schema.
XML-24089: undeclared element "string"
Cause: [cvc-resolve-instance.3] Could not resolve the element reference to an element declaration.
Action: Add the element declaration to the schema.
XML-24090: undefined attribute group "string"
Cause: [cvc-resolve-instance.4] Could not resolve the attribute group reference to an attribute group definition.
Action: Define the attribute group definition in the schema.
XML-24091: undefined model group "string"
Cause: [cvc-resolve-instance.5] Could not resolve the model group reference to a model group definition.
Action: Define the model group in the schema.
XML-24092: undeclared notation "string"
Cause: [cvc-resolve-instance.6] Could not resolve the notation reference to a notation declaration.
Action: Add the notation declaration to the schema.
XML-24093: too many digits in value "string" at line string, column string
Cause: [cvc-totalDigits-valid] The number of digits in the numeric value was greater than the value of the totalDigits facet.
Action: Use smaller numbers.
XML-24100: element "string" must belong to XML Schema namespace
Cause: An element in the XML Schema document did not have a Schema namespace.
Action: Specify XML Schema namespace: http://www.w3.org/2001/XMLSchema.
XML-24101: cannot build schema from location "string"
Cause: [schema_reference.2] The processor could not find the schema from the given schema location.
Action: Fix the schema location.
XML-24102: cannot resolve schema by target namespace "string"
Cause: [schema_reference.3] The processor was unable to retrieve the schema based on the given namespace.
Action: Fix the schema namespace.
XML-24103: invalid annotation representation at line string, column string
Cause: [src-annotation]
Action: none
XML-24104: multiple annotations at line string, column string
Cause: [src-annotation] More than one annotation element appeared in the component.
Action: Remove the extra annotation.
XML-24105: annotation must be the first element at line string, column string
Cause: [src-annotation] Annotation was not the first element in the component.
Action: Move the annotation to the beginning of the component content.
XML-24106: attribute wildcard before attribute declaration at line string, column string
Cause: The attribute wildcard appeared before the attribute declarations.
Action: Move the attribute wildcard to the end of the declaration.
XML-24107: multiple attribute wildcard
Cause: [src-attribute.1] More than one anyAttributes were declared.
Action: Remove extra attribute wildcards.
XML-24108: default "string" and fixed "string" both present
Cause: [src-attribute.1] Both default and fixed attributes were present in the attribute declaration.
Action: Remove either default or fixed attribute.
XML-24109: default value "string" conflicts with attribute use "string"
Cause: [src-attribute.2] Both default and use were present, but the value for use is not optional.
Action: Remove either default or use value.
XML-24110: missing name or ref attribute
Cause: [src-attribute.3.1] Neither name nor ref attribute was present in declaration.
Action: Add name or ref to the declaration.
XML-24111: both name and ref presented in attribute declaration
Cause: [src-attribute.3.1] Name and ref attribute were both present in attribute declaration.
Action: Add name or ref to the declaration.
XML-24112: ref conflicts with form, type, or simpleType child
Cause: [src-attribute.3.2] The attribute was a reference. A form, type, or simpleType child were specified.
Action: Either change the reference to name, or remove form, type and/or children.
XML-24113: type attribute conflicts with simpleType child
Cause: [src-attribute.4] Both type attribute and simpleType child were present.
Action: Remove either type reference or type definition.
XML-24114: intersecton of attribute wildcard is not expressible
Cause: [src-attribute_group.2] Attribute wildcards defined were not expressible with a wildcard.
Action: Remove inexpressible attribute wildcards.
XML-24115: circular attribute group reference "string"
Cause: [src-attribute_group.3] Attribute groups were circularly referenced outside redefine.
Action: Remove the circular reference.
XML-24116: circular group reference "string"
Cause: Groups were circularly referenced outside redefine.
Action: Remove the circular reference.
XML-24117: base type "string" for complexContent is not complex type
Cause: [src-ct.1] Derived a complexType with complex content from a simple type.
Action: Change base type to complex type.
XML-24118: simple content required in base type "string"
Cause: [src-ct.2] A complexType with simpleContent was derived from a complexType with complex content.
Action: Change base type to simple type (if derivation is extension) or simpleContent to complex type.
XML-24119: properties specified with element reference "string"
Cause: [src-element.2.2] Element reference also had one or more of the following attributes: complexType, simpleType, key, keyref unique children or nillable, form, default, block, or type.
Action: Remove conflicting attributes or children.
XML-24120: simpleType and complexType cannot both present in element declaration "string"
Cause: [src-element.3] Element declaration had both complexType and simpleType children.
Action: Remove either simpleType or complexType child.
XML-24121: imported namespace "string" must different from namespace "string"
Cause: [src-import.1.1] The imported namespace was the same as the target namespace of the importing schema.
Action: Change import to inclusion.
XML-24122: target namespace "string" required
Cause: [src-import.1.2] Imported namespace was specified but absent from the imported schema.
Action: Remove namespace attribute in element import or add target namespace to the imported schema.
XML-24123: namespace "string" is different from expedted targetNamespace "string"
Cause: [src-import.3.1] Specified namespace was different from the actual targetNamespace imported.
Action: Correct the namespace attribute in import element.
XML-24124: targetNamespace "string" not expected in schema
Cause: [src-import.3.2] Specified a no-namespace schema, but the actual schema had targetNamespace.
Action: Remove the imported schema’s targetNamespace attribute.
XML-24125: cannot include schema from "string"
Cause: [src-include.1] The processor was unable to include a schema from the given location.
Action: Check the correctness of the URL and URL resolver.
XML-24126: included targetNamespace "string" must be the same as "string"
Cause: [src-include.2.1] Tried to include a schema with a different targetNamespace.
Action: Use import instead of include.
XML-24127: no-namespace schema cannot include schema with target namespace "string"
Cause: [src-include.2.2] A schema without targetNamespace tried to include a schema with targetNamespace.
Action: Use import instead of include.
XML-24128: itemType attribute conflicits with simpleType child
Cause: [src-list-itemType-or-simpleType] Both the itemType attribute and simpleType child were present in list simple type declaration.
Action: Remove either itemType attribute or simpleType child.
XML-24129: prefix of qname "string" cannot be resolved
Cause: [src-qname] Prefix of a qname was present, but did not map to any in-scope namespace.
Action: Declare a namespace corresponding to the prefix.
XML-24130: redefined schema has different namespace. line string column string
Cause: [src-redefine.3.1] Redefined schema’s targetNamespace was not the same as the targetNamespace of the redefining schema.
Action: Correct the targetNamespace in the redefined schema. src-redefine.3.1
XML-24131: no-namespace schema can only redefine schema without targetNamespace
Cause: [src-redefine.3.2] A no-namespace schema tried to redefine a schema with a namespace.
Action: Remove the targetNamespace attribute from the redefined schema.
XML-24132: type "string" must redefine itself at line string, column string
Cause: [src-redefine.5] A simpleType or complexType was present in redefine, but its base type was not itself.
Action: Change the base type to redefine itself.
XML-24132: type "string" must redefine itself at line string, column string
Cause: [src-redefine.5] A simpleType or complexType was present in redefine, but its base type was not itself.
Action: Change the base type to redefine itself.
XML-24133: group "string" can have only one self-reference in redefinition
Cause: [src-redefine.6.1.1] A group was present in redefine and it had more than one reference to itself in its content.
Action: Remove extra self references in the group redefinition.
XML-24134: self reference of group "string" must not have minOccurs or maxOccurs
Cause: [src-redefine.6.1.2] A minOccurs or maxOccurs with value other than 1 was specified in a group self-reference in redefine.
Action: Remove the minOccurs or maxOccurs attribute.
XML-24135: redefined group "string" is not a restriction of its original group
Cause: [src-redefine.6.2.2] A group was presented in redefine without self-reference but was not a valid restriction of its original group.
Action: Modify the content of the group, making it a valid restriction of its original.
XML-24136: redefined attribute group "string" must be a restriction of its orginal group
Cause: [src-redefine.7.2.2] An attributeGroup was present in redefine without self-reference but was not a valid restriction of its original.
Action: Modify the content of the attribute group, making it valid restriction of its original.
XML-24137: restriction must not have both base and simpleType child
Cause: [src-restriction-base-or-simpleType]
Action: none
XML-24138: simple type restriction must have either base attribute or simpleType child
Cause: [src-simple-type.2] Both base and simpleType were absent in simple type restriction.
Action: Add either base attribute or simpleType child.
XML-24139: neither itemType or simpleType child present for list
Cause: [src-simple-type.3] Missing itemType attribute or simpleType child in list definition.
Action: Add either itemType or simpleType child.
XML-24140: itemType and simpleType child cannot both be present in list type.
Cause: [src-simple-type.3] Both itemType attribute and simpleType child were present in list definition.
Action: Remove either itemType or simpleType child.
XML-24141: circular union type is disallowed
Cause: [src-simple-type.4] Some member types in union type made references to the union type.
Action: Remove the circular references.
XML-24142: facet "string" cannot be specified more than once
Cause: [src-single-facet-value] The same facet other than enumeration and pattern had been specified more than once, which is not allowed.
Action: Remove extra facets.
XML-24143: memberTypes and simpleType child cannot both be absent in union
Cause: [src-union-memberTypes-or-simpleTypes] Both memberTypes and simpleType were absent for a union type.
Action: Either specify memberTypes or add simpleType children.
XML-24144: facets can only used for restriction
Cause: [st-restrict-facets] Derivation was not restricted while facet children were present.
Action: Remove facet children.
XML-24201: duplicate attribute "string" declaration
Cause: [ag-props-correct.1] There were more than one attribute declarations with the same namespace and name in an attribute group definition.
Action: Remove duplicate attribute declarations.
XML-24202: more than one attribute with ID type not allowed
Cause: [ag-props-correct.2] There were more than one attribute declarations with type ID.
Action: Change to other types for such attribute declarations
XML-24203: invalid value constraint "string"
Cause: [a-props-correct.2] The fixed value or default value did not satisfy the attribute’s type.
Action: Use type valid default for fixed value.
XML-24204: value constraint "string" not allowed for ID type
Cause: [a-props-correct.3] Attribute with ID type had either fixed or default value constraint.
Action: Remove value constraint.
XML-24205: fixed value "string" does not match "string" in attribute declaration
Cause: [au-props-correct.2] Attribute reference specified a fixed value which is not the same as that in referenced declaration.
Action: Correct the fixed value to the same as specified in attribute declaration.
XML-24206: value constraint must be fixed to match that in attribute declaration
Cause: [au-props-correct.2] Attribute reference specified a default value, while the referenced declaration had a fixed value.
Action: Remove default value form attribute reference.
XML-24207: invalid xpath expression "string"
Cause: [c-fields-xpaths.1] The value of xpath was not valid xpath expression as specified in XPath 1.0.
Action: Use correct xpath.
XML-24208: invalid field xpath "string"
Cause: [c-fields-xpaths.2] The value of xpath did not satisfied field’s restricted xpath syntax.
Action: Correct the xpath expression.
XML-24209: maxOccurs in element "string" of All group must be 0 or 1
Cause: [cos-all-limited] Some elements in a All group had maxOccurs greater than one.
Action: none
XML-24210: All group has to form a content type.
Cause: All group was contained in another model group.
Action: Make all group at the top of a content type cos-all-limited.
XML-24211: All group has to form a content type.
Cause: [cos-applicable-facets] All group was contained in another model group
Action: Make all group at the top of a content type
XML-24212: type "string" does not allow facet "string"
Cause: [cos-applicable-facets] A facet not applicable to the simple type was used.
Action: Remove the facet.
XML-24213: wildcard intersection is not exprssible
Cause: [cos-aw-intersect] Two wildcards in an attribute group had different negative namespaces.
Action: Use only one wildcard with a negative namespace.
XML-24214: base type not allow "string" derivation
Cause: [cos-ct-derived-ok.1] Base type’s final prevented the derivation.
Action: Remove the derivation method from the value of final in base type.
XML-24215: complex type "string" is not a derivation of type "string"
Cause: [cos-ct-derived-ok.2] There was no derivation chain from base type to derived type.
Action: Fix the derivation chaining.
XML-24216: must specify a particle in extended content type
Cause: [cos-ct-extends.1.4.2.1] The content type of an extension of a complex type was empty.
Action: Add particle to the content type of extension.
XML-24217: content type "string" conflicts with base type"s content type "string"
Cause: [cos-ct-extends.1.4.2.2.2] Base type’s content type was not empty and was not the same as the content type specified.
Action: Match the specified content type with that specified in base type.
XML-24218: inconsistent local element declarations "string"
Cause: More than one element in the content had the same name and namespace, but did not refer to the same type.
Action: Make type references the same for all elements equal in name and namespace cos-element-consistent.
XML-24219: element "string" is not valid substitutable for element "string"
Cause: [cos-equiv-derived-ok-rec]
Action: none
XML-24220: itemType "string" cannot be list
Cause: [cos-list-of-atomic] The itemType of a list type was itself a list.
Action: Use atomic or union type as the itemType of list.
XML-24221: cricular union "string" not allowed
Cause: [cos-no-circular-union] Union’s name and namespace matched one of its memberType.
Action: Remove any circular references
XML-24222: ambiguous particles "string"
Cause: [cos-nanambig] particles in a content type violated UPA (Unique Particle Attrition) constraint.
Action: Make content type particle unambiguous.
XML-24223: invalid particle extension
Cause: [cos-particle-extend]
Action: none
XML-24224: invalid particle restriction
Cause: [cos-particle-restrict]
Action: none
XML-24225: simple type "string" does not allowed restriction
Cause: [cos-st-derived-ok] Derivation was restriction but restriction was in base type’s final.
Action: Remove restriction from base type’s final.
XML-24226: invalid derivation from base type "string"
Cause: [cos-st-derived-ok] The derivation violated the "type derivation OK (simple)" constraint.
Action: Make the derivation satisfy the constraint.
XML-24227: atomic type cannot restrict list "string"
Cause: [cos-st-restricts.1.1] The base type is list.
Action: none
XML-24228: base type cannot be ur-type in restriction
Cause: [cos-st-restricts.1.1] Tried to directly restrict anySimpleType.
Action: none
XML-24229: base type of list must be list or ur-type
Cause: [cos-st-restricts.2.3]
Action: none
XML-24230: base type of union must be union or ur-type
Cause: [cos-st-restricts.3.3]
Action: none
XML-24231: element default "string" requires mixed content to be emptiable
Cause: [cos-valide-default] Element had default constraint but its mixed content type was not emptiable.
Action: Remove default value constraint.
XML-24232: element default "string" requires mixed content or simple content
Cause: [cos-valide-default] Element had default value constraint but its content type was element only or empty.
Action: Remove default value constraint.
XML-24233: element default "string" must be valid to its content type
Cause: [cos-valide-default] Element’s default value constraint was invalid to its type.
Action: Correct the default value or remove it.
XML-24234: wrong field cardinality for keyref "string"
Cause: [c-props-correct] Number of fields were different between keyref and referenced key.
Action: Ensure that keyref and referenced key have same number of fields.
XML-24235: complex type can only extend simple type "string"
Cause: [ct-props-correct] Complex type was derived from simple type, but derivation was not extension.
Action: Change restriction to extension.
XML-24236: circular type definition "string"
Cause: [ct-props-correct] Type was in its own derivation chain.
Action: Remove recursive derivation.
XML-24236: circular type definition "string"
Cause: [ct-props-correct] Type was in its own derivation chain.
Action: Remove recursive derivation.
XML-24237: base type "string" must be complex type
Cause: [derivation-ok-restriction.1] Complex type was restricted from a simple type.
Action: Change the restriction from a complex type.
XML-24238: attribute "string" not allowed in base type
Cause: [derivation-ok-restriction.2] The attribute in restriction was not allowed for base type.
Action: Correct the restriction of attribute use.
XML-24239: required attribute "string" not in restriction
Cause: [derivation-ok-restriction.3] Restriction’s attribute uses was not a subset of base type’s attribute uses.
Action: Correct the restriction of attribute uses.
XML-24240: no corresponding attribute wildcard in base type "string"
Cause: [derivation-ok-restriction.4] Restriction had an attribute wildcard that did not correspond to any attribute wildcard in base type.
Action: Correct the derivation.
XML-24241: base type "string" must have simple content or emptiable
Cause: [derivation-ok-restriction.5.1] Content type was simple, but the base type has complex content that is not mixed or not emptiable.
Action: Change the content type from simple to element only.
XML-24242: base type "string" must have empty content or emptiable
Cause: [derivation-ok-restriction.5.2] Content type was empty, but the base type had simple content or non-emptiable complex content.
Action: Change the content type from simple to element only.
XML-24243: enumeration facet required for NOTATION
Cause: [enumeration-required-notation] NOTATION type was used without enumeration facet.
Action: Specify enumeration facet for NOTATION.
XML-24244: invalid value "string" in enumeration
Cause: [enumeration-valid-restriction] Some value in enumeration was not valid in respect to the type.
Action: Correct invalid values.
XML-24245: default value "string"is element type invalid
Cause: [e-props-correct.2] Default value was invalid in respect to the type of the element.
Action: Correct the default value.
XML-24246: invalid substitutionGroup "string", type invalid
Cause: [e-props-correc.3] The type of the element was not a valid derivation from the type of element’s substitutionGroup.
Action: Correct the type or remove substitutionGroup.
XML-24247: ID type does not allow value constraint "string"
Cause: [e-props-correct.4] Type was ID or its derivation while there was a value constraint.
Action: Remove value constraint.
XML-24248: fractionDigits "string" greater than totalDigits "string"
Cause: [fractionDigits-totalDigits] The value for fractionDigits was greater than totalDigits.
Action: Make fractionDigits smaller or equal to totalDigits.
XML-24249: length facet cannot be specified with minLength or maxLength
Cause: [length-minLength-maxLength] Both length and either minLength or maxLength were specified.
Action: Remove length facet.
XML-24250: length "string" not the same as length in base type"s
Cause: [length-valid-restriction] Specified a length that was not the same as the length in base type.
Action: Remove length facet.
XML-24251: maxExclusive greater than its original
Cause: [maxExclusive-valid-restriction] Restricted maxExclusive was greater than its original in base type.
Action: none
XML-24252: minInclusive greater than or equal to maxExclusive
Cause: [maxInclusive-maxExclusive] Specified a minInclusive that was greater or equal to maxExclusive.
Action: Make minInclusive smaller than maxExclusive.
XML-24253: maxLength is greater than that in base type
Cause: [maxLength-valid-restriction] Specified a maxLength greater than original in base type.
Action: Specify a smaller maxLength to make it a valid restriction.
XML-24254: circular group "string" disallowed
Cause: [mg-props-correct] Circular model group references.
Action: Remove circular references in model group definition.
XML-24256: minExclusive must be less than or equal to maxExclusive
Cause: [minExclusive-less-than-equals-to-maxExclusive] minExclusive was bigger than maxExclusive.
Action: Use a smaller value for minExclusive.
XML-24257: minExclusive "string" must be less than maxInclusive
Cause: [minExclusive-less-than-maxInclusive] inExclusive specified was greater than or equal to maxInclusive.
Action: Specify a smaller minExclusive.
XML-24258: invalid minExclusive "string"
Cause: [minExclusive-valid-restriction] Restriction’s minExclusive was less than base type’s minExclusive.
Action: Specify a greater value for minExclusive.
XML-24259: invalid minExclusive "string"
Cause: [minExclusive-valid-restriction] Restriction’s minExclusive was less than the base type’s minInclusive.
Action: Specify a greater value for minExclusive.
XML-24260: invalid minExclusive "string"
Cause: [minExclusive-valid-restriction] Restriction’s minExclusive was greater than the base type’s maxInclusive.
Action: Specify a smaller value for minExclusive.
XML-24261: invalid minExclusive "string"
Cause: [minExclusive-valid-restriction] Restriction’s minExclusive was greater than or equal to base type’s maxExclusive.
Action: Specify a smaller value for minExclusive.
XML-24262: minInclusive "string" must not be greater than maxInclusive
Cause: [minInclusive-less-than-equal-to-maxInclusive] Specified a minInclusive that was greater than maxInclusive.
Action: Specify a smaller value for minInclusive.
XML-24263: cannot specify both minInclusive and minExclusive
Cause: [minInclusive-minExclusive]] Restriction specified for both minInclusive and minExclusive.
Action: Remove either minInclusive or minExclusive.
XML-24264: invalid minInclusive "string"
Cause: [minInclusive-valid-restriction] Restriction’s minInclusive was less than or equal to minInclusive in base type.
Action: Use a minInclusive larger than that of base type.
XML-24265: invalid minInclusive "string"
Cause: [minInclusive-valid-restriction] Restriction’s minInclusive was less than minExclusive in base type.
Action: Use minInclusive greater than or equal to the minExclusive of base type.
XML-24267: invalid minInclusive "string"
Cause: [minInclusive-valid-restriction] Restriction’s minInclusive was greater than maxInclusive in base type.
Action: Use minInclusive smaller than or equal to the maxInclusive of base type.
XML-24268: invalid minInclusive "string"
Cause: Restriction’s minInclusive was greater than or equal to maxEnclusive in base type.
Action: Use minInclusive smaller than the maxEnclusive of base type.
XML-24269: invalid minLength "string"
Cause: [minLength-less-than-equal-to-maxLength] minLength in restriction is greater than base type’s maxLength.
Action: Make minLength within the length range of base type.
XML-24270: invalid minLength "string"
Cause: [minLength-valid-restriction] Value of minLength is smaller than that of base type in restriction.
Action: Use a larger value for minLength.
XML-24271: cannot declare xmlns attribute
Cause: [no-xmlns] Declared an attribute with name xmlns.
Action: Remove this declaration.
XML-24272: minOccurs is greater than maxOccurs
Cause: [n-props-correct] The minOccurs of the particle was greater than the maxOccurs.
Action: Use a smaller value for minOccurs.
XML-24272: minOccurs is greater than maxOccurs
Cause: [n-props-correct] The minOccurs of the particle was greater than the maxOccurs.
Action: Use a smaller value for minOccurs.
XML-24281: maxOccurs must greater than or equal to 1
Cause: [p-props-correct] The maxOccurs of the particle was less than 1.
Action: Use a greater value for maxOccurs.
XML-24282: incorrect Notation properties
Cause: [n-props-correct] The Notation declaration had incorrect properties.
Action: Fix the Notation declaration.
XML-24283: particle’s range is not valid restriction
Cause: [range-ok] Range of restriction was not within the range of parent particle.
Action: none
XML-24284: sequence group is not valid derivation of choice group
Cause: Restriction did not satisfy the constraint: Particle Derivation OK (Sequence:Choice -- MapAndSum).
Action: rcase-MapAndSum
XML-24285: element "string" is not valid restriction of element "string"
Cause: [rcase-NameAndTypeOK] Restriction did not satisfy the constraint: Particle Restriction OK.
Action: none
XML-24286: element "string" is not valid restriction of wildcard
Cause: [rcase-NSCompat] Restriction did not satisfy the constraint: Particle Restriction OK.
Action: none
XML-24287: group is not valid restriction of wildcard
Cause: [rcase-NSRecurseCheckCardinality] Restriction did not satisfy the constraint: Particle Restriction OK.
Action: none
XML-24288: group any is not valid restriction
Cause: [rcase-NSSubset] Restriction did not satisfy the constraint: Particle Restriction OK (Any:Any -- NSSubset).
Action: none
XML-24289: invalid restriction of all or sequence group
Cause: [rcase-Recurse] Restriction did not satisfy the constraint: Particle Restriction OK (All:All, Seqiemce"Sequence:-- Recurse).
Action: none
XML-24290: wildcard is not valid restriction
Cause: [rcase-RecurseLax] The wildcard was not validly restricted from another wildcard.
Action: none
XML-24291: sequence is not a valid restriction of all
Cause: Restriction violated the constraint: Particle Derivation OK (Sequence:All--RecurseUnordered).
Action: Fix the restriction.
XML-24292: duplicate component definitions "string"
Cause: [sch-props-correct] There were two schema components with same name and namespace.
Action: Remove duplicate definitions.
XML-24293: incorrect simple type definition properties
Cause: [st-props-correct]
Action: none
XML-24294: wildcard is not a subset of its super
Cause: [w-props-correct] The namespace constraint was not a restriction of its super.
Action: Correct the namespace constraint.
XML-24295: totalDigits "string" is greater than "string" in base type
Cause: [totalDigits-valid-restriction] Restriction specified a totalDigits with a value greater than that in base type.
Action: Use a smaller value for totalDigits.
XML-24296: whiteSpace "string" cannot restrict base type’s "string"
Cause: [whiteSpace-valid-restriction] Restriction’s whiteSpace was replace or preserve, and base had whiteSpace collapse, or restriction had replace while base had preserve.
Action: Eliminate conflicting whiteSpace values.
XML-24297: circular substitution group "string"
Cause: Substitution group was circular.
Action: Remove the circular substitution group.
XML-30000: error ignored in ""string"": ""string""
Cause: Error occurred while processes execution is ignored.
Action: none
XML-30001: error occured in execution of process
Cause: Component being wrapped by pipeline process is causing an error.
Action: Possibly fix input XML content.
XML-30003: error creating/writing to output ""string""
Cause: Output url might be invalid.
Action: none
XML-30004: error creating base url ""string""
Cause: Base url is invalid.
Action: Fix base url.
XML-30005: error reading input ""string""
Cause: Input url might be invalid.
Action: none
XML-30008: a valid parameter target is required
Cause: Param with name target is missing or invalid.
Action: Add param target pointing to the target output label.
XML-30010: process definition element ""string"" needs to be defined
Cause: Element procdef is missing.
Action: Add process definition to pipedoc.
XML-30011: ContentHandler not available
Cause: The dependent process did not provide a valid ContentHandler.
Action: Implement the getContentHandler API in your Process.
XML-30012: pipeline components are not compatible
Cause: Component output and input don’t match in terms of document/docfrag.
Action: Fix the pipedoc to use components that are compatible.
XML-30013: process with output label ""string"" not found
Cause: A process whose output label matched target label is not available.
Action: Create a process in the pipedoc so that the output label matches the label of the target param.
XML-30014: pipeline is not complete, missing output/outparam label called ""string""
Cause: A dependent process output label has not been named correctly, or a dependent process is missing.
Action: Make sure every dependent input has a corresponding output.
XML-30016: unable to instantiate class
Cause: A process could not be created because there is an error in the process definition element associated with it.
Action: Correctly specify the class for a process definition.
XML-30017: target is up-to-date, pipeline not executed
Cause: Either the target does not exist, or the pipeline inputs are more recent than the target.
Action: Use the "force" option to execute pipeline regardless of whether the target is up-to-date.