diff --git a/src/dotnet/APIView/APIViewUnitTests/APIViewUnitTests.csproj b/src/dotnet/APIView/APIViewUnitTests/APIViewUnitTests.csproj index 28c74742c83..5253e3acefe 100644 --- a/src/dotnet/APIView/APIViewUnitTests/APIViewUnitTests.csproj +++ b/src/dotnet/APIView/APIViewUnitTests/APIViewUnitTests.csproj @@ -51,6 +51,12 @@ Always + + Always + + + Always + Always diff --git a/src/dotnet/APIView/APIViewUnitTests/CodeFileTests.cs b/src/dotnet/APIView/APIViewUnitTests/CodeFileTests.cs index 3c66c4c357d..df5149d3d5e 100644 --- a/src/dotnet/APIView/APIViewUnitTests/CodeFileTests.cs +++ b/src/dotnet/APIView/APIViewUnitTests/CodeFileTests.cs @@ -185,5 +185,35 @@ public async Task TestCodeFileComparisonWithChangeInSkippedLines() var diff = CodeFileHelpers.FindDiff(codeFileA.ReviewLines, codeFileB.ReviewLines); Assert.False(FindAnyDiffLine(diff)); } + + [Fact] + public async Task VerifyPythonDiff() + { + var codeFileA = new CodeFile(); + var codeFileB = new CodeFile(); + var filePath = Path.Combine("SampleTestFiles", "azure-schemaregistry_python.json"); + var fileInfo = new FileInfo(filePath); + var fileStream = fileInfo.Open(FileMode.Open, FileAccess.Read, FileShare.Read); + codeFileA = await CodeFile.DeserializeAsync(fileStream); + filePath = Path.Combine("SampleTestFiles", "azure-schemaregistry_python_diff.json"); + fileInfo = new FileInfo(filePath); + fileStream = fileInfo.Open(FileMode.Open, FileAccess.Read, FileShare.Read); + codeFileB = await CodeFile.DeserializeAsync(fileStream); + bool isSame = CodeFileHelpers.AreCodeFilesSame(codeFileA, codeFileB); + Assert.False(isSame); + + var diff = CodeFileHelpers.FindDiff(codeFileA.ReviewLines, codeFileB.ReviewLines); + Assert.True(FindAnyDiffLine(diff)); + + //Verify first line in diff view is the global text + Assert.True(diff.First().LineId == "GLOBAL"); + + //Verify that last line of namespace line's children is empty line + var namespaceLine = diff.First(l=>l.LineId == "azure.schemaregistry"); + Assert.Equal("namespace azure.schemaregistry", namespaceLine.ToString()); + + Assert.True(namespaceLine.Children.Last().Tokens.Count == 0); + + } } } diff --git a/src/dotnet/APIView/APIViewUnitTests/SampleTestFiles/azure-schemaregistry_python.json b/src/dotnet/APIView/APIViewUnitTests/SampleTestFiles/azure-schemaregistry_python.json new file mode 100644 index 00000000000..42f96c6c589 --- /dev/null +++ b/src/dotnet/APIView/APIViewUnitTests/SampleTestFiles/azure-schemaregistry_python.json @@ -0,0 +1 @@ +{"PackageName": "azure-schemaregistry", "PackageVersion": "1.3.1", "ParserVersion": "0.3.14", "Language": "Python", "ReviewLines": [{"Tokens": [{"Kind": 0, "Value": "# Package is parsed using apiview-stub-generator(version:0.3.14), Python version: 3.10.12", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": true}], "IsContextEndLine": false, "LineId": "GLOBAL"}, {"Tokens": [], "IsContextEndLine": false}, {"Tokens": [], "IsContextEndLine": false}, {"Tokens": [{"Kind": 2, "Value": "namespace", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 0, "Value": "azure.schemaregistry", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false, "NavigationDisplayName": "azure.schemaregistry", "RenderClasses": ["namespace"]}], "LineId": "azure.schemaregistry", "IsContextEndLine": false, "Children": [{"Tokens": [], "IsContextEndLine": false, "RelatedToLine": "azure.schemaregistry"}, {"Tokens": [{"Kind": 2, "Value": "@overload", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "RelatedToLine": "azure.schemaregistry.foo_1"}, {"Tokens": [{"Kind": 2, "Value": "def", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 0, "Value": "azure.schemaregistry.foo", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false, "NavigationDisplayName": "foo", "RenderClasses": ["method"]}, {"Kind": 1, "Value": "(", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.foo_1", "Children": [{"Tokens": [{"Kind": 0, "Value": " a", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "int", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "LineId": "azure.schemaregistry.foo_1.param(a)", "IsContextEndLine": false}, {"Tokens": [{"Kind": 0, "Value": " *", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false}, {"Tokens": [{"Kind": 0, "Value": " bar", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.foo_1.param(bar)"}, {"Tokens": [{"Kind": 0, "Value": " **kwargs", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.foo_1.param(kwargs)"}, {"Tokens": [{"Kind": 1, "Value": ")", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "->", "HasPrefixSpace": true, "HasSuffixSpace": true}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.foo_1.returntype"}]}, {"Tokens": [], "IsContextEndLine": true, "RelatedToLine": "azure.schemaregistry.foo_1"}, {"Tokens": [], "IsContextEndLine": false, "RelatedToLine": "azure.schemaregistry.foo_1"}, {"Tokens": [{"Kind": 2, "Value": "@overload", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "RelatedToLine": "azure.schemaregistry.foo_2"}, {"Tokens": [{"Kind": 2, "Value": "def", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 0, "Value": "azure.schemaregistry.foo", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false, "NavigationDisplayName": "foo", "RenderClasses": ["method"]}, {"Kind": 1, "Value": "(", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.foo_2", "Children": [{"Tokens": [{"Kind": 0, "Value": " a", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "int", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "LineId": "azure.schemaregistry.foo_2.param(a)", "IsContextEndLine": false}, {"Tokens": [{"Kind": 0, "Value": " *", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false}, {"Tokens": [{"Kind": 0, "Value": " bar", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "int", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.foo_2.param(bar)"}, {"Tokens": [{"Kind": 0, "Value": " **kwargs", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.foo_2.param(kwargs)"}, {"Tokens": [{"Kind": 1, "Value": ")", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "->", "HasPrefixSpace": true, "HasSuffixSpace": true}, {"Kind": 3, "Value": "int", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.foo_2.returntype"}]}, {"Tokens": [], "IsContextEndLine": true, "RelatedToLine": "azure.schemaregistry.foo_2"}, {"Tokens": [], "IsContextEndLine": false, "RelatedToLine": "azure.schemaregistry.foo_2"}, {"Tokens": [{"Kind": 2, "Value": "def", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 0, "Value": "azure.schemaregistry.foo", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false, "NavigationDisplayName": "foo", "RenderClasses": ["method"]}, {"Kind": 1, "Value": "(", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.foo", "Children": [{"Tokens": [{"Kind": 0, "Value": " a", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "int", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "LineId": "azure.schemaregistry.foo.param(a)", "IsContextEndLine": false}, {"Tokens": [{"Kind": 0, "Value": " *", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false}, {"Tokens": [{"Kind": 0, "Value": " bar", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Union", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "[", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "int", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ", ", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "]", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.foo.param(bar)"}, {"Tokens": [{"Kind": 0, "Value": " **kwargs", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.foo.param(kwargs)"}, {"Tokens": [{"Kind": 1, "Value": ")", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "->", "HasPrefixSpace": true, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Union", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "[", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "int", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ", ", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "]", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.foo.returntype"}]}, {"Tokens": [], "IsContextEndLine": true, "RelatedToLine": "azure.schemaregistry.foo"}, {"Tokens": [], "IsContextEndLine": false, "RelatedToLine": "azure.schemaregistry.foo"}, {"Tokens": [{"Kind": 2, "Value": "class", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 0, "Value": "azure.schemaregistry.InboundMessageContent", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false, "NavigationDisplayName": "InboundMessageContent", "RenderClasses": ["class"]}, {"Kind": 1, "Value": "(", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "Protocol", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ")", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.InboundMessageContent", "Children": [{"Tokens": [], "IsContextEndLine": false, "RelatedToLine": "azure.schemaregistry.InboundMessageContent"}, {"Tokens": [{"Kind": 2, "Value": "def", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 0, "Value": "__message_content__", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false, "RenderClasses": ["method"]}, {"Kind": 1, "Value": "(", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 0, "Value": "self", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ")", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "->", "HasPrefixSpace": true, "HasSuffixSpace": true}, {"Kind": 3, "Value": "MessageContent", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.InboundMessageContent.__message_content__", "Children": []}, {"Tokens": [], "IsContextEndLine": false, "RelatedToLine": "azure.schemaregistry.InboundMessageContent.__message_content__"}, {"Tokens": [], "IsContextEndLine": true, "RelatedToLine": "azure.schemaregistry.InboundMessageContent"}]}, {"Tokens": [{"Kind": 2, "Value": "class", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 0, "Value": "azure.schemaregistry.MessageContent", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false, "NavigationDisplayName": "MessageContent", "RenderClasses": ["class"]}, {"Kind": 1, "Value": "(", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "TypedDict", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ")", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.MessageContent", "Children": [{"Tokens": [{"Kind": 0, "Value": "key", "HasPrefixSpace": false, "HasSuffixSpace": true, "SkipDiff": false}, {"Kind": 0, "Value": "\"content\"", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "ForwardRef", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "('", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "bytes", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "')", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.MessageContent.\"content\""}, {"Tokens": [{"Kind": 0, "Value": "key", "HasPrefixSpace": false, "HasSuffixSpace": true, "SkipDiff": false}, {"Kind": 0, "Value": "\"content_type\"", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "ForwardRef", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "('", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "')", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.MessageContent.\"content_type\""}, {"Tokens": [], "IsContextEndLine": false, "RelatedToLine": "azure.schemaregistry.MessageContent"}, {"Tokens": [], "IsContextEndLine": true, "RelatedToLine": "azure.schemaregistry.MessageContent"}]}, {"Tokens": [{"Kind": 2, "Value": "class", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 0, "Value": "azure.schemaregistry.OutboundMessageContent", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false, "NavigationDisplayName": "OutboundMessageContent", "RenderClasses": ["class"]}, {"Kind": 1, "Value": "(", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "Protocol", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ")", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.OutboundMessageContent", "Children": [{"Tokens": [], "IsContextEndLine": false, "RelatedToLine": "azure.schemaregistry.OutboundMessageContent"}, {"Tokens": [{"Kind": 2, "Value": "@classmethod", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "RelatedToLine": "azure.schemaregistry.OutboundMessageContent.from_message_content"}, {"Tokens": [{"Kind": 2, "Value": "def", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 0, "Value": "from_message_content", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false, "RenderClasses": ["method"]}, {"Kind": 1, "Value": "(", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.OutboundMessageContent.from_message_content", "Children": [{"Tokens": [{"Kind": 0, "Value": " cls", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "LineId": "azure.schemaregistry.OutboundMessageContent.from_message_content.param(cls)", "IsContextEndLine": false}, {"Tokens": [{"Kind": 0, "Value": " content", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "bytes", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.OutboundMessageContent.from_message_content.param(content)"}, {"Tokens": [{"Kind": 0, "Value": " content_type", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.OutboundMessageContent.from_message_content.param(content_type)"}, {"Tokens": [{"Kind": 0, "Value": " **kwargs", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Any", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.OutboundMessageContent.from_message_content.param(kwargs)"}, {"Tokens": [{"Kind": 1, "Value": ")", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "->", "HasPrefixSpace": true, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Self", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.OutboundMessageContent.from_message_content.returntype"}]}, {"Tokens": [], "IsContextEndLine": true, "RelatedToLine": "azure.schemaregistry.OutboundMessageContent.from_message_content"}, {"Tokens": [], "IsContextEndLine": true, "RelatedToLine": "azure.schemaregistry.OutboundMessageContent"}]}, {"Tokens": [{"Kind": 2, "Value": "class", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 0, "Value": "azure.schemaregistry.Schema", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false, "NavigationDisplayName": "Schema", "RenderClasses": ["class"]}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.Schema", "Children": [{"Tokens": [{"Kind": 2, "Value": "ivar", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 0, "Value": "definition", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.Schema.definition(str)"}, {"Tokens": [{"Kind": 2, "Value": "ivar", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 0, "Value": "properties", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "SchemaProperties", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.Schema.properties(SchemaProperties)"}, {"Tokens": [], "IsContextEndLine": false, "RelatedToLine": "azure.schemaregistry.Schema"}, {"Tokens": [{"Kind": 2, "Value": "def", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 0, "Value": "__init__", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false, "RenderClasses": ["method"]}, {"Kind": 1, "Value": "(", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 0, "Value": "self", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 0, "Value": "**kwargs", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Any", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ")", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "->", "HasPrefixSpace": true, "HasSuffixSpace": true}, {"Kind": 3, "Value": "None", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.Schema.__init__", "Children": []}, {"Tokens": [], "IsContextEndLine": false, "RelatedToLine": "azure.schemaregistry.Schema.__init__"}, {"Tokens": [{"Kind": 2, "Value": "def", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 0, "Value": "__repr__", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false, "RenderClasses": ["method"]}, {"Kind": 1, "Value": "(", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 0, "Value": "self", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ")", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "->", "HasPrefixSpace": true, "HasSuffixSpace": true}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.Schema.__repr__", "Children": []}, {"Tokens": [], "IsContextEndLine": false, "RelatedToLine": "azure.schemaregistry.Schema.__repr__"}, {"Tokens": [], "IsContextEndLine": true, "RelatedToLine": "azure.schemaregistry.Schema"}]}, {"Tokens": [{"Kind": 2, "Value": "class", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 0, "Value": "azure.schemaregistry.SchemaContentValidate", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false, "NavigationDisplayName": "SchemaContentValidate", "RenderClasses": ["class"]}, {"Kind": 1, "Value": "(", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "Protocol", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ")", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.SchemaContentValidate", "Children": [{"Tokens": [], "IsContextEndLine": false, "RelatedToLine": "azure.schemaregistry.SchemaContentValidate"}, {"Tokens": [{"Kind": 2, "Value": "def", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 0, "Value": "__call__", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false, "RenderClasses": ["method"]}, {"Kind": 1, "Value": "(", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.SchemaContentValidate.__call__", "Children": [{"Tokens": [{"Kind": 0, "Value": " self", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "LineId": "azure.schemaregistry.SchemaContentValidate.__call__.param(self)", "IsContextEndLine": false}, {"Tokens": [{"Kind": 0, "Value": " schema", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Mapping", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "[", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ", ", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "Any", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "]", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.SchemaContentValidate.__call__.param(schema)"}, {"Tokens": [{"Kind": 0, "Value": " content", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Mapping", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "[", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ", ", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "Any", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "]", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.SchemaContentValidate.__call__.param(content)"}, {"Tokens": [{"Kind": 1, "Value": ")", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "->", "HasPrefixSpace": true, "HasSuffixSpace": true}, {"Kind": 3, "Value": "None", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.SchemaContentValidate.__call__.returntype"}]}, {"Tokens": [], "IsContextEndLine": true, "RelatedToLine": "azure.schemaregistry.SchemaContentValidate.__call__"}, {"Tokens": [], "IsContextEndLine": true, "RelatedToLine": "azure.schemaregistry.SchemaContentValidate"}]}, {"Tokens": [{"Kind": 2, "Value": "class", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 0, "Value": "azure.schemaregistry.SchemaFormat", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false, "NavigationDisplayName": "SchemaFormat", "RenderClasses": ["enum"]}, {"Kind": 1, "Value": "(", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Enum", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ")", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.SchemaFormat", "Children": [{"Tokens": [{"Kind": 0, "Value": "AVRO", "HasPrefixSpace": false, "HasSuffixSpace": true, "SkipDiff": false}, {"Kind": 1, "Value": "=", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 5, "Value": "\"Avro\"", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.SchemaFormat.AVRO"}, {"Tokens": [{"Kind": 0, "Value": "CUSTOM", "HasPrefixSpace": false, "HasSuffixSpace": true, "SkipDiff": false}, {"Kind": 1, "Value": "=", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 5, "Value": "\"Custom\"", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.SchemaFormat.CUSTOM"}, {"Tokens": [{"Kind": 0, "Value": "JSON", "HasPrefixSpace": false, "HasSuffixSpace": true, "SkipDiff": false}, {"Kind": 1, "Value": "=", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 5, "Value": "\"Json\"", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.SchemaFormat.JSON"}, {"Tokens": [], "IsContextEndLine": false, "RelatedToLine": "azure.schemaregistry.SchemaFormat"}, {"Tokens": [], "IsContextEndLine": true, "RelatedToLine": "azure.schemaregistry.SchemaFormat"}]}, {"Tokens": [{"Kind": 2, "Value": "class", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 0, "Value": "azure.schemaregistry.SchemaProperties", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false, "NavigationDisplayName": "SchemaProperties", "RenderClasses": ["class"]}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.SchemaProperties", "Children": [{"Tokens": [{"Kind": 2, "Value": "ivar", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 0, "Value": "format", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "SchemaFormat", "HasPrefixSpace": false, "HasSuffixSpace": false, "NavigateToId": "azure.schemaregistry.SchemaFormat"}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.SchemaProperties.format(~azure.schemaregistry.SchemaFormat)"}, {"Tokens": [{"Kind": 2, "Value": "ivar", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 0, "Value": "group_name", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.SchemaProperties.group_name(str)"}, {"Tokens": [{"Kind": 2, "Value": "ivar", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 0, "Value": "id", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.SchemaProperties.id(str)"}, {"Tokens": [{"Kind": 2, "Value": "ivar", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 0, "Value": "name", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.SchemaProperties.name(str)"}, {"Tokens": [{"Kind": 2, "Value": "ivar", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 0, "Value": "version", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "int", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.SchemaProperties.version(int)"}, {"Tokens": [], "IsContextEndLine": false, "RelatedToLine": "azure.schemaregistry.SchemaProperties"}, {"Tokens": [{"Kind": 2, "Value": "def", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 0, "Value": "__init__", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false, "RenderClasses": ["method"]}, {"Kind": 1, "Value": "(", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 0, "Value": "self", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 0, "Value": "**kwargs", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Any", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ")", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "->", "HasPrefixSpace": true, "HasSuffixSpace": true}, {"Kind": 3, "Value": "None", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.SchemaProperties.__init__", "Children": []}, {"Tokens": [], "IsContextEndLine": false, "RelatedToLine": "azure.schemaregistry.SchemaProperties.__init__"}, {"Tokens": [{"Kind": 2, "Value": "def", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 0, "Value": "__repr__", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false, "RenderClasses": ["method"]}, {"Kind": 1, "Value": "(", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 0, "Value": "self", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ")", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "->", "HasPrefixSpace": true, "HasSuffixSpace": true}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.SchemaProperties.__repr__", "Children": []}, {"Tokens": [], "IsContextEndLine": false, "RelatedToLine": "azure.schemaregistry.SchemaProperties.__repr__"}, {"Tokens": [], "IsContextEndLine": true, "RelatedToLine": "azure.schemaregistry.SchemaProperties"}]}, {"Tokens": [{"Kind": 2, "Value": "class", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 0, "Value": "azure.schemaregistry.SchemaRegistryClient", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false, "NavigationDisplayName": "SchemaRegistryClient", "RenderClasses": ["class"]}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 0, "Value": " ", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 2, "Value": "implements", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "ContextManager", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.SchemaRegistryClient", "Children": [{"Tokens": [], "IsContextEndLine": false, "RelatedToLine": "azure.schemaregistry.SchemaRegistryClient"}, {"Tokens": [{"Kind": 2, "Value": "def", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 0, "Value": "__init__", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false, "RenderClasses": ["method"]}, {"Kind": 1, "Value": "(", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.SchemaRegistryClient.__init__", "Children": [{"Tokens": [{"Kind": 0, "Value": " self", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "LineId": "azure.schemaregistry.SchemaRegistryClient.__init__.param(self)", "IsContextEndLine": false}, {"Tokens": [{"Kind": 0, "Value": " fully_qualified_namespace", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.SchemaRegistryClient.__init__.param(fully_qualified_namespace)"}, {"Tokens": [{"Kind": 0, "Value": " credential", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "TokenCredential", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.SchemaRegistryClient.__init__.param(credential)"}, {"Tokens": [{"Kind": 0, "Value": " *", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false}, {"Tokens": [{"Kind": 0, "Value": " api_version", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Optional", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "[", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "]", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "=", "HasPrefixSpace": true, "HasSuffixSpace": true}, {"Kind": 6, "Value": "...", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.SchemaRegistryClient.__init__.param(api_version)"}, {"Tokens": [{"Kind": 0, "Value": " **kwargs", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Any", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.SchemaRegistryClient.__init__.param(kwargs)"}, {"Tokens": [{"Kind": 1, "Value": ")", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "->", "HasPrefixSpace": true, "HasSuffixSpace": true}, {"Kind": 3, "Value": "None", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.SchemaRegistryClient.__init__.returntype"}]}, {"Tokens": [], "IsContextEndLine": true, "RelatedToLine": "azure.schemaregistry.SchemaRegistryClient.__init__"}, {"Tokens": [{"Kind": 2, "Value": "def", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 0, "Value": "close", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false, "RenderClasses": ["method"]}, {"Kind": 1, "Value": "(", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 0, "Value": "self", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ")", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "->", "HasPrefixSpace": true, "HasSuffixSpace": true}, {"Kind": 3, "Value": "None", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.SchemaRegistryClient.close", "Children": []}, {"Tokens": [], "IsContextEndLine": false, "RelatedToLine": "azure.schemaregistry.SchemaRegistryClient.close"}, {"Tokens": [{"Kind": 2, "Value": "@overload", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "RelatedToLine": "azure.schemaregistry.SchemaRegistryClient.foob_1"}, {"Tokens": [{"Kind": 2, "Value": "def", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 0, "Value": "foob", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false, "RenderClasses": ["method"]}, {"Kind": 1, "Value": "(", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.SchemaRegistryClient.foob_1", "Children": [{"Tokens": [{"Kind": 0, "Value": " self", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "LineId": "azure.schemaregistry.SchemaRegistryClient.foob_1.param(self)", "IsContextEndLine": false}, {"Tokens": [{"Kind": 0, "Value": " *", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false}, {"Tokens": [{"Kind": 0, "Value": " bar", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.SchemaRegistryClient.foob_1.param(bar)"}, {"Tokens": [{"Kind": 0, "Value": " **kwargs", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.SchemaRegistryClient.foob_1.param(kwargs)"}, {"Tokens": [{"Kind": 1, "Value": ")", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "->", "HasPrefixSpace": true, "HasSuffixSpace": true}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.SchemaRegistryClient.foob_1.returntype"}]}, {"Tokens": [], "IsContextEndLine": true, "RelatedToLine": "azure.schemaregistry.SchemaRegistryClient.foob_1"}, {"Tokens": [{"Kind": 2, "Value": "@overload", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "RelatedToLine": "azure.schemaregistry.SchemaRegistryClient.foob_2"}, {"Tokens": [{"Kind": 2, "Value": "def", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 0, "Value": "foob", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false, "RenderClasses": ["method"]}, {"Kind": 1, "Value": "(", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.SchemaRegistryClient.foob_2", "Children": [{"Tokens": [{"Kind": 0, "Value": " self", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "LineId": "azure.schemaregistry.SchemaRegistryClient.foob_2.param(self)", "IsContextEndLine": false}, {"Tokens": [{"Kind": 0, "Value": " *", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false}, {"Tokens": [{"Kind": 0, "Value": " bar", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "int", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.SchemaRegistryClient.foob_2.param(bar)"}, {"Tokens": [{"Kind": 0, "Value": " **kwargs", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.SchemaRegistryClient.foob_2.param(kwargs)"}, {"Tokens": [{"Kind": 1, "Value": ")", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "->", "HasPrefixSpace": true, "HasSuffixSpace": true}, {"Kind": 3, "Value": "int", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.SchemaRegistryClient.foob_2.returntype"}]}, {"Tokens": [], "IsContextEndLine": true, "RelatedToLine": "azure.schemaregistry.SchemaRegistryClient.foob_2"}, {"Tokens": [{"Kind": 2, "Value": "def", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 0, "Value": "foob", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false, "RenderClasses": ["method"]}, {"Kind": 1, "Value": "(", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.SchemaRegistryClient.foob", "Children": [{"Tokens": [{"Kind": 0, "Value": " self", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "LineId": "azure.schemaregistry.SchemaRegistryClient.foob.param(self)", "IsContextEndLine": false}, {"Tokens": [{"Kind": 0, "Value": " *", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false}, {"Tokens": [{"Kind": 0, "Value": " bar", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Union", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "[", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "int", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ", ", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "]", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.SchemaRegistryClient.foob.param(bar)"}, {"Tokens": [{"Kind": 0, "Value": " **kwargs", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.SchemaRegistryClient.foob.param(kwargs)"}, {"Tokens": [{"Kind": 1, "Value": ")", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "->", "HasPrefixSpace": true, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Union", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "[", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "int", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ", ", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "]", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.SchemaRegistryClient.foob.returntype"}]}, {"Tokens": [], "IsContextEndLine": true, "RelatedToLine": "azure.schemaregistry.SchemaRegistryClient.foob"}, {"Tokens": [{"Kind": 2, "Value": "@overload", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "RelatedToLine": "azure.schemaregistry.SchemaRegistryClient.get_schema_1"}, {"Tokens": [{"Kind": 2, "Value": "def", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 0, "Value": "get_schema", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false, "RenderClasses": ["method"]}, {"Kind": 1, "Value": "(", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.SchemaRegistryClient.get_schema_1", "Children": [{"Tokens": [{"Kind": 0, "Value": " self", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "LineId": "azure.schemaregistry.SchemaRegistryClient.get_schema_1.param(self)", "IsContextEndLine": false}, {"Tokens": [{"Kind": 0, "Value": " schema_id", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.SchemaRegistryClient.get_schema_1.param(schema_id)"}, {"Tokens": [{"Kind": 0, "Value": " **kwargs", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Any", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.SchemaRegistryClient.get_schema_1.param(kwargs)"}, {"Tokens": [{"Kind": 1, "Value": ")", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "->", "HasPrefixSpace": true, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Schema", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.SchemaRegistryClient.get_schema_1.returntype"}]}, {"Tokens": [], "IsContextEndLine": true, "RelatedToLine": "azure.schemaregistry.SchemaRegistryClient.get_schema_1"}, {"Tokens": [{"Kind": 2, "Value": "@overload", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "RelatedToLine": "azure.schemaregistry.SchemaRegistryClient.get_schema_2"}, {"Tokens": [{"Kind": 2, "Value": "def", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 0, "Value": "get_schema", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false, "RenderClasses": ["method"]}, {"Kind": 1, "Value": "(", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.SchemaRegistryClient.get_schema_2", "Children": [{"Tokens": [{"Kind": 0, "Value": " self", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "LineId": "azure.schemaregistry.SchemaRegistryClient.get_schema_2.param(self)", "IsContextEndLine": false}, {"Tokens": [{"Kind": 0, "Value": " *", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false}, {"Tokens": [{"Kind": 0, "Value": " group_name", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.SchemaRegistryClient.get_schema_2.param(group_name)"}, {"Tokens": [{"Kind": 0, "Value": " name", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.SchemaRegistryClient.get_schema_2.param(name)"}, {"Tokens": [{"Kind": 0, "Value": " version", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "int", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.SchemaRegistryClient.get_schema_2.param(version)"}, {"Tokens": [{"Kind": 0, "Value": " **kwargs", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Any", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.SchemaRegistryClient.get_schema_2.param(kwargs)"}, {"Tokens": [{"Kind": 1, "Value": ")", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "->", "HasPrefixSpace": true, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Schema", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.SchemaRegistryClient.get_schema_2.returntype"}]}, {"Tokens": [], "IsContextEndLine": true, "RelatedToLine": "azure.schemaregistry.SchemaRegistryClient.get_schema_2"}, {"Tokens": [{"Kind": 2, "Value": "@distributed_trace", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "RelatedToLine": "azure.schemaregistry.SchemaRegistryClient.get_schema"}, {"Tokens": [{"Kind": 2, "Value": "def", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 0, "Value": "get_schema", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false, "RenderClasses": ["method"]}, {"Kind": 1, "Value": "(", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.SchemaRegistryClient.get_schema", "Children": [{"Tokens": [{"Kind": 0, "Value": " self", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "LineId": "azure.schemaregistry.SchemaRegistryClient.get_schema.param(self)", "IsContextEndLine": false}, {"Tokens": [{"Kind": 0, "Value": " *args", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.SchemaRegistryClient.get_schema.param(args)"}, {"Tokens": [{"Kind": 0, "Value": " *", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false}, {"Tokens": [{"Kind": 0, "Value": " group_name", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Optional", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "[", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "]", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "=", "HasPrefixSpace": true, "HasSuffixSpace": true}, {"Kind": 6, "Value": "...", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.SchemaRegistryClient.get_schema.param(group_name)"}, {"Tokens": [{"Kind": 0, "Value": " name", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Optional", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "[", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "]", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "=", "HasPrefixSpace": true, "HasSuffixSpace": true}, {"Kind": 6, "Value": "...", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.SchemaRegistryClient.get_schema.param(name)"}, {"Tokens": [{"Kind": 0, "Value": " version", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Optional", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "[", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "int", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "]", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "=", "HasPrefixSpace": true, "HasSuffixSpace": true}, {"Kind": 6, "Value": "...", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.SchemaRegistryClient.get_schema.param(version)"}, {"Tokens": [{"Kind": 0, "Value": " **kwargs", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Any", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.SchemaRegistryClient.get_schema.param(kwargs)"}, {"Tokens": [{"Kind": 1, "Value": ")", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "->", "HasPrefixSpace": true, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Schema", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.SchemaRegistryClient.get_schema.returntype"}]}, {"Tokens": [], "IsContextEndLine": true, "RelatedToLine": "azure.schemaregistry.SchemaRegistryClient.get_schema"}, {"Tokens": [{"Kind": 2, "Value": "@distributed_trace", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "RelatedToLine": "azure.schemaregistry.SchemaRegistryClient.get_schema_properties"}, {"Tokens": [{"Kind": 2, "Value": "def", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 0, "Value": "get_schema_properties", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false, "RenderClasses": ["method"]}, {"Kind": 1, "Value": "(", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.SchemaRegistryClient.get_schema_properties", "Children": [{"Tokens": [{"Kind": 0, "Value": " self", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "LineId": "azure.schemaregistry.SchemaRegistryClient.get_schema_properties.param(self)", "IsContextEndLine": false}, {"Tokens": [{"Kind": 0, "Value": " group_name", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.SchemaRegistryClient.get_schema_properties.param(group_name)"}, {"Tokens": [{"Kind": 0, "Value": " name", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.SchemaRegistryClient.get_schema_properties.param(name)"}, {"Tokens": [{"Kind": 0, "Value": " definition", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.SchemaRegistryClient.get_schema_properties.param(definition)"}, {"Tokens": [{"Kind": 0, "Value": " format", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Union", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "[", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ", ", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "SchemaFormat", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "]", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.SchemaRegistryClient.get_schema_properties.param(format)"}, {"Tokens": [{"Kind": 0, "Value": " **kwargs", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Any", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.SchemaRegistryClient.get_schema_properties.param(kwargs)"}, {"Tokens": [{"Kind": 1, "Value": ")", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "->", "HasPrefixSpace": true, "HasSuffixSpace": true}, {"Kind": 3, "Value": "SchemaProperties", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.SchemaRegistryClient.get_schema_properties.returntype"}]}, {"Tokens": [], "IsContextEndLine": true, "RelatedToLine": "azure.schemaregistry.SchemaRegistryClient.get_schema_properties"}, {"Tokens": [{"Kind": 2, "Value": "@distributed_trace", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "RelatedToLine": "azure.schemaregistry.SchemaRegistryClient.register_schema"}, {"Tokens": [{"Kind": 2, "Value": "def", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 0, "Value": "register_schema", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false, "RenderClasses": ["method"]}, {"Kind": 1, "Value": "(", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "CrossLanguageId": "SchemaRegistry.registerSchema", "LineId": "azure.schemaregistry.SchemaRegistryClient.register_schema", "Children": [{"Tokens": [{"Kind": 0, "Value": " self", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "LineId": "azure.schemaregistry.SchemaRegistryClient.register_schema.param(self)", "IsContextEndLine": false}, {"Tokens": [{"Kind": 0, "Value": " group_name", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.SchemaRegistryClient.register_schema.param(group_name)"}, {"Tokens": [{"Kind": 0, "Value": " name", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.SchemaRegistryClient.register_schema.param(name)"}, {"Tokens": [{"Kind": 0, "Value": " definition", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.SchemaRegistryClient.register_schema.param(definition)"}, {"Tokens": [{"Kind": 0, "Value": " format", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Union", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "[", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ", ", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "SchemaFormat", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "]", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.SchemaRegistryClient.register_schema.param(format)"}, {"Tokens": [{"Kind": 0, "Value": " **kwargs", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Any", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.SchemaRegistryClient.register_schema.param(kwargs)"}, {"Tokens": [{"Kind": 1, "Value": ")", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "->", "HasPrefixSpace": true, "HasSuffixSpace": true}, {"Kind": 3, "Value": "SchemaProperties", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.SchemaRegistryClient.register_schema.returntype"}]}, {"Tokens": [], "IsContextEndLine": true, "RelatedToLine": "azure.schemaregistry.SchemaRegistryClient.register_schema"}, {"Tokens": [], "IsContextEndLine": true, "RelatedToLine": "azure.schemaregistry.SchemaRegistryClient"}]}]}, {"Tokens": [{"Kind": 2, "Value": "namespace", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 0, "Value": "azure.schemaregistry.aio", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false, "NavigationDisplayName": "azure.schemaregistry.aio", "RenderClasses": ["namespace"]}], "LineId": "azure.schemaregistry.aio", "IsContextEndLine": false, "Children": [{"Tokens": [], "IsContextEndLine": false, "RelatedToLine": "azure.schemaregistry.aio"}, {"Tokens": [{"Kind": 2, "Value": "class", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 0, "Value": "azure.schemaregistry.aio.SchemaRegistryClient", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false, "NavigationDisplayName": "SchemaRegistryClient", "RenderClasses": ["class"]}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 0, "Value": " ", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 2, "Value": "implements", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "AsyncContextManager", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.aio.SchemaRegistryClient", "Children": [{"Tokens": [], "IsContextEndLine": false, "RelatedToLine": "azure.schemaregistry.aio.SchemaRegistryClient"}, {"Tokens": [{"Kind": 2, "Value": "def", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 0, "Value": "__init__", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false, "RenderClasses": ["method"]}, {"Kind": 1, "Value": "(", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.__init__", "Children": [{"Tokens": [{"Kind": 0, "Value": " self", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.__init__.param(self)", "IsContextEndLine": false}, {"Tokens": [{"Kind": 0, "Value": " fully_qualified_namespace", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.__init__.param(fully_qualified_namespace)"}, {"Tokens": [{"Kind": 0, "Value": " credential", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "AsyncTokenCredential", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.__init__.param(credential)"}, {"Tokens": [{"Kind": 0, "Value": " *", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false}, {"Tokens": [{"Kind": 0, "Value": " api_version", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Optional", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "[", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "]", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "=", "HasPrefixSpace": true, "HasSuffixSpace": true}, {"Kind": 6, "Value": "...", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.__init__.param(api_version)"}, {"Tokens": [{"Kind": 0, "Value": " **kwargs", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Any", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.__init__.param(kwargs)"}, {"Tokens": [{"Kind": 1, "Value": ")", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "->", "HasPrefixSpace": true, "HasSuffixSpace": true}, {"Kind": 3, "Value": "None", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.__init__.returntype"}]}, {"Tokens": [], "IsContextEndLine": true, "RelatedToLine": "azure.schemaregistry.aio.SchemaRegistryClient.__init__"}, {"Tokens": [{"Kind": 2, "Value": "async", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 2, "Value": "def", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 0, "Value": "close", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false, "RenderClasses": ["method"]}, {"Kind": 1, "Value": "(", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 0, "Value": "self", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ")", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "->", "HasPrefixSpace": true, "HasSuffixSpace": true}, {"Kind": 3, "Value": "None", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.close:async", "Children": []}, {"Tokens": [], "IsContextEndLine": false, "RelatedToLine": "azure.schemaregistry.aio.SchemaRegistryClient.close:async"}, {"Tokens": [{"Kind": 2, "Value": "@overload", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "RelatedToLine": "azure.schemaregistry.aio.SchemaRegistryClient.get_schema:async_1"}, {"Tokens": [{"Kind": 2, "Value": "async", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 2, "Value": "def", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 0, "Value": "get_schema", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false, "RenderClasses": ["method"]}, {"Kind": 1, "Value": "(", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.get_schema:async_1", "Children": [{"Tokens": [{"Kind": 0, "Value": " self", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.get_schema:async_1.param(self)", "IsContextEndLine": false}, {"Tokens": [{"Kind": 0, "Value": " schema_id", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.get_schema:async_1.param(schema_id)"}, {"Tokens": [{"Kind": 0, "Value": " **kwargs", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Any", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.get_schema:async_1.param(kwargs)"}, {"Tokens": [{"Kind": 1, "Value": ")", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "->", "HasPrefixSpace": true, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Schema", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.get_schema:async_1.returntype"}]}, {"Tokens": [], "IsContextEndLine": true, "RelatedToLine": "azure.schemaregistry.aio.SchemaRegistryClient.get_schema:async_1"}, {"Tokens": [{"Kind": 2, "Value": "@overload", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "RelatedToLine": "azure.schemaregistry.aio.SchemaRegistryClient.get_schema:async_2"}, {"Tokens": [{"Kind": 2, "Value": "async", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 2, "Value": "def", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 0, "Value": "get_schema", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false, "RenderClasses": ["method"]}, {"Kind": 1, "Value": "(", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.get_schema:async_2", "Children": [{"Tokens": [{"Kind": 0, "Value": " self", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.get_schema:async_2.param(self)", "IsContextEndLine": false}, {"Tokens": [{"Kind": 0, "Value": " *", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false}, {"Tokens": [{"Kind": 0, "Value": " group_name", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.get_schema:async_2.param(group_name)"}, {"Tokens": [{"Kind": 0, "Value": " name", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.get_schema:async_2.param(name)"}, {"Tokens": [{"Kind": 0, "Value": " version", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "int", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.get_schema:async_2.param(version)"}, {"Tokens": [{"Kind": 0, "Value": " **kwargs", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Any", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.get_schema:async_2.param(kwargs)"}, {"Tokens": [{"Kind": 1, "Value": ")", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "->", "HasPrefixSpace": true, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Schema", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.get_schema:async_2.returntype"}]}, {"Tokens": [], "IsContextEndLine": true, "RelatedToLine": "azure.schemaregistry.aio.SchemaRegistryClient.get_schema:async_2"}, {"Tokens": [{"Kind": 2, "Value": "@distributed_trace_async", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "RelatedToLine": "azure.schemaregistry.aio.SchemaRegistryClient.get_schema:async"}, {"Tokens": [{"Kind": 2, "Value": "async", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 2, "Value": "def", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 0, "Value": "get_schema", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false, "RenderClasses": ["method"]}, {"Kind": 1, "Value": "(", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.get_schema:async", "Children": [{"Tokens": [{"Kind": 0, "Value": " self", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.get_schema:async.param(self)", "IsContextEndLine": false}, {"Tokens": [{"Kind": 0, "Value": " *args", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.get_schema:async.param(args)"}, {"Tokens": [{"Kind": 0, "Value": " *", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false}, {"Tokens": [{"Kind": 0, "Value": " group_name", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Optional", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "[", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "]", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "=", "HasPrefixSpace": true, "HasSuffixSpace": true}, {"Kind": 6, "Value": "...", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.get_schema:async.param(group_name)"}, {"Tokens": [{"Kind": 0, "Value": " name", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Optional", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "[", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "]", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "=", "HasPrefixSpace": true, "HasSuffixSpace": true}, {"Kind": 6, "Value": "...", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.get_schema:async.param(name)"}, {"Tokens": [{"Kind": 0, "Value": " version", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Optional", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "[", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "int", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "]", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "=", "HasPrefixSpace": true, "HasSuffixSpace": true}, {"Kind": 6, "Value": "...", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.get_schema:async.param(version)"}, {"Tokens": [{"Kind": 0, "Value": " **kwargs", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Any", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.get_schema:async.param(kwargs)"}, {"Tokens": [{"Kind": 1, "Value": ")", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "->", "HasPrefixSpace": true, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Schema", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.get_schema:async.returntype"}]}, {"Tokens": [], "IsContextEndLine": true, "RelatedToLine": "azure.schemaregistry.aio.SchemaRegistryClient.get_schema:async"}, {"Tokens": [{"Kind": 2, "Value": "@distributed_trace_async", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "RelatedToLine": "azure.schemaregistry.aio.SchemaRegistryClient.get_schema_properties:async"}, {"Tokens": [{"Kind": 2, "Value": "async", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 2, "Value": "def", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 0, "Value": "get_schema_properties", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false, "RenderClasses": ["method"]}, {"Kind": 1, "Value": "(", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.get_schema_properties:async", "Children": [{"Tokens": [{"Kind": 0, "Value": " self", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.get_schema_properties:async.param(self)", "IsContextEndLine": false}, {"Tokens": [{"Kind": 0, "Value": " group_name", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.get_schema_properties:async.param(group_name)"}, {"Tokens": [{"Kind": 0, "Value": " name", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.get_schema_properties:async.param(name)"}, {"Tokens": [{"Kind": 0, "Value": " definition", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.get_schema_properties:async.param(definition)"}, {"Tokens": [{"Kind": 0, "Value": " format", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Union", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "[", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ", ", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "SchemaFormat", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "]", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.get_schema_properties:async.param(format)"}, {"Tokens": [{"Kind": 0, "Value": " **kwargs", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Any", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.get_schema_properties:async.param(kwargs)"}, {"Tokens": [{"Kind": 1, "Value": ")", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "->", "HasPrefixSpace": true, "HasSuffixSpace": true}, {"Kind": 3, "Value": "SchemaProperties", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.get_schema_properties:async.returntype"}]}, {"Tokens": [], "IsContextEndLine": true, "RelatedToLine": "azure.schemaregistry.aio.SchemaRegistryClient.get_schema_properties:async"}, {"Tokens": [{"Kind": 2, "Value": "@distributed_trace_async", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "RelatedToLine": "azure.schemaregistry.aio.SchemaRegistryClient.register_schema:async"}, {"Tokens": [{"Kind": 2, "Value": "async", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 2, "Value": "def", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 0, "Value": "register_schema", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false, "RenderClasses": ["method"]}, {"Kind": 1, "Value": "(", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.register_schema:async", "Children": [{"Tokens": [{"Kind": 0, "Value": " self", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.register_schema:async.param(self)", "IsContextEndLine": false}, {"Tokens": [{"Kind": 0, "Value": " group_name", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.register_schema:async.param(group_name)"}, {"Tokens": [{"Kind": 0, "Value": " name", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.register_schema:async.param(name)"}, {"Tokens": [{"Kind": 0, "Value": " definition", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.register_schema:async.param(definition)"}, {"Tokens": [{"Kind": 0, "Value": " format", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Union", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "[", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ", ", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "SchemaFormat", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "]", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.register_schema:async.param(format)"}, {"Tokens": [{"Kind": 0, "Value": " **kwargs", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Any", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.register_schema:async.param(kwargs)"}, {"Tokens": [{"Kind": 1, "Value": ")", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "->", "HasPrefixSpace": true, "HasSuffixSpace": true}, {"Kind": 3, "Value": "SchemaProperties", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.register_schema:async.returntype"}]}, {"Tokens": [], "IsContextEndLine": true, "RelatedToLine": "azure.schemaregistry.aio.SchemaRegistryClient.register_schema:async"}, {"Tokens": [], "IsContextEndLine": true, "RelatedToLine": "azure.schemaregistry.aio.SchemaRegistryClient"}]}]}, {"Tokens": [{"Kind": 2, "Value": "namespace", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 0, "Value": "azure.schemaregistry.encoder.jsonencoder", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false, "NavigationDisplayName": "azure.schemaregistry.encoder.jsonencoder", "RenderClasses": ["namespace"]}], "LineId": "azure.schemaregistry.encoder.jsonencoder", "IsContextEndLine": false, "Children": [{"Tokens": [], "IsContextEndLine": false, "RelatedToLine": "azure.schemaregistry.encoder.jsonencoder"}, {"Tokens": [{"Kind": 2, "Value": "class", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 0, "Value": "azure.schemaregistry.encoder.jsonencoder.InvalidContentError", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false, "NavigationDisplayName": "InvalidContentError", "RenderClasses": ["class"]}, {"Kind": 1, "Value": "(", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "ValueError", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ")", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.InvalidContentError", "Children": [{"Tokens": [{"Kind": 2, "Value": "ivar", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 0, "Value": "message", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.InvalidContentError.message(str)"}, {"Tokens": [], "IsContextEndLine": false, "RelatedToLine": "azure.schemaregistry.encoder.jsonencoder.InvalidContentError"}, {"Tokens": [{"Kind": 2, "Value": "def", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 0, "Value": "__init__", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false, "RenderClasses": ["method"]}, {"Kind": 1, "Value": "(", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.InvalidContentError.__init__", "Children": [{"Tokens": [{"Kind": 0, "Value": " self", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "LineId": "azure.schemaregistry.encoder.jsonencoder.InvalidContentError.__init__.param(self)", "IsContextEndLine": false}, {"Tokens": [{"Kind": 0, "Value": " message", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.InvalidContentError.__init__.param(message)"}, {"Tokens": [{"Kind": 0, "Value": " *args", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Any", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.InvalidContentError.__init__.param(args)"}, {"Tokens": [{"Kind": 0, "Value": " *", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false}, {"Tokens": [{"Kind": 0, "Value": " details", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Optional", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "[", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "Dict", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "[", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ", ", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "]]", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "=", "HasPrefixSpace": true, "HasSuffixSpace": true}, {"Kind": 6, "Value": "...", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.InvalidContentError.__init__.param(details)"}, {"Tokens": [{"Kind": 1, "Value": ")", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "->", "HasPrefixSpace": true, "HasSuffixSpace": true}, {"Kind": 3, "Value": "None", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.InvalidContentError.__init__.returntype"}]}, {"Tokens": [], "IsContextEndLine": true, "RelatedToLine": "azure.schemaregistry.encoder.jsonencoder.InvalidContentError.__init__"}, {"Tokens": [], "IsContextEndLine": true, "RelatedToLine": "azure.schemaregistry.encoder.jsonencoder.InvalidContentError"}]}, {"Tokens": [{"Kind": 2, "Value": "class", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 0, "Value": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false, "NavigationDisplayName": "JsonSchemaEncoder", "RenderClasses": ["class"]}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 0, "Value": " ", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 2, "Value": "implements", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "ContextManager", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder", "Children": [{"Tokens": [], "IsContextEndLine": false, "RelatedToLine": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder"}, {"Tokens": [{"Kind": 2, "Value": "def", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 0, "Value": "__init__", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false, "RenderClasses": ["method"]}, {"Kind": 1, "Value": "(", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.__init__", "Children": [{"Tokens": [{"Kind": 0, "Value": " self", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.__init__.param(self)", "IsContextEndLine": false}, {"Tokens": [{"Kind": 0, "Value": " *", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false}, {"Tokens": [{"Kind": 0, "Value": " client", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "SchemaRegistryClient", "HasPrefixSpace": false, "HasSuffixSpace": false, "NavigateToId": "azure.schemaregistry.SchemaRegistryClient"}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.__init__.param(client)"}, {"Tokens": [{"Kind": 0, "Value": " group_name", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Optional", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "[", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "]", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "=", "HasPrefixSpace": true, "HasSuffixSpace": true}, {"Kind": 6, "Value": "...", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.__init__.param(group_name)"}, {"Tokens": [{"Kind": 0, "Value": " validate", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Union", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "[", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ", ", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "SchemaContentValidate", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "]", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.__init__.param(validate)"}, {"Tokens": [{"Kind": 1, "Value": ")", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "->", "HasPrefixSpace": true, "HasSuffixSpace": true}, {"Kind": 3, "Value": "None", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.__init__.returntype"}]}, {"Tokens": [], "IsContextEndLine": true, "RelatedToLine": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.__init__"}, {"Tokens": [{"Kind": 2, "Value": "def", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 0, "Value": "close", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false, "RenderClasses": ["method"]}, {"Kind": 1, "Value": "(", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 0, "Value": "self", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ")", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "->", "HasPrefixSpace": true, "HasSuffixSpace": true}, {"Kind": 3, "Value": "None", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.close", "Children": []}, {"Tokens": [], "IsContextEndLine": false, "RelatedToLine": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.close"}, {"Tokens": [{"Kind": 2, "Value": "def", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 0, "Value": "decode", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false, "RenderClasses": ["method"]}, {"Kind": 1, "Value": "(", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.decode", "Children": [{"Tokens": [{"Kind": 0, "Value": " self", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.decode.param(self)", "IsContextEndLine": false}, {"Tokens": [{"Kind": 0, "Value": " message", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Union", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "[", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "MessageContent", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ", ", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "InboundMessageContent", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "]", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.decode.param(message)"}, {"Tokens": [{"Kind": 0, "Value": " *", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false}, {"Tokens": [{"Kind": 0, "Value": " request_options", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Optional", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "[", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "Dict", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "[", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ", ", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "Any", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "]]", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "=", "HasPrefixSpace": true, "HasSuffixSpace": true}, {"Kind": 6, "Value": "...", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.decode.param(request_options)"}, {"Tokens": [{"Kind": 0, "Value": " **kwargs", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Any", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.decode.param(kwargs)"}, {"Tokens": [{"Kind": 1, "Value": ")", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "->", "HasPrefixSpace": true, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Dict", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "[", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ", ", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "Any", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "]", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.decode.returntype"}]}, {"Tokens": [], "IsContextEndLine": true, "RelatedToLine": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.decode"}, {"Tokens": [{"Kind": 2, "Value": "@overload", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "RelatedToLine": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode_1"}, {"Tokens": [{"Kind": 2, "Value": "def", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 0, "Value": "encode", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false, "RenderClasses": ["method"]}, {"Kind": 1, "Value": "(", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode_1", "Children": [{"Tokens": [{"Kind": 0, "Value": " self", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode_1.param(self)", "IsContextEndLine": false}, {"Tokens": [{"Kind": 0, "Value": " content", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Mapping", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "[", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ", ", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "Any", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "]", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode_1.param(content)"}, {"Tokens": [{"Kind": 0, "Value": " *", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false}, {"Tokens": [{"Kind": 0, "Value": " message_type", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Type", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "[", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "OutboundMessageContent", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "]", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode_1.param(message_type)"}, {"Tokens": [{"Kind": 0, "Value": " request_options", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Optional", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "[", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "Dict", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "[", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ", ", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "Any", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "]]", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "=", "HasPrefixSpace": true, "HasSuffixSpace": true}, {"Kind": 6, "Value": "...", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode_1.param(request_options)"}, {"Tokens": [{"Kind": 0, "Value": " schema", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode_1.param(schema)"}, {"Tokens": [{"Kind": 0, "Value": " **kwargs", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Any", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode_1.param(kwargs)"}, {"Tokens": [{"Kind": 1, "Value": ")", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "->", "HasPrefixSpace": true, "HasSuffixSpace": true}, {"Kind": 3, "Value": "OutboundMessageContent", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode_1.returntype"}]}, {"Tokens": [], "IsContextEndLine": true, "RelatedToLine": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode_1"}, {"Tokens": [{"Kind": 2, "Value": "@overload", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "RelatedToLine": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode_2"}, {"Tokens": [{"Kind": 2, "Value": "def", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 0, "Value": "encode", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false, "RenderClasses": ["method"]}, {"Kind": 1, "Value": "(", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode_2", "Children": [{"Tokens": [{"Kind": 0, "Value": " self", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode_2.param(self)", "IsContextEndLine": false}, {"Tokens": [{"Kind": 0, "Value": " content", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Mapping", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "[", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ", ", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "Any", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "]", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode_2.param(content)"}, {"Tokens": [{"Kind": 0, "Value": " *", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false}, {"Tokens": [{"Kind": 0, "Value": " message_type", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Type", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "[", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "OutboundMessageContent", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "]", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode_2.param(message_type)"}, {"Tokens": [{"Kind": 0, "Value": " request_options", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Optional", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "[", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "Dict", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "[", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ", ", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "Any", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "]]", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "=", "HasPrefixSpace": true, "HasSuffixSpace": true}, {"Kind": 6, "Value": "...", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode_2.param(request_options)"}, {"Tokens": [{"Kind": 0, "Value": " schema_id", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode_2.param(schema_id)"}, {"Tokens": [{"Kind": 0, "Value": " **kwargs", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Any", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode_2.param(kwargs)"}, {"Tokens": [{"Kind": 1, "Value": ")", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "->", "HasPrefixSpace": true, "HasSuffixSpace": true}, {"Kind": 3, "Value": "OutboundMessageContent", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode_2.returntype"}]}, {"Tokens": [], "IsContextEndLine": true, "RelatedToLine": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode_2"}, {"Tokens": [{"Kind": 2, "Value": "@overload", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "RelatedToLine": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode_3"}, {"Tokens": [{"Kind": 2, "Value": "def", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 0, "Value": "encode", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false, "RenderClasses": ["method"]}, {"Kind": 1, "Value": "(", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode_3", "Children": [{"Tokens": [{"Kind": 0, "Value": " self", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode_3.param(self)", "IsContextEndLine": false}, {"Tokens": [{"Kind": 0, "Value": " content", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Mapping", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "[", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ", ", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "Any", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "]", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode_3.param(content)"}, {"Tokens": [{"Kind": 0, "Value": " *", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false}, {"Tokens": [{"Kind": 0, "Value": " request_options", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Optional", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "[", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "Dict", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "[", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ", ", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "Any", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "]]", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "=", "HasPrefixSpace": true, "HasSuffixSpace": true}, {"Kind": 6, "Value": "...", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode_3.param(request_options)"}, {"Tokens": [{"Kind": 0, "Value": " schema", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode_3.param(schema)"}, {"Tokens": [{"Kind": 0, "Value": " **kwargs", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Any", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode_3.param(kwargs)"}, {"Tokens": [{"Kind": 1, "Value": ")", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "->", "HasPrefixSpace": true, "HasSuffixSpace": true}, {"Kind": 3, "Value": "MessageContent", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode_3.returntype"}]}, {"Tokens": [], "IsContextEndLine": true, "RelatedToLine": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode_3"}, {"Tokens": [{"Kind": 2, "Value": "@overload", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "RelatedToLine": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode_4"}, {"Tokens": [{"Kind": 2, "Value": "def", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 0, "Value": "encode", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false, "RenderClasses": ["method"]}, {"Kind": 1, "Value": "(", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode_4", "Children": [{"Tokens": [{"Kind": 0, "Value": " self", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode_4.param(self)", "IsContextEndLine": false}, {"Tokens": [{"Kind": 0, "Value": " content", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Mapping", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "[", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ", ", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "Any", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "]", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode_4.param(content)"}, {"Tokens": [{"Kind": 0, "Value": " *", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false}, {"Tokens": [{"Kind": 0, "Value": " request_options", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Optional", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "[", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "Dict", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "[", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ", ", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "Any", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "]]", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "=", "HasPrefixSpace": true, "HasSuffixSpace": true}, {"Kind": 6, "Value": "...", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode_4.param(request_options)"}, {"Tokens": [{"Kind": 0, "Value": " schema_id", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode_4.param(schema_id)"}, {"Tokens": [{"Kind": 0, "Value": " **kwargs", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Any", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode_4.param(kwargs)"}, {"Tokens": [{"Kind": 1, "Value": ")", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "->", "HasPrefixSpace": true, "HasSuffixSpace": true}, {"Kind": 3, "Value": "MessageContent", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode_4.returntype"}]}, {"Tokens": [], "IsContextEndLine": true, "RelatedToLine": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode_4"}, {"Tokens": [{"Kind": 2, "Value": "def", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 0, "Value": "encode", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false, "RenderClasses": ["method"]}, {"Kind": 1, "Value": "(", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode", "Children": [{"Tokens": [{"Kind": 0, "Value": " self", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode.param(self)", "IsContextEndLine": false}, {"Tokens": [{"Kind": 0, "Value": " content", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Mapping", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "[", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ", ", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "Any", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "]", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode.param(content)"}, {"Tokens": [{"Kind": 0, "Value": " *", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false}, {"Tokens": [{"Kind": 0, "Value": " message_type", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Optional", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "[", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "Type", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "[", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "OutboundMessageContent", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "]]", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "=", "HasPrefixSpace": true, "HasSuffixSpace": true}, {"Kind": 6, "Value": "...", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode.param(message_type)"}, {"Tokens": [{"Kind": 0, "Value": " request_options", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Optional", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "[", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "Dict", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "[", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ", ", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "Any", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "]]", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "=", "HasPrefixSpace": true, "HasSuffixSpace": true}, {"Kind": 6, "Value": "...", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode.param(request_options)"}, {"Tokens": [{"Kind": 0, "Value": " schema", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Optional", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "[", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "]", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "=", "HasPrefixSpace": true, "HasSuffixSpace": true}, {"Kind": 6, "Value": "...", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode.param(schema)"}, {"Tokens": [{"Kind": 0, "Value": " schema_id", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Optional", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "[", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "]", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "=", "HasPrefixSpace": true, "HasSuffixSpace": true}, {"Kind": 6, "Value": "...", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode.param(schema_id)"}, {"Tokens": [{"Kind": 0, "Value": " **kwargs", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Any", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode.param(kwargs)"}, {"Tokens": [{"Kind": 1, "Value": ")", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "->", "HasPrefixSpace": true, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Union", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "[", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "OutboundMessageContent", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ", ", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "MessageContent", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "]", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode.returntype"}]}, {"Tokens": [], "IsContextEndLine": true, "RelatedToLine": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode"}, {"Tokens": [], "IsContextEndLine": true, "RelatedToLine": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder"}]}]}, {"Tokens": [{"Kind": 2, "Value": "namespace", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 0, "Value": "azure.schemaregistry.encoder.jsonencoder.aio", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false, "NavigationDisplayName": "azure.schemaregistry.encoder.jsonencoder.aio", "RenderClasses": ["namespace"]}], "LineId": "azure.schemaregistry.encoder.jsonencoder.aio", "IsContextEndLine": false, "Children": [{"Tokens": [], "IsContextEndLine": false, "RelatedToLine": "azure.schemaregistry.encoder.jsonencoder.aio"}, {"Tokens": [{"Kind": 2, "Value": "class", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 0, "Value": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false, "NavigationDisplayName": "JsonSchemaEncoder", "RenderClasses": ["class"]}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 0, "Value": " ", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 2, "Value": "implements", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "AsyncContextManager", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder", "Children": [{"Tokens": [], "IsContextEndLine": false, "RelatedToLine": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder"}, {"Tokens": [{"Kind": 2, "Value": "def", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 0, "Value": "__init__", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false, "RenderClasses": ["method"]}, {"Kind": 1, "Value": "(", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.__init__", "Children": [{"Tokens": [{"Kind": 0, "Value": " self", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.__init__.param(self)", "IsContextEndLine": false}, {"Tokens": [{"Kind": 0, "Value": " *", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false}, {"Tokens": [{"Kind": 0, "Value": " client", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "SchemaRegistryClient", "HasPrefixSpace": false, "HasSuffixSpace": false, "NavigateToId": "azure.schemaregistry.aio.SchemaRegistryClient"}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.__init__.param(client)"}, {"Tokens": [{"Kind": 0, "Value": " group_name", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Optional", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "[", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "]", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "=", "HasPrefixSpace": true, "HasSuffixSpace": true}, {"Kind": 6, "Value": "...", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.__init__.param(group_name)"}, {"Tokens": [{"Kind": 0, "Value": " validate", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Union", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "[", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ", ", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "SchemaContentValidate", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "]", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.__init__.param(validate)"}, {"Tokens": [{"Kind": 1, "Value": ")", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "->", "HasPrefixSpace": true, "HasSuffixSpace": true}, {"Kind": 3, "Value": "None", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.__init__.returntype"}]}, {"Tokens": [], "IsContextEndLine": true, "RelatedToLine": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.__init__"}, {"Tokens": [{"Kind": 2, "Value": "async", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 2, "Value": "def", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 0, "Value": "close", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false, "RenderClasses": ["method"]}, {"Kind": 1, "Value": "(", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 0, "Value": "self", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ")", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "->", "HasPrefixSpace": true, "HasSuffixSpace": true}, {"Kind": 3, "Value": "None", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.close:async", "Children": []}, {"Tokens": [], "IsContextEndLine": false, "RelatedToLine": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.close:async"}, {"Tokens": [{"Kind": 2, "Value": "async", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 2, "Value": "def", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 0, "Value": "decode", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false, "RenderClasses": ["method"]}, {"Kind": 1, "Value": "(", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.decode:async", "Children": [{"Tokens": [{"Kind": 0, "Value": " self", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.decode:async.param(self)", "IsContextEndLine": false}, {"Tokens": [{"Kind": 0, "Value": " message", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Union", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "[", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "MessageContent", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ", ", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "InboundMessageContent", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "]", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.decode:async.param(message)"}, {"Tokens": [{"Kind": 0, "Value": " *", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false}, {"Tokens": [{"Kind": 0, "Value": " request_options", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Optional", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "[", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "Dict", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "[", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ", ", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "Any", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "]]", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "=", "HasPrefixSpace": true, "HasSuffixSpace": true}, {"Kind": 6, "Value": "...", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.decode:async.param(request_options)"}, {"Tokens": [{"Kind": 0, "Value": " **kwargs", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Any", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.decode:async.param(kwargs)"}, {"Tokens": [{"Kind": 1, "Value": ")", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "->", "HasPrefixSpace": true, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Dict", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "[", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ", ", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "Any", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "]", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.decode:async.returntype"}]}, {"Tokens": [], "IsContextEndLine": true, "RelatedToLine": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.decode:async"}, {"Tokens": [{"Kind": 2, "Value": "@overload", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "RelatedToLine": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async_1"}, {"Tokens": [{"Kind": 2, "Value": "async", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 2, "Value": "def", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 0, "Value": "encode", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false, "RenderClasses": ["method"]}, {"Kind": 1, "Value": "(", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async_1", "Children": [{"Tokens": [{"Kind": 0, "Value": " self", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async_1.param(self)", "IsContextEndLine": false}, {"Tokens": [{"Kind": 0, "Value": " content", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Mapping", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "[", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ", ", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "Any", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "]", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async_1.param(content)"}, {"Tokens": [{"Kind": 0, "Value": " *", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false}, {"Tokens": [{"Kind": 0, "Value": " message_type", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Type", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "[", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "OutboundMessageContent", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "]", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async_1.param(message_type)"}, {"Tokens": [{"Kind": 0, "Value": " request_options", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Optional", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "[", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "Dict", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "[", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ", ", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "Any", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "]]", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "=", "HasPrefixSpace": true, "HasSuffixSpace": true}, {"Kind": 6, "Value": "...", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async_1.param(request_options)"}, {"Tokens": [{"Kind": 0, "Value": " schema", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async_1.param(schema)"}, {"Tokens": [{"Kind": 0, "Value": " **kwargs", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Any", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async_1.param(kwargs)"}, {"Tokens": [{"Kind": 1, "Value": ")", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "->", "HasPrefixSpace": true, "HasSuffixSpace": true}, {"Kind": 3, "Value": "OutboundMessageContent", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async_1.returntype"}]}, {"Tokens": [], "IsContextEndLine": true, "RelatedToLine": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async_1"}, {"Tokens": [{"Kind": 2, "Value": "@overload", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "RelatedToLine": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async_2"}, {"Tokens": [{"Kind": 2, "Value": "async", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 2, "Value": "def", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 0, "Value": "encode", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false, "RenderClasses": ["method"]}, {"Kind": 1, "Value": "(", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async_2", "Children": [{"Tokens": [{"Kind": 0, "Value": " self", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async_2.param(self)", "IsContextEndLine": false}, {"Tokens": [{"Kind": 0, "Value": " content", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Mapping", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "[", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ", ", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "Any", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "]", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async_2.param(content)"}, {"Tokens": [{"Kind": 0, "Value": " *", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false}, {"Tokens": [{"Kind": 0, "Value": " message_type", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Type", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "[", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "OutboundMessageContent", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "]", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async_2.param(message_type)"}, {"Tokens": [{"Kind": 0, "Value": " request_options", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Optional", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "[", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "Dict", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "[", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ", ", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "Any", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "]]", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "=", "HasPrefixSpace": true, "HasSuffixSpace": true}, {"Kind": 6, "Value": "...", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async_2.param(request_options)"}, {"Tokens": [{"Kind": 0, "Value": " schema_id", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async_2.param(schema_id)"}, {"Tokens": [{"Kind": 0, "Value": " **kwargs", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Any", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async_2.param(kwargs)"}, {"Tokens": [{"Kind": 1, "Value": ")", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "->", "HasPrefixSpace": true, "HasSuffixSpace": true}, {"Kind": 3, "Value": "OutboundMessageContent", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async_2.returntype"}]}, {"Tokens": [], "IsContextEndLine": true, "RelatedToLine": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async_2"}, {"Tokens": [{"Kind": 2, "Value": "@overload", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "RelatedToLine": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async_3"}, {"Tokens": [{"Kind": 2, "Value": "async", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 2, "Value": "def", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 0, "Value": "encode", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false, "RenderClasses": ["method"]}, {"Kind": 1, "Value": "(", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async_3", "Children": [{"Tokens": [{"Kind": 0, "Value": " self", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async_3.param(self)", "IsContextEndLine": false}, {"Tokens": [{"Kind": 0, "Value": " content", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Mapping", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "[", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ", ", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "Any", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "]", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async_3.param(content)"}, {"Tokens": [{"Kind": 0, "Value": " *", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false}, {"Tokens": [{"Kind": 0, "Value": " request_options", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Optional", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "[", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "Dict", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "[", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ", ", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "Any", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "]]", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "=", "HasPrefixSpace": true, "HasSuffixSpace": true}, {"Kind": 6, "Value": "...", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async_3.param(request_options)"}, {"Tokens": [{"Kind": 0, "Value": " schema", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async_3.param(schema)"}, {"Tokens": [{"Kind": 0, "Value": " **kwargs", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Any", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async_3.param(kwargs)"}, {"Tokens": [{"Kind": 1, "Value": ")", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "->", "HasPrefixSpace": true, "HasSuffixSpace": true}, {"Kind": 3, "Value": "MessageContent", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async_3.returntype"}]}, {"Tokens": [], "IsContextEndLine": true, "RelatedToLine": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async_3"}, {"Tokens": [{"Kind": 2, "Value": "@overload", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "RelatedToLine": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async_4"}, {"Tokens": [{"Kind": 2, "Value": "async", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 2, "Value": "def", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 0, "Value": "encode", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false, "RenderClasses": ["method"]}, {"Kind": 1, "Value": "(", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async_4", "Children": [{"Tokens": [{"Kind": 0, "Value": " self", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async_4.param(self)", "IsContextEndLine": false}, {"Tokens": [{"Kind": 0, "Value": " content", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Mapping", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "[", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ", ", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "Any", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "]", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async_4.param(content)"}, {"Tokens": [{"Kind": 0, "Value": " *", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false}, {"Tokens": [{"Kind": 0, "Value": " request_options", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Optional", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "[", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "Dict", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "[", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ", ", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "Any", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "]]", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "=", "HasPrefixSpace": true, "HasSuffixSpace": true}, {"Kind": 6, "Value": "...", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async_4.param(request_options)"}, {"Tokens": [{"Kind": 0, "Value": " schema_id", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async_4.param(schema_id)"}, {"Tokens": [{"Kind": 0, "Value": " **kwargs", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Any", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async_4.param(kwargs)"}, {"Tokens": [{"Kind": 1, "Value": ")", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "->", "HasPrefixSpace": true, "HasSuffixSpace": true}, {"Kind": 3, "Value": "MessageContent", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async_4.returntype"}]}, {"Tokens": [], "IsContextEndLine": true, "RelatedToLine": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async_4"}, {"Tokens": [{"Kind": 2, "Value": "async", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 2, "Value": "def", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 0, "Value": "encode", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false, "RenderClasses": ["method"]}, {"Kind": 1, "Value": "(", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async", "Children": [{"Tokens": [{"Kind": 0, "Value": " self", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async.param(self)", "IsContextEndLine": false}, {"Tokens": [{"Kind": 0, "Value": " content", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Mapping", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "[", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ", ", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "Any", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "]", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async.param(content)"}, {"Tokens": [{"Kind": 0, "Value": " *", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false}, {"Tokens": [{"Kind": 0, "Value": " message_type", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Optional", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "[", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "Type", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "[", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "OutboundMessageContent", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "]]", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "=", "HasPrefixSpace": true, "HasSuffixSpace": true}, {"Kind": 6, "Value": "...", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async.param(message_type)"}, {"Tokens": [{"Kind": 0, "Value": " request_options", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Optional", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "[", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "Dict", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "[", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ", ", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "Any", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "]]", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "=", "HasPrefixSpace": true, "HasSuffixSpace": true}, {"Kind": 6, "Value": "...", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async.param(request_options)"}, {"Tokens": [{"Kind": 0, "Value": " schema", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Optional", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "[", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "]", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "=", "HasPrefixSpace": true, "HasSuffixSpace": true}, {"Kind": 6, "Value": "...", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async.param(schema)"}, {"Tokens": [{"Kind": 0, "Value": " schema_id", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Optional", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "[", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "]", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "=", "HasPrefixSpace": true, "HasSuffixSpace": true}, {"Kind": 6, "Value": "...", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async.param(schema_id)"}, {"Tokens": [{"Kind": 0, "Value": " **kwargs", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Any", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async.param(kwargs)"}, {"Tokens": [{"Kind": 1, "Value": ")", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "->", "HasPrefixSpace": true, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Union", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "[", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "OutboundMessageContent", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ", ", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "MessageContent", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": "]", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async.returntype"}]}, {"Tokens": [], "IsContextEndLine": true, "RelatedToLine": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async"}, {"Tokens": [], "IsContextEndLine": true, "RelatedToLine": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder"}]}]}, {"Tokens": [{"Kind": 2, "Value": "namespace", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 0, "Value": "azure.schemaregistry.models", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false, "NavigationDisplayName": "azure.schemaregistry.models", "RenderClasses": ["namespace"]}], "LineId": "azure.schemaregistry.models", "IsContextEndLine": false, "Children": [{"Tokens": [], "IsContextEndLine": false, "RelatedToLine": "azure.schemaregistry.models"}, {"Tokens": [{"Kind": 2, "Value": "class", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 0, "Value": "azure.schemaregistry.models.SchemaContentTypeValues", "HasPrefixSpace": false, "HasSuffixSpace": false, "SkipDiff": false, "NavigationDisplayName": "SchemaContentTypeValues", "RenderClasses": ["enum"]}, {"Kind": 1, "Value": "(", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 3, "Value": "str", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ",", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 3, "Value": "Enum", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ")", "HasPrefixSpace": false, "HasSuffixSpace": false}, {"Kind": 1, "Value": ":", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "CrossLanguageId": "SchemaRegistry.SchemaContentTypeValues", "LineId": "azure.schemaregistry.models.SchemaContentTypeValues", "Children": [{"Tokens": [{"Kind": 0, "Value": "AVRO", "HasPrefixSpace": false, "HasSuffixSpace": true, "SkipDiff": false}, {"Kind": 1, "Value": "=", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 5, "Value": "\"application/json; serialization=Avro\"", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.models.SchemaContentTypeValues.AVRO"}, {"Tokens": [{"Kind": 0, "Value": "CUSTOM", "HasPrefixSpace": false, "HasSuffixSpace": true, "SkipDiff": false}, {"Kind": 1, "Value": "=", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 5, "Value": "\"text/plain; charset=utf-8\"", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.models.SchemaContentTypeValues.CUSTOM"}, {"Tokens": [{"Kind": 0, "Value": "JSON", "HasPrefixSpace": false, "HasSuffixSpace": true, "SkipDiff": false}, {"Kind": 1, "Value": "=", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 5, "Value": "\"application/json; serialization=Json\"", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.models.SchemaContentTypeValues.JSON"}, {"Tokens": [{"Kind": 0, "Value": "PROTOBUF", "HasPrefixSpace": false, "HasSuffixSpace": true, "SkipDiff": false}, {"Kind": 1, "Value": "=", "HasPrefixSpace": false, "HasSuffixSpace": true}, {"Kind": 5, "Value": "\"text/vnd.ms.protobuf\"", "HasPrefixSpace": false, "HasSuffixSpace": false}], "IsContextEndLine": false, "LineId": "azure.schemaregistry.models.SchemaContentTypeValues.PROTOBUF"}, {"Tokens": [], "IsContextEndLine": false, "RelatedToLine": "azure.schemaregistry.models.SchemaContentTypeValues"}, {"Tokens": [], "IsContextEndLine": true, "RelatedToLine": "azure.schemaregistry.models.SchemaContentTypeValues"}]}]}], "CrossLanguagePackageId": "SchemaRegistry", "Diagnostics": []} \ No newline at end of file diff --git a/src/dotnet/APIView/APIViewUnitTests/SampleTestFiles/azure-schemaregistry_python_diff.json b/src/dotnet/APIView/APIViewUnitTests/SampleTestFiles/azure-schemaregistry_python_diff.json new file mode 100644 index 00000000000..6b13c514afb --- /dev/null +++ b/src/dotnet/APIView/APIViewUnitTests/SampleTestFiles/azure-schemaregistry_python_diff.json @@ -0,0 +1,11664 @@ +{ + "PackageName": "azure-schemaregistry", + "PackageVersion": "1.3.1", + "ParserVersion": "0.3.14", + "Language": "Python", + "ReviewLines": [ + { + "Tokens": [ + { + "Kind": 0, + "Value": "# Package is parsed using apiview-stub-generator(version:0.3.14), Python version: 3.10.12", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": true + } + ], + "IsContextEndLine": false, + "LineId": "GLOBAL" + }, + { + "Tokens": [ + ], + "IsContextEndLine": false + }, + { + "Tokens": [ + ], + "IsContextEndLine": false + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "namespace", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 0, + "Value": "azure.schemaregistry", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false, + "NavigationDisplayName": "azure.schemaregistry", + "RenderClasses": [ + "namespace" + ] + } + ], + "LineId": "azure.schemaregistry", + "IsContextEndLine": false, + "Children": [ + { + "Tokens": [ + ], + "IsContextEndLine": false, + "RelatedToLine": "azure.schemaregistry" + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "@overload", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "RelatedToLine": "azure.schemaregistry.foo_1" + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "def", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 0, + "Value": "azure.schemaregistry.foo", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false, + "NavigationDisplayName": "foo", + "RenderClasses": [ + "method" + ] + }, + { + "Kind": 1, + "Value": "(", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.foo_1", + "Children": [ + { + "Tokens": [ + { + "Kind": 0, + "Value": " a", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "int", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "LineId": "azure.schemaregistry.foo_1.param(a)", + "IsContextEndLine": false + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " *", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " bar", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.foo_1.param(bar)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " **kwargs", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.foo_1.param(kwargs)" + }, + { + "Tokens": [ + { + "Kind": 1, + "Value": ")", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "->", + "HasPrefixSpace": true, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.foo_1.returntype" + } + ] + }, + { + "Tokens": [ + ], + "IsContextEndLine": true, + "RelatedToLine": "azure.schemaregistry.foo_1" + }, + { + "Tokens": [ + ], + "IsContextEndLine": false, + "RelatedToLine": "azure.schemaregistry.foo_1" + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "@overload", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "RelatedToLine": "azure.schemaregistry.foo_2" + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "def", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 0, + "Value": "azure.schemaregistry.footest", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false, + "NavigationDisplayName": "footest", + "RenderClasses": [ + "method" + ] + }, + { + "Kind": 1, + "Value": "(", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.foo_2", + "Children": [ + { + "Tokens": [ + { + "Kind": 0, + "Value": " a", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "int", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "LineId": "azure.schemaregistry.foo_2.param(a)", + "IsContextEndLine": false + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " *", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " bar", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "int", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.foo_2.param(bar)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " **kwargs", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.foo_2.param(kwargs)" + }, + { + "Tokens": [ + { + "Kind": 1, + "Value": ")", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "->", + "HasPrefixSpace": true, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "int", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.foo_2.returntype" + } + ] + }, + { + "Tokens": [ + ], + "IsContextEndLine": true, + "RelatedToLine": "azure.schemaregistry.foo_2" + }, + { + "Tokens": [ + ], + "IsContextEndLine": false, + "RelatedToLine": "azure.schemaregistry.foo_2" + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "def", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 0, + "Value": "azure.schemaregistry.foo", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false, + "NavigationDisplayName": "foo", + "RenderClasses": [ + "method" + ] + }, + { + "Kind": 1, + "Value": "(", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.foo", + "Children": [ + { + "Tokens": [ + { + "Kind": 0, + "Value": " a", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "int", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "LineId": "azure.schemaregistry.foo.param(a)", + "IsContextEndLine": false + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " *", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " bar", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Union", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "[", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "int", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ", ", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "]", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.foo.param(bar)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " **kwargs", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.foo.param(kwargs)" + }, + { + "Tokens": [ + { + "Kind": 1, + "Value": ")", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "->", + "HasPrefixSpace": true, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Union", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "[", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "int", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ", ", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "]", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.foo.returntype" + } + ] + }, + { + "Tokens": [ + ], + "IsContextEndLine": true, + "RelatedToLine": "azure.schemaregistry.foo" + }, + { + "Tokens": [ + ], + "IsContextEndLine": false, + "RelatedToLine": "azure.schemaregistry.foo" + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "class", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 0, + "Value": "azure.schemaregistry.InboundMessageContent", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false, + "NavigationDisplayName": "InboundMessageContent", + "RenderClasses": [ + "class" + ] + }, + { + "Kind": 1, + "Value": "(", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "Protocol", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ")", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.InboundMessageContent", + "Children": [ + { + "Tokens": [ + ], + "IsContextEndLine": false, + "RelatedToLine": "azure.schemaregistry.InboundMessageContent" + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "def", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 0, + "Value": "__message_content__", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false, + "RenderClasses": [ + "method" + ] + }, + { + "Kind": 1, + "Value": "(", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 0, + "Value": "self", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ")", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "->", + "HasPrefixSpace": true, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "MessageContent", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.InboundMessageContent.__message_content__", + "Children": [ + ] + }, + { + "Tokens": [ + ], + "IsContextEndLine": false, + "RelatedToLine": "azure.schemaregistry.InboundMessageContent.__message_content__" + }, + { + "Tokens": [ + ], + "IsContextEndLine": true, + "RelatedToLine": "azure.schemaregistry.InboundMessageContent" + } + ] + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "class", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 0, + "Value": "azure.schemaregistry.MessageContent", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false, + "NavigationDisplayName": "MessageContent", + "RenderClasses": [ + "class" + ] + }, + { + "Kind": 1, + "Value": "(", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "TypedDict", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ")", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.MessageContent", + "Children": [ + { + "Tokens": [ + { + "Kind": 0, + "Value": "key", + "HasPrefixSpace": false, + "HasSuffixSpace": true, + "SkipDiff": false + }, + { + "Kind": 0, + "Value": "\"content\"", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "ForwardRef", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "('", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "bytes", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "')", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.MessageContent.\"content\"" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": "key", + "HasPrefixSpace": false, + "HasSuffixSpace": true, + "SkipDiff": false + }, + { + "Kind": 0, + "Value": "\"content_type\"", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "ForwardRef", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "('", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "')", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.MessageContent.\"content_type\"" + }, + { + "Tokens": [ + ], + "IsContextEndLine": false, + "RelatedToLine": "azure.schemaregistry.MessageContent" + }, + { + "Tokens": [ + ], + "IsContextEndLine": true, + "RelatedToLine": "azure.schemaregistry.MessageContent" + } + ] + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "class", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 0, + "Value": "azure.schemaregistry.OutboundMessageContent", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false, + "NavigationDisplayName": "OutboundMessageContent", + "RenderClasses": [ + "class" + ] + }, + { + "Kind": 1, + "Value": "(", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "Protocol", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ")", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.OutboundMessageContent", + "Children": [ + { + "Tokens": [ + ], + "IsContextEndLine": false, + "RelatedToLine": "azure.schemaregistry.OutboundMessageContent" + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "@classmethod", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "RelatedToLine": "azure.schemaregistry.OutboundMessageContent.from_message_content" + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "def", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 0, + "Value": "from_message_content", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false, + "RenderClasses": [ + "method" + ] + }, + { + "Kind": 1, + "Value": "(", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.OutboundMessageContent.from_message_content", + "Children": [ + { + "Tokens": [ + { + "Kind": 0, + "Value": " cls", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "LineId": "azure.schemaregistry.OutboundMessageContent.from_message_content.param(cls)", + "IsContextEndLine": false + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " content", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "bytes", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.OutboundMessageContent.from_message_content.param(content)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " content_type", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.OutboundMessageContent.from_message_content.param(content_type)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " **kwargs", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Any", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.OutboundMessageContent.from_message_content.param(kwargs)" + }, + { + "Tokens": [ + { + "Kind": 1, + "Value": ")", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "->", + "HasPrefixSpace": true, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Self", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.OutboundMessageContent.from_message_content.returntype" + } + ] + }, + { + "Tokens": [ + ], + "IsContextEndLine": true, + "RelatedToLine": "azure.schemaregistry.OutboundMessageContent.from_message_content" + }, + { + "Tokens": [ + ], + "IsContextEndLine": true, + "RelatedToLine": "azure.schemaregistry.OutboundMessageContent" + } + ] + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "class", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 0, + "Value": "azure.schemaregistry.Schema", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false, + "NavigationDisplayName": "Schema", + "RenderClasses": [ + "class" + ] + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.Schema", + "Children": [ + { + "Tokens": [ + { + "Kind": 2, + "Value": "ivar", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 0, + "Value": "definition", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.Schema.definition(str)" + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "ivar", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 0, + "Value": "properties", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "SchemaProperties", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.Schema.properties(SchemaProperties)" + }, + { + "Tokens": [ + ], + "IsContextEndLine": false, + "RelatedToLine": "azure.schemaregistry.Schema" + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "def", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 0, + "Value": "__init__", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false, + "RenderClasses": [ + "method" + ] + }, + { + "Kind": 1, + "Value": "(", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 0, + "Value": "self", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 0, + "Value": "**kwargs", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Any", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ")", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "->", + "HasPrefixSpace": true, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "None", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.Schema.__init__", + "Children": [ + ] + }, + { + "Tokens": [ + ], + "IsContextEndLine": false, + "RelatedToLine": "azure.schemaregistry.Schema.__init__" + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "def", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 0, + "Value": "__repr__", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false, + "RenderClasses": [ + "method" + ] + }, + { + "Kind": 1, + "Value": "(", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 0, + "Value": "self", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ")", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "->", + "HasPrefixSpace": true, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.Schema.__repr__", + "Children": [ + ] + }, + { + "Tokens": [ + ], + "IsContextEndLine": false, + "RelatedToLine": "azure.schemaregistry.Schema.__repr__" + }, + { + "Tokens": [ + ], + "IsContextEndLine": true, + "RelatedToLine": "azure.schemaregistry.Schema" + } + ] + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "class", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 0, + "Value": "azure.schemaregistry.SchemaContentValidate", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false, + "NavigationDisplayName": "SchemaContentValidate", + "RenderClasses": [ + "class" + ] + }, + { + "Kind": 1, + "Value": "(", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "Protocol", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ")", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.SchemaContentValidate", + "Children": [ + { + "Tokens": [ + ], + "IsContextEndLine": false, + "RelatedToLine": "azure.schemaregistry.SchemaContentValidate" + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "def", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 0, + "Value": "__call__", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false, + "RenderClasses": [ + "method" + ] + }, + { + "Kind": 1, + "Value": "(", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.SchemaContentValidate.__call__", + "Children": [ + { + "Tokens": [ + { + "Kind": 0, + "Value": " self", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "LineId": "azure.schemaregistry.SchemaContentValidate.__call__.param(self)", + "IsContextEndLine": false + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " schema", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Mapping", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "[", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ", ", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "Any", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "]", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.SchemaContentValidate.__call__.param(schema)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " content", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Mapping", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "[", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ", ", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "Any", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "]", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.SchemaContentValidate.__call__.param(content)" + }, + { + "Tokens": [ + { + "Kind": 1, + "Value": ")", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "->", + "HasPrefixSpace": true, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "None", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.SchemaContentValidate.__call__.returntype" + } + ] + }, + { + "Tokens": [ + ], + "IsContextEndLine": true, + "RelatedToLine": "azure.schemaregistry.SchemaContentValidate.__call__" + }, + { + "Tokens": [ + ], + "IsContextEndLine": true, + "RelatedToLine": "azure.schemaregistry.SchemaContentValidate" + } + ] + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "class", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 0, + "Value": "azure.schemaregistry.SchemaFormat", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false, + "NavigationDisplayName": "SchemaFormat", + "RenderClasses": [ + "enum" + ] + }, + { + "Kind": 1, + "Value": "(", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Enum", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ")", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.SchemaFormat", + "Children": [ + { + "Tokens": [ + { + "Kind": 0, + "Value": "AVRO", + "HasPrefixSpace": false, + "HasSuffixSpace": true, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": "=", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 5, + "Value": "\"Avro\"", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.SchemaFormat.AVRO" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": "CUSTOM", + "HasPrefixSpace": false, + "HasSuffixSpace": true, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": "=", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 5, + "Value": "\"Custom\"", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.SchemaFormat.CUSTOM" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": "JSON", + "HasPrefixSpace": false, + "HasSuffixSpace": true, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": "=", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 5, + "Value": "\"Json\"", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.SchemaFormat.JSON" + }, + { + "Tokens": [ + ], + "IsContextEndLine": false, + "RelatedToLine": "azure.schemaregistry.SchemaFormat" + }, + { + "Tokens": [ + ], + "IsContextEndLine": true, + "RelatedToLine": "azure.schemaregistry.SchemaFormat" + } + ] + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "class", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 0, + "Value": "azure.schemaregistry.SchemaProperties", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false, + "NavigationDisplayName": "SchemaProperties", + "RenderClasses": [ + "class" + ] + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.SchemaProperties", + "Children": [ + { + "Tokens": [ + { + "Kind": 2, + "Value": "ivar", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 0, + "Value": "format", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "SchemaFormat", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "NavigateToId": "azure.schemaregistry.SchemaFormat" + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.SchemaProperties.format(~azure.schemaregistry.SchemaFormat)" + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "ivar", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 0, + "Value": "group_name", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.SchemaProperties.group_name(str)" + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "ivar", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 0, + "Value": "id", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.SchemaProperties.id(str)" + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "ivar", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 0, + "Value": "name", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.SchemaProperties.name(str)" + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "ivar", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 0, + "Value": "version", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "int", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.SchemaProperties.version(int)" + }, + { + "Tokens": [ + ], + "IsContextEndLine": false, + "RelatedToLine": "azure.schemaregistry.SchemaProperties" + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "def", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 0, + "Value": "__init__", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false, + "RenderClasses": [ + "method" + ] + }, + { + "Kind": 1, + "Value": "(", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 0, + "Value": "self", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 0, + "Value": "**kwargs", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Any", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ")", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "->", + "HasPrefixSpace": true, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "None", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.SchemaProperties.__init__", + "Children": [ + ] + }, + { + "Tokens": [ + ], + "IsContextEndLine": false, + "RelatedToLine": "azure.schemaregistry.SchemaProperties.__init__" + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "def", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 0, + "Value": "__repr__", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false, + "RenderClasses": [ + "method" + ] + }, + { + "Kind": 1, + "Value": "(", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 0, + "Value": "self", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ")", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "->", + "HasPrefixSpace": true, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.SchemaProperties.__repr__", + "Children": [ + ] + }, + { + "Tokens": [ + ], + "IsContextEndLine": false, + "RelatedToLine": "azure.schemaregistry.SchemaProperties.__repr__" + }, + { + "Tokens": [ + ], + "IsContextEndLine": true, + "RelatedToLine": "azure.schemaregistry.SchemaProperties" + } + ] + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "class", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 0, + "Value": "azure.schemaregistry.SchemaRegistryClient", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false, + "NavigationDisplayName": "SchemaRegistryClient", + "RenderClasses": [ + "class" + ] + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 0, + "Value": " ", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 2, + "Value": "implements", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "ContextManager", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.SchemaRegistryClient", + "Children": [ + { + "Tokens": [ + ], + "IsContextEndLine": false, + "RelatedToLine": "azure.schemaregistry.SchemaRegistryClient" + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "def", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 0, + "Value": "__init__", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false, + "RenderClasses": [ + "method" + ] + }, + { + "Kind": 1, + "Value": "(", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.SchemaRegistryClient.__init__", + "Children": [ + { + "Tokens": [ + { + "Kind": 0, + "Value": " self", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "LineId": "azure.schemaregistry.SchemaRegistryClient.__init__.param(self)", + "IsContextEndLine": false + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " fully_qualified_namespace", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.SchemaRegistryClient.__init__.param(fully_qualified_namespace)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " credential", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "TokenCredential", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.SchemaRegistryClient.__init__.param(credential)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " *", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " api_version", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Optional", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "[", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "]", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "=", + "HasPrefixSpace": true, + "HasSuffixSpace": true + }, + { + "Kind": 6, + "Value": "...", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.SchemaRegistryClient.__init__.param(api_version)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " **kwargs", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Any", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.SchemaRegistryClient.__init__.param(kwargs)" + }, + { + "Tokens": [ + { + "Kind": 1, + "Value": ")", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "->", + "HasPrefixSpace": true, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "None", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.SchemaRegistryClient.__init__.returntype" + } + ] + }, + { + "Tokens": [ + ], + "IsContextEndLine": true, + "RelatedToLine": "azure.schemaregistry.SchemaRegistryClient.__init__" + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "def", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 0, + "Value": "close", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false, + "RenderClasses": [ + "method" + ] + }, + { + "Kind": 1, + "Value": "(", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 0, + "Value": "self", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ")", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "->", + "HasPrefixSpace": true, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "None", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.SchemaRegistryClient.close", + "Children": [ + ] + }, + { + "Tokens": [ + ], + "IsContextEndLine": false, + "RelatedToLine": "azure.schemaregistry.SchemaRegistryClient.close" + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "@overload", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "RelatedToLine": "azure.schemaregistry.SchemaRegistryClient.foob_1" + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "def", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 0, + "Value": "foob", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false, + "RenderClasses": [ + "method" + ] + }, + { + "Kind": 1, + "Value": "(", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.SchemaRegistryClient.foob_1", + "Children": [ + { + "Tokens": [ + { + "Kind": 0, + "Value": " self", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "LineId": "azure.schemaregistry.SchemaRegistryClient.foob_1.param(self)", + "IsContextEndLine": false + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " *", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " bar", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.SchemaRegistryClient.foob_1.param(bar)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " **kwargs", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.SchemaRegistryClient.foob_1.param(kwargs)" + }, + { + "Tokens": [ + { + "Kind": 1, + "Value": ")", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "->", + "HasPrefixSpace": true, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.SchemaRegistryClient.foob_1.returntype" + } + ] + }, + { + "Tokens": [ + ], + "IsContextEndLine": true, + "RelatedToLine": "azure.schemaregistry.SchemaRegistryClient.foob_1" + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "@overload", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "RelatedToLine": "azure.schemaregistry.SchemaRegistryClient.foob_2" + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "def", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 0, + "Value": "foob", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false, + "RenderClasses": [ + "method" + ] + }, + { + "Kind": 1, + "Value": "(", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.SchemaRegistryClient.foob_2", + "Children": [ + { + "Tokens": [ + { + "Kind": 0, + "Value": " self", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "LineId": "azure.schemaregistry.SchemaRegistryClient.foob_2.param(self)", + "IsContextEndLine": false + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " *", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " bar", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "int", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.SchemaRegistryClient.foob_2.param(bar)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " **kwargs", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.SchemaRegistryClient.foob_2.param(kwargs)" + }, + { + "Tokens": [ + { + "Kind": 1, + "Value": ")", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "->", + "HasPrefixSpace": true, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "int", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.SchemaRegistryClient.foob_2.returntype" + } + ] + }, + { + "Tokens": [ + ], + "IsContextEndLine": true, + "RelatedToLine": "azure.schemaregistry.SchemaRegistryClient.foob_2" + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "def", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 0, + "Value": "foob", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false, + "RenderClasses": [ + "method" + ] + }, + { + "Kind": 1, + "Value": "(", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.SchemaRegistryClient.foob", + "Children": [ + { + "Tokens": [ + { + "Kind": 0, + "Value": " self", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "LineId": "azure.schemaregistry.SchemaRegistryClient.foob.param(self)", + "IsContextEndLine": false + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " *", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " bar", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Union", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "[", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "int", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ", ", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "]", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.SchemaRegistryClient.foob.param(bar)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " **kwargs", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.SchemaRegistryClient.foob.param(kwargs)" + }, + { + "Tokens": [ + { + "Kind": 1, + "Value": ")", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "->", + "HasPrefixSpace": true, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Union", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "[", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "int", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ", ", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "]", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.SchemaRegistryClient.foob.returntype" + } + ] + }, + { + "Tokens": [ + ], + "IsContextEndLine": true, + "RelatedToLine": "azure.schemaregistry.SchemaRegistryClient.foob" + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "@overload", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "RelatedToLine": "azure.schemaregistry.SchemaRegistryClient.get_schema_1" + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "def", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 0, + "Value": "get_schema", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false, + "RenderClasses": [ + "method" + ] + }, + { + "Kind": 1, + "Value": "(", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.SchemaRegistryClient.get_schema_1", + "Children": [ + { + "Tokens": [ + { + "Kind": 0, + "Value": " self", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "LineId": "azure.schemaregistry.SchemaRegistryClient.get_schema_1.param(self)", + "IsContextEndLine": false + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " schema_id", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.SchemaRegistryClient.get_schema_1.param(schema_id)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " **kwargs", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Any", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.SchemaRegistryClient.get_schema_1.param(kwargs)" + }, + { + "Tokens": [ + { + "Kind": 1, + "Value": ")", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "->", + "HasPrefixSpace": true, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Schema", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.SchemaRegistryClient.get_schema_1.returntype" + } + ] + }, + { + "Tokens": [ + ], + "IsContextEndLine": true, + "RelatedToLine": "azure.schemaregistry.SchemaRegistryClient.get_schema_1" + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "@overload", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "RelatedToLine": "azure.schemaregistry.SchemaRegistryClient.get_schema_2" + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "def", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 0, + "Value": "get_schema", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false, + "RenderClasses": [ + "method" + ] + }, + { + "Kind": 1, + "Value": "(", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.SchemaRegistryClient.get_schema_2", + "Children": [ + { + "Tokens": [ + { + "Kind": 0, + "Value": " self", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "LineId": "azure.schemaregistry.SchemaRegistryClient.get_schema_2.param(self)", + "IsContextEndLine": false + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " *", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " group_name", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.SchemaRegistryClient.get_schema_2.param(group_name)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " name", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.SchemaRegistryClient.get_schema_2.param(name)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " version", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "int", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.SchemaRegistryClient.get_schema_2.param(version)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " **kwargs", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Any", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.SchemaRegistryClient.get_schema_2.param(kwargs)" + }, + { + "Tokens": [ + { + "Kind": 1, + "Value": ")", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "->", + "HasPrefixSpace": true, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Schema", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.SchemaRegistryClient.get_schema_2.returntype" + } + ] + }, + { + "Tokens": [ + ], + "IsContextEndLine": true, + "RelatedToLine": "azure.schemaregistry.SchemaRegistryClient.get_schema_2" + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "@distributed_trace", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "RelatedToLine": "azure.schemaregistry.SchemaRegistryClient.get_schema" + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "def", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 0, + "Value": "get_schema", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false, + "RenderClasses": [ + "method" + ] + }, + { + "Kind": 1, + "Value": "(", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.SchemaRegistryClient.get_schema", + "Children": [ + { + "Tokens": [ + { + "Kind": 0, + "Value": " self", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "LineId": "azure.schemaregistry.SchemaRegistryClient.get_schema.param(self)", + "IsContextEndLine": false + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " *args", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.SchemaRegistryClient.get_schema.param(args)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " *", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " group_name", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Optional", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "[", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "]", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "=", + "HasPrefixSpace": true, + "HasSuffixSpace": true + }, + { + "Kind": 6, + "Value": "...", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.SchemaRegistryClient.get_schema.param(group_name)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " name", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Optional", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "[", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "]", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "=", + "HasPrefixSpace": true, + "HasSuffixSpace": true + }, + { + "Kind": 6, + "Value": "...", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.SchemaRegistryClient.get_schema.param(name)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " version", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Optional", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "[", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "int", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "]", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "=", + "HasPrefixSpace": true, + "HasSuffixSpace": true + }, + { + "Kind": 6, + "Value": "...", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.SchemaRegistryClient.get_schema.param(version)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " **kwargs", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Any", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.SchemaRegistryClient.get_schema.param(kwargs)" + }, + { + "Tokens": [ + { + "Kind": 1, + "Value": ")", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "->", + "HasPrefixSpace": true, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Schema", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.SchemaRegistryClient.get_schema.returntype" + } + ] + }, + { + "Tokens": [ + ], + "IsContextEndLine": true, + "RelatedToLine": "azure.schemaregistry.SchemaRegistryClient.get_schema" + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "@distributed_trace", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "RelatedToLine": "azure.schemaregistry.SchemaRegistryClient.get_schema_properties" + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "def", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 0, + "Value": "get_schema_properties", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false, + "RenderClasses": [ + "method" + ] + }, + { + "Kind": 1, + "Value": "(", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.SchemaRegistryClient.get_schema_properties", + "Children": [ + { + "Tokens": [ + { + "Kind": 0, + "Value": " self", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "LineId": "azure.schemaregistry.SchemaRegistryClient.get_schema_properties.param(self)", + "IsContextEndLine": false + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " group_name", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.SchemaRegistryClient.get_schema_properties.param(group_name)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " name", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.SchemaRegistryClient.get_schema_properties.param(name)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " definition", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.SchemaRegistryClient.get_schema_properties.param(definition)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " format", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Union", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "[", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ", ", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "SchemaFormat", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "]", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.SchemaRegistryClient.get_schema_properties.param(format)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " **kwargs", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Any", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.SchemaRegistryClient.get_schema_properties.param(kwargs)" + }, + { + "Tokens": [ + { + "Kind": 1, + "Value": ")", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "->", + "HasPrefixSpace": true, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "SchemaProperties", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.SchemaRegistryClient.get_schema_properties.returntype" + } + ] + }, + { + "Tokens": [ + ], + "IsContextEndLine": true, + "RelatedToLine": "azure.schemaregistry.SchemaRegistryClient.get_schema_properties" + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "@distributed_trace", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "RelatedToLine": "azure.schemaregistry.SchemaRegistryClient.register_schema" + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "def", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 0, + "Value": "register_schema", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false, + "RenderClasses": [ + "method" + ] + }, + { + "Kind": 1, + "Value": "(", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "CrossLanguageId": "SchemaRegistry.registerSchema", + "LineId": "azure.schemaregistry.SchemaRegistryClient.register_schema", + "Children": [ + { + "Tokens": [ + { + "Kind": 0, + "Value": " self", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "LineId": "azure.schemaregistry.SchemaRegistryClient.register_schema.param(self)", + "IsContextEndLine": false + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " group_name", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.SchemaRegistryClient.register_schema.param(group_name)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " name", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.SchemaRegistryClient.register_schema.param(name)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " definition", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.SchemaRegistryClient.register_schema.param(definition)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " format", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Union", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "[", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ", ", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "SchemaFormat", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "]", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.SchemaRegistryClient.register_schema.param(format)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " **kwargs", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Any", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.SchemaRegistryClient.register_schema.param(kwargs)" + }, + { + "Tokens": [ + { + "Kind": 1, + "Value": ")", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "->", + "HasPrefixSpace": true, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "SchemaProperties", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.SchemaRegistryClient.register_schema.returntype" + } + ] + }, + { + "Tokens": [ + ], + "IsContextEndLine": true, + "RelatedToLine": "azure.schemaregistry.SchemaRegistryClient.register_schema" + }, + { + "Tokens": [ + ], + "IsContextEndLine": true, + "RelatedToLine": "azure.schemaregistry.SchemaRegistryClient" + } + ] + } + ] + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "namespace", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 0, + "Value": "azure.schemaregistry.aio", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false, + "NavigationDisplayName": "azure.schemaregistry.aio", + "RenderClasses": [ + "namespace" + ] + } + ], + "LineId": "azure.schemaregistry.aio", + "IsContextEndLine": false, + "Children": [ + { + "Tokens": [ + ], + "IsContextEndLine": false, + "RelatedToLine": "azure.schemaregistry.aio" + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "class", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 0, + "Value": "azure.schemaregistry.aio.SchemaRegistryClient", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false, + "NavigationDisplayName": "SchemaRegistryClient", + "RenderClasses": [ + "class" + ] + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 0, + "Value": " ", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 2, + "Value": "implements", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "AsyncContextManager", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.aio.SchemaRegistryClient", + "Children": [ + { + "Tokens": [ + ], + "IsContextEndLine": false, + "RelatedToLine": "azure.schemaregistry.aio.SchemaRegistryClient" + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "def", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 0, + "Value": "__init__", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false, + "RenderClasses": [ + "method" + ] + }, + { + "Kind": 1, + "Value": "(", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.__init__", + "Children": [ + { + "Tokens": [ + { + "Kind": 0, + "Value": " self", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.__init__.param(self)", + "IsContextEndLine": false + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " fully_qualified_namespace", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.__init__.param(fully_qualified_namespace)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " credential", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "AsyncTokenCredential", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.__init__.param(credential)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " *", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " api_version", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Optional", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "[", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "]", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "=", + "HasPrefixSpace": true, + "HasSuffixSpace": true + }, + { + "Kind": 6, + "Value": "...", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.__init__.param(api_version)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " **kwargs", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Any", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.__init__.param(kwargs)" + }, + { + "Tokens": [ + { + "Kind": 1, + "Value": ")", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "->", + "HasPrefixSpace": true, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "None", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.__init__.returntype" + } + ] + }, + { + "Tokens": [ + ], + "IsContextEndLine": true, + "RelatedToLine": "azure.schemaregistry.aio.SchemaRegistryClient.__init__" + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "async", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 2, + "Value": "def", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 0, + "Value": "close", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false, + "RenderClasses": [ + "method" + ] + }, + { + "Kind": 1, + "Value": "(", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 0, + "Value": "self", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ")", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "->", + "HasPrefixSpace": true, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "None", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.close:async", + "Children": [ + ] + }, + { + "Tokens": [ + ], + "IsContextEndLine": false, + "RelatedToLine": "azure.schemaregistry.aio.SchemaRegistryClient.close:async" + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "@overload", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "RelatedToLine": "azure.schemaregistry.aio.SchemaRegistryClient.get_schema:async_1" + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "async", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 2, + "Value": "def", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 0, + "Value": "get_schema", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false, + "RenderClasses": [ + "method" + ] + }, + { + "Kind": 1, + "Value": "(", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.get_schema:async_1", + "Children": [ + { + "Tokens": [ + { + "Kind": 0, + "Value": " self", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.get_schema:async_1.param(self)", + "IsContextEndLine": false + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " schema_id", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.get_schema:async_1.param(schema_id)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " **kwargs", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Any", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.get_schema:async_1.param(kwargs)" + }, + { + "Tokens": [ + { + "Kind": 1, + "Value": ")", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "->", + "HasPrefixSpace": true, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Schema", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.get_schema:async_1.returntype" + } + ] + }, + { + "Tokens": [ + ], + "IsContextEndLine": true, + "RelatedToLine": "azure.schemaregistry.aio.SchemaRegistryClient.get_schema:async_1" + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "@overload", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "RelatedToLine": "azure.schemaregistry.aio.SchemaRegistryClient.get_schema:async_2" + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "async", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 2, + "Value": "def", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 0, + "Value": "get_schema", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false, + "RenderClasses": [ + "method" + ] + }, + { + "Kind": 1, + "Value": "(", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.get_schema:async_2", + "Children": [ + { + "Tokens": [ + { + "Kind": 0, + "Value": " self", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.get_schema:async_2.param(self)", + "IsContextEndLine": false + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " *", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " group_name", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.get_schema:async_2.param(group_name)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " name", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.get_schema:async_2.param(name)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " version", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "int", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.get_schema:async_2.param(version)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " **kwargs", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Any", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.get_schema:async_2.param(kwargs)" + }, + { + "Tokens": [ + { + "Kind": 1, + "Value": ")", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "->", + "HasPrefixSpace": true, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Schema", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.get_schema:async_2.returntype" + } + ] + }, + { + "Tokens": [ + ], + "IsContextEndLine": true, + "RelatedToLine": "azure.schemaregistry.aio.SchemaRegistryClient.get_schema:async_2" + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "@distributed_trace_async", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "RelatedToLine": "azure.schemaregistry.aio.SchemaRegistryClient.get_schema:async" + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "async", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 2, + "Value": "def", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 0, + "Value": "get_schema", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false, + "RenderClasses": [ + "method" + ] + }, + { + "Kind": 1, + "Value": "(", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.get_schema:async", + "Children": [ + { + "Tokens": [ + { + "Kind": 0, + "Value": " self", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.get_schema:async.param(self)", + "IsContextEndLine": false + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " *args", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.get_schema:async.param(args)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " *", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " group_name", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Optional", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "[", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "]", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "=", + "HasPrefixSpace": true, + "HasSuffixSpace": true + }, + { + "Kind": 6, + "Value": "...", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.get_schema:async.param(group_name)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " name", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Optional", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "[", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "]", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "=", + "HasPrefixSpace": true, + "HasSuffixSpace": true + }, + { + "Kind": 6, + "Value": "...", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.get_schema:async.param(name)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " version", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Optional", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "[", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "int", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "]", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "=", + "HasPrefixSpace": true, + "HasSuffixSpace": true + }, + { + "Kind": 6, + "Value": "...", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.get_schema:async.param(version)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " **kwargs", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Any", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.get_schema:async.param(kwargs)" + }, + { + "Tokens": [ + { + "Kind": 1, + "Value": ")", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "->", + "HasPrefixSpace": true, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Schema", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.get_schema:async.returntype" + } + ] + }, + { + "Tokens": [ + ], + "IsContextEndLine": true, + "RelatedToLine": "azure.schemaregistry.aio.SchemaRegistryClient.get_schema:async" + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "@distributed_trace_async", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "RelatedToLine": "azure.schemaregistry.aio.SchemaRegistryClient.get_schema_properties:async" + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "async", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 2, + "Value": "def", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 0, + "Value": "get_schema_properties", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false, + "RenderClasses": [ + "method" + ] + }, + { + "Kind": 1, + "Value": "(", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.get_schema_properties:async", + "Children": [ + { + "Tokens": [ + { + "Kind": 0, + "Value": " self", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.get_schema_properties:async.param(self)", + "IsContextEndLine": false + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " group_name", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.get_schema_properties:async.param(group_name)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " name", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.get_schema_properties:async.param(name)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " definition", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.get_schema_properties:async.param(definition)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " format", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Union", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "[", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ", ", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "SchemaFormat", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "]", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.get_schema_properties:async.param(format)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " **kwargs", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Any", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.get_schema_properties:async.param(kwargs)" + }, + { + "Tokens": [ + { + "Kind": 1, + "Value": ")", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "->", + "HasPrefixSpace": true, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "SchemaProperties", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.get_schema_properties:async.returntype" + } + ] + }, + { + "Tokens": [ + ], + "IsContextEndLine": true, + "RelatedToLine": "azure.schemaregistry.aio.SchemaRegistryClient.get_schema_properties:async" + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "@distributed_trace_async", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "RelatedToLine": "azure.schemaregistry.aio.SchemaRegistryClient.register_schema:async" + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "async", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 2, + "Value": "def", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 0, + "Value": "register_schema", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false, + "RenderClasses": [ + "method" + ] + }, + { + "Kind": 1, + "Value": "(", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.register_schema:async", + "Children": [ + { + "Tokens": [ + { + "Kind": 0, + "Value": " self", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.register_schema:async.param(self)", + "IsContextEndLine": false + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " group_name", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.register_schema:async.param(group_name)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " name", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.register_schema:async.param(name)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " definition", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.register_schema:async.param(definition)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " format", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Union", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "[", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ", ", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "SchemaFormat", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "]", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.register_schema:async.param(format)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " **kwargs", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Any", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.register_schema:async.param(kwargs)" + }, + { + "Tokens": [ + { + "Kind": 1, + "Value": ")", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "->", + "HasPrefixSpace": true, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "SchemaProperties", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.aio.SchemaRegistryClient.register_schema:async.returntype" + } + ] + }, + { + "Tokens": [ + ], + "IsContextEndLine": true, + "RelatedToLine": "azure.schemaregistry.aio.SchemaRegistryClient.register_schema:async" + }, + { + "Tokens": [ + ], + "IsContextEndLine": true, + "RelatedToLine": "azure.schemaregistry.aio.SchemaRegistryClient" + } + ] + } + ] + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "namespace", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 0, + "Value": "azure.schemaregistry.encoder.jsonencoder", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false, + "NavigationDisplayName": "azure.schemaregistry.encoder.jsonencoder", + "RenderClasses": [ + "namespace" + ] + } + ], + "LineId": "azure.schemaregistry.encoder.jsonencoder", + "IsContextEndLine": false, + "Children": [ + { + "Tokens": [ + ], + "IsContextEndLine": false, + "RelatedToLine": "azure.schemaregistry.encoder.jsonencoder" + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "class", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 0, + "Value": "azure.schemaregistry.encoder.jsonencoder.InvalidContentError", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false, + "NavigationDisplayName": "InvalidContentError", + "RenderClasses": [ + "class" + ] + }, + { + "Kind": 1, + "Value": "(", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "ValueError", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ")", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.InvalidContentError", + "Children": [ + { + "Tokens": [ + { + "Kind": 2, + "Value": "ivar", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 0, + "Value": "message", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.InvalidContentError.message(str)" + }, + { + "Tokens": [ + ], + "IsContextEndLine": false, + "RelatedToLine": "azure.schemaregistry.encoder.jsonencoder.InvalidContentError" + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "def", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 0, + "Value": "__init__", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false, + "RenderClasses": [ + "method" + ] + }, + { + "Kind": 1, + "Value": "(", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.InvalidContentError.__init__", + "Children": [ + { + "Tokens": [ + { + "Kind": 0, + "Value": " self", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "LineId": "azure.schemaregistry.encoder.jsonencoder.InvalidContentError.__init__.param(self)", + "IsContextEndLine": false + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " message", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.InvalidContentError.__init__.param(message)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " *args", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Any", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.InvalidContentError.__init__.param(args)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " *", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " details", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Optional", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "[", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "Dict", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "[", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ", ", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "]]", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "=", + "HasPrefixSpace": true, + "HasSuffixSpace": true + }, + { + "Kind": 6, + "Value": "...", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.InvalidContentError.__init__.param(details)" + }, + { + "Tokens": [ + { + "Kind": 1, + "Value": ")", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "->", + "HasPrefixSpace": true, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "None", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.InvalidContentError.__init__.returntype" + } + ] + }, + { + "Tokens": [ + ], + "IsContextEndLine": true, + "RelatedToLine": "azure.schemaregistry.encoder.jsonencoder.InvalidContentError.__init__" + }, + { + "Tokens": [ + ], + "IsContextEndLine": true, + "RelatedToLine": "azure.schemaregistry.encoder.jsonencoder.InvalidContentError" + } + ] + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "class", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 0, + "Value": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false, + "NavigationDisplayName": "JsonSchemaEncoder", + "RenderClasses": [ + "class" + ] + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 0, + "Value": " ", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 2, + "Value": "implements", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "ContextManager", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder", + "Children": [ + { + "Tokens": [ + ], + "IsContextEndLine": false, + "RelatedToLine": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder" + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "def", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 0, + "Value": "__init__", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false, + "RenderClasses": [ + "method" + ] + }, + { + "Kind": 1, + "Value": "(", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.__init__", + "Children": [ + { + "Tokens": [ + { + "Kind": 0, + "Value": " self", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.__init__.param(self)", + "IsContextEndLine": false + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " *", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " client", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "SchemaRegistryClient", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "NavigateToId": "azure.schemaregistry.SchemaRegistryClient" + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.__init__.param(client)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " group_name", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Optional", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "[", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "]", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "=", + "HasPrefixSpace": true, + "HasSuffixSpace": true + }, + { + "Kind": 6, + "Value": "...", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.__init__.param(group_name)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " validate", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Union", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "[", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ", ", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "SchemaContentValidate", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "]", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.__init__.param(validate)" + }, + { + "Tokens": [ + { + "Kind": 1, + "Value": ")", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "->", + "HasPrefixSpace": true, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "None", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.__init__.returntype" + } + ] + }, + { + "Tokens": [ + ], + "IsContextEndLine": true, + "RelatedToLine": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.__init__" + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "def", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 0, + "Value": "close", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false, + "RenderClasses": [ + "method" + ] + }, + { + "Kind": 1, + "Value": "(", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 0, + "Value": "self", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ")", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "->", + "HasPrefixSpace": true, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "None", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.close", + "Children": [ + ] + }, + { + "Tokens": [ + ], + "IsContextEndLine": false, + "RelatedToLine": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.close" + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "def", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 0, + "Value": "decode", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false, + "RenderClasses": [ + "method" + ] + }, + { + "Kind": 1, + "Value": "(", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.decode", + "Children": [ + { + "Tokens": [ + { + "Kind": 0, + "Value": " self", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.decode.param(self)", + "IsContextEndLine": false + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " message", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Union", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "[", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "MessageContent", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ", ", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "InboundMessageContent", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "]", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.decode.param(message)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " *", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " request_options", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Optional", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "[", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "Dict", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "[", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ", ", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "Any", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "]]", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "=", + "HasPrefixSpace": true, + "HasSuffixSpace": true + }, + { + "Kind": 6, + "Value": "...", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.decode.param(request_options)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " **kwargs", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Any", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.decode.param(kwargs)" + }, + { + "Tokens": [ + { + "Kind": 1, + "Value": ")", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "->", + "HasPrefixSpace": true, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Dict", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "[", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ", ", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "Any", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "]", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.decode.returntype" + } + ] + }, + { + "Tokens": [ + ], + "IsContextEndLine": true, + "RelatedToLine": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.decode" + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "@overload", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "RelatedToLine": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode_1" + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "def", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 0, + "Value": "encode", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false, + "RenderClasses": [ + "method" + ] + }, + { + "Kind": 1, + "Value": "(", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode_1", + "Children": [ + { + "Tokens": [ + { + "Kind": 0, + "Value": " self", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode_1.param(self)", + "IsContextEndLine": false + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " content", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Mapping", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "[", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ", ", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "Any", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "]", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode_1.param(content)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " *", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " message_type", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Type", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "[", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "OutboundMessageContent", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "]", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode_1.param(message_type)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " request_options", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Optional", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "[", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "Dict", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "[", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ", ", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "Any", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "]]", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "=", + "HasPrefixSpace": true, + "HasSuffixSpace": true + }, + { + "Kind": 6, + "Value": "...", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode_1.param(request_options)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " schema", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode_1.param(schema)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " **kwargs", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Any", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode_1.param(kwargs)" + }, + { + "Tokens": [ + { + "Kind": 1, + "Value": ")", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "->", + "HasPrefixSpace": true, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "OutboundMessageContent", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode_1.returntype" + } + ] + }, + { + "Tokens": [ + ], + "IsContextEndLine": true, + "RelatedToLine": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode_1" + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "@overload", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "RelatedToLine": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode_2" + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "def", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 0, + "Value": "encode", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false, + "RenderClasses": [ + "method" + ] + }, + { + "Kind": 1, + "Value": "(", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode_2", + "Children": [ + { + "Tokens": [ + { + "Kind": 0, + "Value": " self", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode_2.param(self)", + "IsContextEndLine": false + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " content", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Mapping", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "[", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ", ", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "Any", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "]", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode_2.param(content)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " *", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " message_type", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Type", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "[", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "OutboundMessageContent", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "]", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode_2.param(message_type)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " request_options", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Optional", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "[", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "Dict", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "[", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ", ", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "Any", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "]]", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "=", + "HasPrefixSpace": true, + "HasSuffixSpace": true + }, + { + "Kind": 6, + "Value": "...", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode_2.param(request_options)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " schema_id", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode_2.param(schema_id)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " **kwargs", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Any", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode_2.param(kwargs)" + }, + { + "Tokens": [ + { + "Kind": 1, + "Value": ")", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "->", + "HasPrefixSpace": true, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "OutboundMessageContent", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode_2.returntype" + } + ] + }, + { + "Tokens": [ + ], + "IsContextEndLine": true, + "RelatedToLine": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode_2" + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "@overload", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "RelatedToLine": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode_3" + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "def", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 0, + "Value": "encode", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false, + "RenderClasses": [ + "method" + ] + }, + { + "Kind": 1, + "Value": "(", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode_3", + "Children": [ + { + "Tokens": [ + { + "Kind": 0, + "Value": " self", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode_3.param(self)", + "IsContextEndLine": false + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " content", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Mapping", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "[", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ", ", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "Any", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "]", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode_3.param(content)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " *", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " request_options", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Optional", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "[", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "Dict", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "[", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ", ", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "Any", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "]]", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "=", + "HasPrefixSpace": true, + "HasSuffixSpace": true + }, + { + "Kind": 6, + "Value": "...", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode_3.param(request_options)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " schema", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode_3.param(schema)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " **kwargs", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Any", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode_3.param(kwargs)" + }, + { + "Tokens": [ + { + "Kind": 1, + "Value": ")", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "->", + "HasPrefixSpace": true, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "MessageContent", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode_3.returntype" + } + ] + }, + { + "Tokens": [ + ], + "IsContextEndLine": true, + "RelatedToLine": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode_3" + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "@overload", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "RelatedToLine": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode_4" + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "def", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 0, + "Value": "encode", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false, + "RenderClasses": [ + "method" + ] + }, + { + "Kind": 1, + "Value": "(", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode_4", + "Children": [ + { + "Tokens": [ + { + "Kind": 0, + "Value": " self", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode_4.param(self)", + "IsContextEndLine": false + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " content", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Mapping", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "[", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ", ", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "Any", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "]", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode_4.param(content)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " *", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " request_options", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Optional", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "[", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "Dict", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "[", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ", ", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "Any", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "]]", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "=", + "HasPrefixSpace": true, + "HasSuffixSpace": true + }, + { + "Kind": 6, + "Value": "...", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode_4.param(request_options)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " schema_id", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode_4.param(schema_id)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " **kwargs", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Any", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode_4.param(kwargs)" + }, + { + "Tokens": [ + { + "Kind": 1, + "Value": ")", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "->", + "HasPrefixSpace": true, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "MessageContent", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode_4.returntype" + } + ] + }, + { + "Tokens": [ + ], + "IsContextEndLine": true, + "RelatedToLine": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode_4" + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "def", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 0, + "Value": "encode", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false, + "RenderClasses": [ + "method" + ] + }, + { + "Kind": 1, + "Value": "(", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode", + "Children": [ + { + "Tokens": [ + { + "Kind": 0, + "Value": " self", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode.param(self)", + "IsContextEndLine": false + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " content", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Mapping", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "[", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ", ", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "Any", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "]", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode.param(content)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " *", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " message_type", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Optional", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "[", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "Type", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "[", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "OutboundMessageContent", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "]]", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "=", + "HasPrefixSpace": true, + "HasSuffixSpace": true + }, + { + "Kind": 6, + "Value": "...", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode.param(message_type)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " request_options", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Optional", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "[", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "Dict", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "[", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ", ", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "Any", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "]]", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "=", + "HasPrefixSpace": true, + "HasSuffixSpace": true + }, + { + "Kind": 6, + "Value": "...", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode.param(request_options)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " schema", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Optional", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "[", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "]", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "=", + "HasPrefixSpace": true, + "HasSuffixSpace": true + }, + { + "Kind": 6, + "Value": "...", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode.param(schema)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " schema_id", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Optional", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "[", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "]", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "=", + "HasPrefixSpace": true, + "HasSuffixSpace": true + }, + { + "Kind": 6, + "Value": "...", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode.param(schema_id)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " **kwargs", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Any", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode.param(kwargs)" + }, + { + "Tokens": [ + { + "Kind": 1, + "Value": ")", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "->", + "HasPrefixSpace": true, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Union", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "[", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "OutboundMessageContent", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ", ", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "MessageContent", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "]", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode.returntype" + } + ] + }, + { + "Tokens": [ + ], + "IsContextEndLine": true, + "RelatedToLine": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder.encode" + }, + { + "Tokens": [ + ], + "IsContextEndLine": true, + "RelatedToLine": "azure.schemaregistry.encoder.jsonencoder.JsonSchemaEncoder" + } + ] + } + ] + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "namespace", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 0, + "Value": "azure.schemaregistry.encoder.jsonencoder.aio", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false, + "NavigationDisplayName": "azure.schemaregistry.encoder.jsonencoder.aio", + "RenderClasses": [ + "namespace" + ] + } + ], + "LineId": "azure.schemaregistry.encoder.jsonencoder.aio", + "IsContextEndLine": false, + "Children": [ + { + "Tokens": [ + ], + "IsContextEndLine": false, + "RelatedToLine": "azure.schemaregistry.encoder.jsonencoder.aio" + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "class", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 0, + "Value": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false, + "NavigationDisplayName": "JsonSchemaEncoder", + "RenderClasses": [ + "class" + ] + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 0, + "Value": " ", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 2, + "Value": "implements", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "AsyncContextManager", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder", + "Children": [ + { + "Tokens": [ + ], + "IsContextEndLine": false, + "RelatedToLine": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder" + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "def", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 0, + "Value": "__init__", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false, + "RenderClasses": [ + "method" + ] + }, + { + "Kind": 1, + "Value": "(", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.__init__", + "Children": [ + { + "Tokens": [ + { + "Kind": 0, + "Value": " self", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.__init__.param(self)", + "IsContextEndLine": false + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " *", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " client", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "SchemaRegistryClient", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "NavigateToId": "azure.schemaregistry.aio.SchemaRegistryClient" + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.__init__.param(client)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " group_name", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Optional", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "[", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "]", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "=", + "HasPrefixSpace": true, + "HasSuffixSpace": true + }, + { + "Kind": 6, + "Value": "...", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.__init__.param(group_name)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " validate", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Union", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "[", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ", ", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "SchemaContentValidate", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "]", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.__init__.param(validate)" + }, + { + "Tokens": [ + { + "Kind": 1, + "Value": ")", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "->", + "HasPrefixSpace": true, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "None", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.__init__.returntype" + } + ] + }, + { + "Tokens": [ + ], + "IsContextEndLine": true, + "RelatedToLine": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.__init__" + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "async", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 2, + "Value": "def", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 0, + "Value": "close", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false, + "RenderClasses": [ + "method" + ] + }, + { + "Kind": 1, + "Value": "(", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 0, + "Value": "self", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ")", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "->", + "HasPrefixSpace": true, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "None", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.close:async", + "Children": [ + ] + }, + { + "Tokens": [ + ], + "IsContextEndLine": false, + "RelatedToLine": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.close:async" + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "async", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 2, + "Value": "def", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 0, + "Value": "decode", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false, + "RenderClasses": [ + "method" + ] + }, + { + "Kind": 1, + "Value": "(", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.decode:async", + "Children": [ + { + "Tokens": [ + { + "Kind": 0, + "Value": " self", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.decode:async.param(self)", + "IsContextEndLine": false + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " message", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Union", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "[", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "MessageContent", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ", ", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "InboundMessageContent", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "]", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.decode:async.param(message)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " *", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " request_options", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Optional", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "[", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "Dict", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "[", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ", ", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "Any", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "]]", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "=", + "HasPrefixSpace": true, + "HasSuffixSpace": true + }, + { + "Kind": 6, + "Value": "...", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.decode:async.param(request_options)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " **kwargs", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Any", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.decode:async.param(kwargs)" + }, + { + "Tokens": [ + { + "Kind": 1, + "Value": ")", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "->", + "HasPrefixSpace": true, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Dict", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "[", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ", ", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "Any", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "]", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.decode:async.returntype" + } + ] + }, + { + "Tokens": [ + ], + "IsContextEndLine": true, + "RelatedToLine": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.decode:async" + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "@overload", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "RelatedToLine": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async_1" + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "async", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 2, + "Value": "def", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 0, + "Value": "encode", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false, + "RenderClasses": [ + "method" + ] + }, + { + "Kind": 1, + "Value": "(", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async_1", + "Children": [ + { + "Tokens": [ + { + "Kind": 0, + "Value": " self", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async_1.param(self)", + "IsContextEndLine": false + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " content", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Mapping", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "[", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ", ", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "Any", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "]", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async_1.param(content)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " *", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " message_type", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Type", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "[", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "OutboundMessageContent", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "]", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async_1.param(message_type)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " request_options", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Optional", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "[", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "Dict", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "[", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ", ", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "Any", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "]]", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "=", + "HasPrefixSpace": true, + "HasSuffixSpace": true + }, + { + "Kind": 6, + "Value": "...", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async_1.param(request_options)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " schema", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async_1.param(schema)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " **kwargs", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Any", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async_1.param(kwargs)" + }, + { + "Tokens": [ + { + "Kind": 1, + "Value": ")", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "->", + "HasPrefixSpace": true, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "OutboundMessageContent", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async_1.returntype" + } + ] + }, + { + "Tokens": [ + ], + "IsContextEndLine": true, + "RelatedToLine": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async_1" + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "@overload", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "RelatedToLine": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async_2" + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "async", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 2, + "Value": "def", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 0, + "Value": "encode", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false, + "RenderClasses": [ + "method" + ] + }, + { + "Kind": 1, + "Value": "(", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async_2", + "Children": [ + { + "Tokens": [ + { + "Kind": 0, + "Value": " self", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async_2.param(self)", + "IsContextEndLine": false + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " content", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Mapping", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "[", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ", ", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "Any", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "]", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async_2.param(content)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " *", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " message_type", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Type", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "[", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "OutboundMessageContent", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "]", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async_2.param(message_type)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " request_options", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Optional", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "[", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "Dict", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "[", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ", ", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "Any", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "]]", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "=", + "HasPrefixSpace": true, + "HasSuffixSpace": true + }, + { + "Kind": 6, + "Value": "...", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async_2.param(request_options)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " schema_id", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async_2.param(schema_id)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " **kwargs", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Any", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async_2.param(kwargs)" + }, + { + "Tokens": [ + { + "Kind": 1, + "Value": ")", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "->", + "HasPrefixSpace": true, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "OutboundMessageContent", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async_2.returntype" + } + ] + }, + { + "Tokens": [ + ], + "IsContextEndLine": true, + "RelatedToLine": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async_2" + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "@overload", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "RelatedToLine": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async_3" + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "async", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 2, + "Value": "def", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 0, + "Value": "encode", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false, + "RenderClasses": [ + "method" + ] + }, + { + "Kind": 1, + "Value": "(", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async_3", + "Children": [ + { + "Tokens": [ + { + "Kind": 0, + "Value": " self", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async_3.param(self)", + "IsContextEndLine": false + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " content", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Mapping", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "[", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ", ", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "Any", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "]", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async_3.param(content)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " *", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " request_options", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Optional", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "[", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "Dict", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "[", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ", ", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "Any", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "]]", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "=", + "HasPrefixSpace": true, + "HasSuffixSpace": true + }, + { + "Kind": 6, + "Value": "...", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async_3.param(request_options)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " schema", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async_3.param(schema)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " **kwargs", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Any", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async_3.param(kwargs)" + }, + { + "Tokens": [ + { + "Kind": 1, + "Value": ")", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "->", + "HasPrefixSpace": true, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "MessageContent", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async_3.returntype" + } + ] + }, + { + "Tokens": [ + ], + "IsContextEndLine": true, + "RelatedToLine": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async_3" + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "@overload", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "RelatedToLine": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async_4" + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "async", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 2, + "Value": "def", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 0, + "Value": "encode", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false, + "RenderClasses": [ + "method" + ] + }, + { + "Kind": 1, + "Value": "(", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async_4", + "Children": [ + { + "Tokens": [ + { + "Kind": 0, + "Value": " self", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async_4.param(self)", + "IsContextEndLine": false + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " content", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Mapping", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "[", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ", ", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "Any", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "]", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async_4.param(content)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " *", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " request_options", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Optional", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "[", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "Dict", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "[", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ", ", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "Any", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "]]", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "=", + "HasPrefixSpace": true, + "HasSuffixSpace": true + }, + { + "Kind": 6, + "Value": "...", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async_4.param(request_options)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " schema_id", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async_4.param(schema_id)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " **kwargs", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Any", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async_4.param(kwargs)" + }, + { + "Tokens": [ + { + "Kind": 1, + "Value": ")", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "->", + "HasPrefixSpace": true, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "MessageContent", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async_4.returntype" + } + ] + }, + { + "Tokens": [ + ], + "IsContextEndLine": true, + "RelatedToLine": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async_4" + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "async", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 2, + "Value": "def", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 0, + "Value": "encode", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false, + "RenderClasses": [ + "method" + ] + }, + { + "Kind": 1, + "Value": "(", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async", + "Children": [ + { + "Tokens": [ + { + "Kind": 0, + "Value": " self", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async.param(self)", + "IsContextEndLine": false + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " content", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Mapping", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "[", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ", ", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "Any", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "]", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async.param(content)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " *", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " message_type", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Optional", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "[", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "Type", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "[", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "OutboundMessageContent", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "]]", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "=", + "HasPrefixSpace": true, + "HasSuffixSpace": true + }, + { + "Kind": 6, + "Value": "...", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async.param(message_type)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " request_options", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Optional", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "[", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "Dict", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "[", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ", ", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "Any", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "]]", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "=", + "HasPrefixSpace": true, + "HasSuffixSpace": true + }, + { + "Kind": 6, + "Value": "...", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async.param(request_options)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " schema", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Optional", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "[", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "]", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "=", + "HasPrefixSpace": true, + "HasSuffixSpace": true + }, + { + "Kind": 6, + "Value": "...", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async.param(schema)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " schema_id", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Optional", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "[", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "]", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "=", + "HasPrefixSpace": true, + "HasSuffixSpace": true + }, + { + "Kind": 6, + "Value": "...", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async.param(schema_id)" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": " **kwargs", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Any", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async.param(kwargs)" + }, + { + "Tokens": [ + { + "Kind": 1, + "Value": ")", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "->", + "HasPrefixSpace": true, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Union", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "[", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "OutboundMessageContent", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ", ", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "MessageContent", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": "]", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async.returntype" + } + ] + }, + { + "Tokens": [ + ], + "IsContextEndLine": true, + "RelatedToLine": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder.encode:async" + }, + { + "Tokens": [ + ], + "IsContextEndLine": true, + "RelatedToLine": "azure.schemaregistry.encoder.jsonencoder.aio.JsonSchemaEncoder" + } + ] + } + ] + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "namespace", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 0, + "Value": "azure.schemaregistry.models", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false, + "NavigationDisplayName": "azure.schemaregistry.models", + "RenderClasses": [ + "namespace" + ] + } + ], + "LineId": "azure.schemaregistry.models", + "IsContextEndLine": false, + "Children": [ + { + "Tokens": [ + ], + "IsContextEndLine": false, + "RelatedToLine": "azure.schemaregistry.models" + }, + { + "Tokens": [ + { + "Kind": 2, + "Value": "class", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 0, + "Value": "azure.schemaregistry.models.SchemaContentTypeValues", + "HasPrefixSpace": false, + "HasSuffixSpace": false, + "SkipDiff": false, + "NavigationDisplayName": "SchemaContentTypeValues", + "RenderClasses": [ + "enum" + ] + }, + { + "Kind": 1, + "Value": "(", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 3, + "Value": "str", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ",", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 3, + "Value": "Enum", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ")", + "HasPrefixSpace": false, + "HasSuffixSpace": false + }, + { + "Kind": 1, + "Value": ":", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "CrossLanguageId": "SchemaRegistry.SchemaContentTypeValues", + "LineId": "azure.schemaregistry.models.SchemaContentTypeValues", + "Children": [ + { + "Tokens": [ + { + "Kind": 0, + "Value": "AVRO", + "HasPrefixSpace": false, + "HasSuffixSpace": true, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": "=", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 5, + "Value": "\"application/json; serialization=Avro\"", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.models.SchemaContentTypeValues.AVRO" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": "CUSTOM", + "HasPrefixSpace": false, + "HasSuffixSpace": true, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": "=", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 5, + "Value": "\"text/plain; charset=utf-8\"", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.models.SchemaContentTypeValues.CUSTOM" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": "JSON", + "HasPrefixSpace": false, + "HasSuffixSpace": true, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": "=", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 5, + "Value": "\"application/json; serialization=Json\"", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.models.SchemaContentTypeValues.JSON" + }, + { + "Tokens": [ + { + "Kind": 0, + "Value": "PROTOBUF", + "HasPrefixSpace": false, + "HasSuffixSpace": true, + "SkipDiff": false + }, + { + "Kind": 1, + "Value": "=", + "HasPrefixSpace": false, + "HasSuffixSpace": true + }, + { + "Kind": 5, + "Value": "\"text/vnd.ms.protobuf\"", + "HasPrefixSpace": false, + "HasSuffixSpace": false + } + ], + "IsContextEndLine": false, + "LineId": "azure.schemaregistry.models.SchemaContentTypeValues.PROTOBUF" + }, + { + "Tokens": [ + ], + "IsContextEndLine": false, + "RelatedToLine": "azure.schemaregistry.models.SchemaContentTypeValues" + }, + { + "Tokens": [ + ], + "IsContextEndLine": true, + "RelatedToLine": "azure.schemaregistry.models.SchemaContentTypeValues" + } + ] + } + ] + } + ], + "CrossLanguagePackageId": "SchemaRegistry", + "Diagnostics": [ + ] +} \ No newline at end of file diff --git a/src/dotnet/APIView/APIViewWeb/Helpers/CodeFileHelpers.cs b/src/dotnet/APIView/APIViewWeb/Helpers/CodeFileHelpers.cs index 6b492555a05..9d89154015a 100644 --- a/src/dotnet/APIView/APIViewWeb/Helpers/CodeFileHelpers.cs +++ b/src/dotnet/APIView/APIViewWeb/Helpers/CodeFileHelpers.cs @@ -414,7 +414,7 @@ public static List FindDiff(List activeLines, List