AnnotatedString

Verwenden Sie AnnotatedString für Zeichenstrings. Sie fügt einem Element eine Annotation von bis zu 16 Zeichen hinzu.

Attribute

In der folgenden Tabelle werden die Attribute für AnnotatedString beschrieben:

Attribut Erforderlich/Optional? Typ Beschreibung
annotation Optional ShortString Eine Annotation mit bis zu 16 Zeichen, die mit einem Zeichenstring verknüpft ist.

Beispiele

E-Mail

XML

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

JSON

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

Fax

XML

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

JSON

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

Telefon

XML

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

JSON

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