@@ -36,10 +36,6 @@ def build(self):
36
36
if "description" in self ._schema_payload and self ._schema_payload ["description" ]:
37
37
doc .content (self ._schema_payload ["description" ])
38
38
doc .newline ()
39
- semantic_equivalent = self ._extract_semantic_equivalents ()
40
- if semantic_equivalent :
41
- doc .field (name = "Semantic equivalents" , value = semantic_equivalent )
42
- doc .newline ()
43
39
doc .newline ()
44
40
if self .instancelib_docu_path_for_schema :
45
41
library_link = os .path .join (self .readthedocs_url , self .version , "instance_libraries" , self .instancelib_docu_path_for_schema )
@@ -104,14 +100,6 @@ def _extract_optional_properties(self) -> str:
104
100
optional_properties .append (f"`{ p_split } <{ p_split } _heading_>`_" )
105
101
return ", " .join (optional_properties )
106
102
107
- def _extract_semantic_equivalents (self ) -> Optional [str ]:
108
- if "semanticEquivalent" in self ._schema_payload :
109
- semantic_equivalents = []
110
- for se in self ._schema_payload ["semanticEquivalent" ]:
111
- semantic_equivalents .append (se )
112
- return ", " .join (semantic_equivalents )
113
- return None
114
-
115
103
def _identify_value_type (self , property ) -> str :
116
104
v_type = property ["type" ] if "type" in property else "object"
117
105
if isinstance (v_type , list ):
0 commit comments