public async Task GetSchema_EndToEnd()
        {
            var schema1name = GetRandomName;
            await SchemaClient.AssertNoSchemasExist("aut", delay : TimeSpan.FromSeconds(0.5));

            var create1result = await SchemaClient.CreateSchema("aut", AssetLoader.Schema1(schema1name));

            var that = await SchemaClient.GetSchema("aut", schema1name);

            //int count = Convert.ToInt32(that.Count);
            //count.Should().Be(2);

            var delete1result = await SchemaClient.DeleteSchema("aut", schema1name);

            await SchemaClient.AssertNoSchemasExist("aut", delay : TimeSpan.FromSeconds(0.5));
        }