You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<!ENTITY % plistObject "(array | data | date | dict | real | integer | string | true | false )" >
413
+
<!ELEMENT plist %plistObject;>
414
+
<!ATTLIST plist version CDATA "1.0" >
415
+
416
+
<!-- Collections -->
417
+
<!ELEMENT array (%plistObject;)*>
418
+
<!ELEMENT dict (key, %plistObject;)*>
419
+
<!ELEMENT key (#PCDATA)>
420
+
421
+
<!--- Primitive types -->
422
+
<!ELEMENT string (#PCDATA)>
423
+
<!ELEMENT data (#PCDATA)> <!-- Contents interpreted as Base-64 encoded -->
424
+
<!ELEMENT date (#PCDATA)> <!-- Contents should conform to a subset of ISO 8601 (in particular, YYYY '-' MM '-' DD 'T' HH ':' MM ':' SS 'Z'. Smaller units may be omitted with a loss of precision) -->
<!ELEMENT real (#PCDATA)> <!-- Contents should represent a floating point number matching ("+" | "-")? d+ ("."d*)? ("E" ("+" | "-") d+)? where d is a digit 0-9. -->
430
+
<!ELEMENT integer (#PCDATA)> <!-- Contents should represent a (possibly signed) integer number in base 10 -->
0 commit comments