AnnotatedString

針對字元字串,請使用 AnnotatedString。這個註解可為元素新增最多 16 個半形字元的註解。

屬性

下表說明 AnnotatedString 的屬性:

屬性 必填與否 類型 說明
annotation 選用 ShortString 與字元字串相關聯的最多 16 個半形字元的註解。

範例

傳送電子郵件

XML

    <Email annotation="work">john.a.smith@26003.org</Email>

JSON

    "Email": [
      {
        "annotation": "work",
        "value": "john.a.smith@26003.org"
      }
    ]

傳真

XML

    <Fax annotation="cell">304-555-0971</Fax>

JSON

    "Fax": [
      {
        "annotation": "cell",
        "value": "304-555-0971"
      }
    ]

電話

XML

    <Phone annotation="office">304-555-1234</Phone>

JSON

    "Phone": [
      {
        "annotation": "office",
        "value": "304-555-1234"
      }
    ]