Interface XsdAttribute

XSD Schema model representing XML Schema Definition elements

interface XsdAttribute {
    default?: string;
    fixed?: string;
    name?: string;
    type?: string;
    use?: "required" | "optional" | "prohibited";
}

Properties

default?: string
fixed?: string
name?: string
type?: string
use?: "required" | "optional" | "prohibited"