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