Skip to content

Commit a50a52c

Browse files
authored
Update dictionary.md
1 parent 9fbcaa5 commit a50a52c

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

graph/patterns/dictionary.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ For more information, see the [OData reference](https://github.com/oasis-tcs/oda
4141
The following example demonstrates defining a dictionary that can contain string values.
4242

4343
```xml
44-
<Schema Namespace="microsoft.graph">
44+
<Schema Namespace="microsoft.graph"> <!--NOTE: the namespace that declares the Dictionary complex type *must* be microsoft.graph-->
4545
<ComplexType Name="Dictionary" OpenType="true">
4646
<Annotation Term="Core.Description" String="A dictionary of name-value pairs. Names must be valid property names, values may be restricted to a list of types via an annotation with term `Validation.OpenPropertyTypeConstraint`." />
4747
</ComplexType>
@@ -119,8 +119,7 @@ Dictionaries can also contain complex types whose values may be constrained to a
119119
The following example defines a complex type **roleSettings**, an **assignedRoleGroupDictionary** that contains **roleSettings**, and an **assignedRoles** property that uses the dictionary..
120120

121121
```xml
122-
123-
<Schema Namespace="microsoft.graph">
122+
<Schema Namespace="microsoft.graph"> <!--NOTE: the namespace that declares the Dictionary complex type *must* be microsoft.graph-->
124123
<ComplexType Name="Dictionary" OpenType="true">
125124
<Annotation Term="Core.Description" String="A dictionary of name-value pairs. Names must be valid property names, values may be restricted to a list of types via an annotation with term `Validation.OpenPropertyTypeConstraint`." />
126125
</ComplexType>

0 commit comments

Comments
 (0)