| Index: tools/json_schema_compiler/idl_schema.py
 | 
| diff --git a/tools/json_schema_compiler/idl_schema.py b/tools/json_schema_compiler/idl_schema.py
 | 
| index d8b510f5cc3ee99bd84a90b8537fda2dabb14080..8334e7ed8db9b62ca147dd08da568e449f3af3d0 100644
 | 
| --- a/tools/json_schema_compiler/idl_schema.py
 | 
| +++ b/tools/json_schema_compiler/idl_schema.py
 | 
| @@ -150,7 +150,7 @@ class Member(object):
 | 
|    def process(self, callbacks):
 | 
|      properties = OrderedDict()
 | 
|      name = self.node.GetName()
 | 
| -    for property_name in ('OPTIONAL', 'nodoc', 'nocompile'):
 | 
| +    for property_name in ('OPTIONAL', 'nodoc', 'nocompile', 'nodart'):
 | 
|        if self.node.GetProperty(property_name):
 | 
|          properties[property_name.lower()] = True
 | 
|      is_function = False
 | 
| 
 |