AnnotatedString

字串請使用 AnnotatedString。為元素新增最多 32 個半形字元的註解。

屬性

下表說明 AnnotatedString 的屬性:

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

範例

電子郵件

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"
      }
    ]