TypeSpec library providing xml bindings
npm install @typespec/xml
Specify that the target property should be encoded as an XML attribute instead of node.
@TypeSpec.Xml.attribute
ModelProperty
None
model Blob {
id: string;
}
<Blob>
<id>abcdef</id>
</Blob>
model Blob {
@attribute id: string;
}
<Blob id="abcdef">
</Blob>
Provide the name of the XML element or attribute. This means the same thing as
@encodedName("application/xml", value)
@TypeSpec.Xml.name(name: valueof string)
unknown
Name | Type | Description |
---|---|---|
name | valueof string |
The name of the XML element or attribute |
@name("XmlBook")
model Book {
@name("XmlId") id: string;
@encodedName("application/xml", "XmlName") name: string;
content: string;
}
<XmlBook>
<XmlId>string</XmlId>
<XmlName>string</XmlName>
<content>string</content>
</XmlBook>
Specify the XML namespace for this element. It can be used in 2 different ways:
-
@ns("http://www.example.com/namespace", "ns1")
- specify both namespace and prefix -
@Xml.ns(Namespaces.ns1)
- pass a member of an enum decorated with@nsDeclaration
@TypeSpec.Xml.ns(ns: string | EnumMember, prefix?: valueof string)
unknown
Name | Type | Description |
---|---|---|
ns | string | EnumMember |
The namespace URI or a member of an enum decorated with @nsDeclaration . |
prefix | valueof string |
The namespace prefix. Required if the namespace parameter was passed as a string. |
@ns("https://example.com/ns1", "ns1")
model Foo {
@ns("https://example.com/ns1", "ns1")
bar: string;
@ns("https://example.com/ns2", "ns2")
bar: string;
}
@Xml.nsDeclarations
enum Namespaces {
ns1: "https://example.com/ns1",
ns2: "https://example.com/ns2",
}
@Xml.ns(Namespaces.ns1)
model Foo {
@Xml.ns(Namespaces.ns1)
bar: string;
@Xml.ns(Namespaces.ns2)
bar: string;
}
Mark an enum as declaring XML namespaces. See @ns
@TypeSpec.Xml.nsDeclarations
Enum
None
Specify that the target property shouldn't create a wrapper node. This can be used to flatten list nodes into the model node or to include raw text in the model node.
It cannot be used with @attribute
.
@TypeSpec.Xml.unwrapped
ModelProperty
None
model Pet {
tags: Tag[];
}
<XmlPet>
<ItemsTags>
<XmlTag>
<name>string</name>
</XmlTag>
</ItemsTags>
</XmlPet>
model Pet {
@unwrapped tags: Tag[];
}
<XmlPet>
<XmlTag>
<name>string</name>
</XmlTag>
</XmlPet>
model BlobName {
content: string;
}
<BlobName>
<content>
abcdef
</content>
</BlobName>
model BlobName {
@unwrapped content: string;
}
<BlobName>
abcdef
</BlobName>