Documentation
¶
Index ¶
- type A
- type AsType
- type Assembly
- func (a *Assembly) GoComment() string
- func (a *Assembly) GoMemLayout() string
- func (a *Assembly) GoName() string
- func (a *Assembly) GoPackageName() string
- func (a *Assembly) GoTypeName() string
- func (a *Assembly) GoTypeNameMultiplexed() string
- func (a *Assembly) IndexBy() string
- func (a *Assembly) JsonAnnotation() string
- func (a *Assembly) JsonName() string
- func (a *Assembly) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error
- func (a *Assembly) XmlAnnotation() string
- func (a *Assembly) XmlGroupping() string
- func (a *Assembly) XmlName() string
- type Choice
- type DefineAssembly
- type DefineField
- func (df *DefineField) Empty() bool
- func (df *DefineField) GetMetaschema() *Metaschema
- func (f *DefineField) GoComment() string
- func (df *DefineField) GoName() string
- func (df *DefineField) GoTypeName() string
- func (df *DefineField) IsMarkup() bool
- func (df *DefineField) JsonAnnotation() string
- func (df *DefineField) JsonName() string
- type DefineFlag
- type Example
- type Field
- func (f *Field) GoComment() string
- func (f *Field) GoMemLayout() string
- func (f *Field) GoName() string
- func (f *Field) GoPackageName() string
- func (f *Field) GoTypeName() string
- func (f *Field) GoTypeNameMultiplexed() string
- func (f *Field) IndexBy() string
- func (f *Field) JsonAnnotation() string
- func (f *Field) JsonName() string
- func (f *Field) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error
- func (f *Field) XmlAnnotation() string
- func (f *Field) XmlName() string
- type Flag
- type GoStructItem
- type GoType
- type GroupAs
- type Href
- type Import
- type JsonKey
- type Metaschema
- func (metaschema *Metaschema) Compile() error
- func (Metaschema *Metaschema) ContainsRootElement() bool
- func (metaschema *Metaschema) GetDefineAssembly(name string) (*DefineAssembly, error)
- func (metaschema *Metaschema) GetDefineField(name string) (*DefineField, error)
- func (metaschema *Metaschema) GetDefineFlag(name string) (*DefineFlag, error)
- func (metaschema *Metaschema) GoPackageName() string
- func (metaschema *Metaschema) ImportedDependencies() []*Metaschema
- type Model
- type MultiplexedModel
- type Multiplexer
- type P
- type Remarks
- type SchemaName
- type ShortName
- type Title
- type Value
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type A ¶
type A struct { XMLName xml.Name `xml:"a"` Href *Href `xml:"href,attr"` CharData string `xml:",chardata"` ProcessedLink string `xml:"-"` }
func (*A) UnmarshalXML ¶
type AsType ¶
type AsType string
const ( AsTypeBoolean AsType = "boolean" AsTypeEmpty AsType = "empty" AsTypeString AsType = "string" AsTypeMixed AsType = "mixed" AsTypeMarkupLine AsType = "markup-line" AsTypeMarkupMultiLine AsType = "markup-multiline" AsTypeDate AsType = "date" AsTypeDateTimeTZ AsType = "dateTime-with-timezone" AsTypeNCName AsType = "NCName" AsTypeEmail AsType = "email" AsTypeURI AsType = "uri" AsTypeBase64 AsType = "base64Binary" AsTypeIDRef AsType = "IDREF" AsTypeNMToken AsType = "NMTOKEN" AsTypeID AsType = "ID" AsTypeAnyURI AsType = "anyURI" AsTypeURIRef AsType = "uri-reference" AsTypeUUID AsType = "uuid" AsTypeNonNegativeInteger AsType = "nonNegativeInteger" )
type Assembly ¶
type Assembly struct { Description string `xml:"description"` Remarks *Remarks `xml:"remarks"` Ref string `xml:"ref,attr"` GroupAs *GroupAs `xml:"group-as"` Def *DefineAssembly Metaschema *Metaschema }
func (*Assembly) GoMemLayout ¶
func (*Assembly) GoPackageName ¶
func (*Assembly) GoTypeName ¶
func (*Assembly) GoTypeNameMultiplexed ¶
func (*Assembly) JsonAnnotation ¶
func (*Assembly) UnmarshalXML ¶
func (*Assembly) XmlAnnotation ¶
func (*Assembly) XmlGroupping ¶
type DefineAssembly ¶
type DefineAssembly struct { Name string `xml:"name,attr"` Address string `xml:"address,attr"` JsonKey *JsonKey `xml:"json-key"` Flags []Flag `xml:"flag"` FormalName string `xml:"formal-name"` Description string `xml:"description"` Remarks *Remarks `xml:"remarks"` Model *Model `xml:"model"` Examples []Example `xml:"example"` Metaschema *Metaschema }
DefineAssembly is a definition for for an object or element that contains structured content
func (*DefineAssembly) GetMetaschema ¶
func (a *DefineAssembly) GetMetaschema() *Metaschema
func (*DefineAssembly) GoComment ¶
func (a *DefineAssembly) GoComment() string
func (*DefineAssembly) GoTypeName ¶
func (da *DefineAssembly) GoTypeName() string
func (*DefineAssembly) RepresentsRootElement ¶
func (da *DefineAssembly) RepresentsRootElement() bool
type DefineField ¶
type DefineField struct { Name string `xml:"name,attr"` Flags []Flag `xml:"flag"` FormalName string `xml:"formal-name"` Description string `xml:"description"` Remarks *Remarks `xml:"remarks"` Examples []Example `xml:"example"` AsType AsType `xml:"as-type,attr"` JsonKey *JsonKey `xml:"json-key"` JsonValueKey string `xml:"json-value-key"` Metaschema *Metaschema }
func (*DefineField) Empty ¶
func (df *DefineField) Empty() bool
func (*DefineField) GetMetaschema ¶
func (df *DefineField) GetMetaschema() *Metaschema
func (*DefineField) GoComment ¶
func (f *DefineField) GoComment() string
func (*DefineField) GoName ¶
func (df *DefineField) GoName() string
func (*DefineField) GoTypeName ¶
func (df *DefineField) GoTypeName() string
func (*DefineField) IsMarkup ¶
func (df *DefineField) IsMarkup() bool
func (*DefineField) JsonAnnotation ¶
func (df *DefineField) JsonAnnotation() string
func (*DefineField) JsonName ¶
func (df *DefineField) JsonName() string
type DefineFlag ¶
type DefineFlag struct { Name string `xml:"name,attr"` AsType AsType `xml:"as-type,attr"` FormalName string `xml:"formal-name"` Description string `xml:"description"` Remarks *Remarks `xml:"remarks"` Examples []Example `xml:"example"` Metaschema *Metaschema }
func (*DefineFlag) GetMetaschema ¶
func (df *DefineFlag) GetMetaschema() *Metaschema
func (*DefineFlag) GoTypeName ¶
func (df *DefineFlag) GoTypeName() string
type Field ¶
type Field struct { Required string `xml:"required,attr"` Description string `xml:"description"` Remarks *Remarks `xml:"remarks"` Ref string `xml:"ref,attr"` GroupAs *GroupAs `xml:"group-as"` InXml string `xml:"in-xml,attr"` Def *DefineField Metaschema *Metaschema }
func (*Field) GoMemLayout ¶
func (*Field) GoPackageName ¶
func (*Field) GoTypeName ¶
func (*Field) GoTypeNameMultiplexed ¶
func (*Field) JsonAnnotation ¶
func (*Field) UnmarshalXML ¶
func (*Field) XmlAnnotation ¶
type Flag ¶
type Flag struct { Name string `xml:"name,attr"` AsType AsType `xml:"as-type,attr"` Required string `xml:"required,attr"` Description string `xml:"description"` Remarks *Remarks `xml:"remarks"` Values []Value `xml:"value"` Ref string `xml:"ref,attr"` Def *DefineFlag Metaschema *Metaschema }
func (*Flag) GoDatatype ¶
func (*Flag) GoTypeName ¶
func (*Flag) JsonAnnotation ¶
type GoStructItem ¶
type GoType ¶
type GoType interface { GoTypeName() string GetMetaschema() *Metaschema }
type GroupAs ¶
type GroupAs struct { Name string `xml:"name,attr"` InJson string `xml:"in-json,attr"` InXml string `xml:"in-xml,attr"` }
func (*GroupAs) SingletonOrArray ¶
type Metaschema ¶
type Metaschema struct { XMLName xml.Name `xml:"http://csrc.nist.gov/ns/oscal/metaschema/1.0 METASCHEMA"` Top string `xml:"top,attr"` Root string `xml:"root,attr"` // SchemaName describes the scope of application of the data format. For // example "OSCAL Catalog" SchemaName *SchemaName `xml:"schema-name"` // ShortName is a coded version of the schema name for use when a string-safe // identifier is needed. For example "oscal-catalog" ShortName *ShortName `xml:"short-name"` // Remarks are paragraphs describing the metaschema Remarks *Remarks `xml:"remarks,omitempty"` // Import is a URI to an external metaschema Import []Import `xml:"import"` // DefineAssembly is one or more assembly definitions DefineAssembly []DefineAssembly `xml:"define-assembly"` // DefineField is one or more field definitions DefineField []DefineField `xml:"define-field"` // DefineFlag is one or more flag definitions DefineFlag []DefineFlag `xml:"define-flag"` ImportedMetaschema []Metaschema Dependencies map[string]GoType Multiplexers []Multiplexer GoMod string }
Metaschema is the root metaschema element
func (*Metaschema) Compile ¶
func (metaschema *Metaschema) Compile() error
func (*Metaschema) ContainsRootElement ¶
func (Metaschema *Metaschema) ContainsRootElement() bool
func (*Metaschema) GetDefineAssembly ¶
func (metaschema *Metaschema) GetDefineAssembly(name string) (*DefineAssembly, error)
func (*Metaschema) GetDefineField ¶
func (metaschema *Metaschema) GetDefineField(name string) (*DefineField, error)
func (*Metaschema) GetDefineFlag ¶
func (metaschema *Metaschema) GetDefineFlag(name string) (*DefineFlag, error)
func (*Metaschema) GoPackageName ¶
func (metaschema *Metaschema) GoPackageName() string
func (*Metaschema) ImportedDependencies ¶
func (metaschema *Metaschema) ImportedDependencies() []*Metaschema
type Model ¶
type Model struct { Assembly []Assembly `xml:"assembly"` Field []Field `xml:"field"` Choice []Choice `xml:"choice"` Prose *struct{} `xml:"prose"` // contains filtered or unexported fields }
func (*Model) GoStructItems ¶
func (m *Model) GoStructItems() []GoStructItem
func (*Model) RegisterChild ¶
func (m *Model) RegisterChild(child GoStructItem)
func (*Model) UnmarshalXML ¶
type MultiplexedModel ¶
type Multiplexer ¶
type Multiplexer struct { MultiplexedModel MultiplexedModel Metaschema *Metaschema }
Multiplexer represents model to be generated in go code that does not exists in the metaschema. Such model is only needed for serialization&deserialization as json and xml schemas differ materially in their structure.
func (*Multiplexer) GetMetaschema ¶
func (mplex *Multiplexer) GetMetaschema() *Metaschema
func (*Multiplexer) GoTypeName ¶
func (mplex *Multiplexer) GoTypeName() string
func (*Multiplexer) GoTypeNameOriginal ¶
func (mplex *Multiplexer) GoTypeNameOriginal() string
func (*Multiplexer) InJsonMap ¶
func (mplex *Multiplexer) InJsonMap() bool
func (*Multiplexer) JsonKey ¶
func (mplex *Multiplexer) JsonKey() string
type Remarks ¶
Remarks are descriptions for a particular metaschema, assembly, field, flag or example
type SchemaName ¶
Click to show internal directories.
Click to hide internal directories.