Specifies that the parser assumes the top level of the JSON data is a dictionary, even if it doesn’t begin and end with curly braces.
JSONデータのトップレベルが辞書であるとパーサが仮定することを指定します、たとえそれが波括弧で開始そして終了しないとしても。
This is an extension to JSON5 that isn’t part of the specification. AttributedString uses this option, along with json5Allowed, to support the use of JSON5 inside Markdown strings that use multiple custom attributes. Using topLevelDictionaryAssumed allows for the following syntax in the parentheses of the custom attribute markup:
これは、JSON5に向けてのある拡張です、それは仕様の一部ではありません。AttributedStringはこのオプションを、json5Allowedと一緒に使用することで、複数のあつらえの属性を使うMarkdown文字列内部でJSON5の使用をサポートします。topLevelDictionaryAssumedは、あつらえの属性マークアップの丸括弧の中の以下の構文を考慮します:
Without topLevelDictionaryAssumed, the markup would have to use explicit enclosing braces to declare the contents of the parentheses to be a dictionary:topLevelDictionaryAssumedなしでは、そのマークアップは、明示的な囲んでいる波括弧を使うことで、丸括弧の内容をある辞書であるように宣言しなければならないでしょう:
When you use braces, you must use matched pairs. This means that with topLevelDictionaryAssumed set, the syntax ({…}) and (…) are both legal, but ({…) and (…}) are not.
あなたが波括弧を使う時、あなたは合致した対を使わなければなりません。これは、topLevelDictionaryAssumedを設定した状態で、構文({…})と(…)は両方とも合法です、しかし({…)と(…})は違うことを意味します。
A deprecated option that specifies that the parser should allow top-level objects that aren’t arrays or dictionaries.
非推奨オプション、それはパーサが配列や辞書でないトップレベルオブジェクトを許可すべきと指定するものです。