├── .gitattributes ├── .github ├── CODE_OF_CONDUCT.md ├── dependabot.yml └── workflows │ ├── add-to-project.yaml │ ├── ci.yaml │ ├── emergency-review-bypass.yaml │ ├── notify-approval-bypass.yaml │ ├── pr-title.yaml │ └── windows.yaml ├── .gitignore ├── .golangci.yml ├── LICENSE ├── Makefile ├── README.md ├── buf.gen.yaml ├── buf.lock ├── buf.yaml ├── cmd ├── protoc-gen-jsonschema │ └── main.go └── protoc-gen-pubsub │ └── main.go ├── go.mod ├── go.sum └── internal ├── cmd ├── jsonschema-generate-testdata │ └── main.go └── pubsub-generate-testdata │ └── main.go ├── gen ├── jsonschema │ ├── buf.protoschema.test.v1.ConstraintTest.RequiredImplicit.schema.json │ ├── buf.protoschema.test.v1.ConstraintTest.RequiredOptional.schema.json │ ├── buf.protoschema.test.v1.ConstraintTest.jsonschema.strict.bundle.json │ ├── buf.protoschema.test.v1.ConstraintTest.schema.json │ ├── buf.protoschema.test.v1.ConstraintTests.jsonschema.strict.bundle.json │ ├── buf.protoschema.test.v1.ConstraintTests.schema.json │ ├── buf.protoschema.test.v1.CustomOptions.jsonschema.strict.bundle.json │ ├── buf.protoschema.test.v1.CustomOptions.schema.json │ ├── buf.protoschema.test.v1.IgnoreField.jsonschema.strict.bundle.json │ ├── buf.protoschema.test.v1.IgnoreField.schema.json │ ├── buf.protoschema.test.v1.NestedReference.jsonschema.strict.bundle.json │ ├── buf.protoschema.test.v1.NestedReference.schema.json │ ├── buf.protoschema.test.v1.Product.Location.schema.json │ ├── buf.protoschema.test.v1.Product.jsonschema.strict.bundle.json │ ├── buf.protoschema.test.v1.Product.schema.json │ ├── bufext.cel.expr.conformance.proto3.NestedTestAllTypes.jsonschema.strict.bundle.json │ ├── bufext.cel.expr.conformance.proto3.NestedTestAllTypes.schema.json │ ├── bufext.cel.expr.conformance.proto3.TestAllTypes.NestedMessage.schema.json │ ├── bufext.cel.expr.conformance.proto3.TestAllTypes.jsonschema.strict.bundle.json │ ├── bufext.cel.expr.conformance.proto3.TestAllTypes.schema.json │ ├── google.protobuf.Any.schema.json │ ├── google.protobuf.BoolValue.schema.json │ ├── google.protobuf.BytesValue.schema.json │ ├── google.protobuf.DoubleValue.schema.json │ ├── google.protobuf.Duration.schema.json │ ├── google.protobuf.FloatValue.schema.json │ ├── google.protobuf.Int32Value.schema.json │ ├── google.protobuf.Int64Value.schema.json │ ├── google.protobuf.ListValue.schema.json │ ├── google.protobuf.StringValue.schema.json │ ├── google.protobuf.Struct.schema.json │ ├── google.protobuf.Timestamp.schema.json │ ├── google.protobuf.UInt32Value.schema.json │ ├── google.protobuf.UInt64Value.schema.json │ └── google.protobuf.Value.schema.json └── proto │ ├── buf │ └── protoschema │ │ └── test │ │ └── v1 │ │ ├── constraints.pb.go │ │ ├── examples.pb.go │ │ └── test_cases.pb.go │ └── bufext │ └── cel │ └── expr │ └── conformance │ └── proto3 │ └── test_all_types.pb.go ├── proto ├── buf │ └── protoschema │ │ └── test │ │ └── v1 │ │ ├── constraints.proto │ │ ├── examples.proto │ │ └── test_cases.proto └── bufext │ └── cel │ └── expr │ └── conformance │ └── proto3 │ └── test_all_types.proto ├── protoschema ├── golden │ └── golden.go ├── jsonschema │ ├── jsonschema.go │ └── jsonschema_test.go ├── normalize │ ├── normalizer.go │ └── options.go ├── plugin │ ├── pluginjsonschema │ │ ├── pluginjsonschema.go │ │ └── pluginjsonschema_test.go │ └── pluginpubsub │ │ ├── pluginpubsub.go │ │ └── pluginpubsub_test.go ├── protoschema.go └── pubsub │ ├── pubsub.go │ └── pubsub_test.go └── testdata ├── codegenrequest ├── image.json └── input.json ├── jsonschema-doc ├── test.ConstraintTests.bundle.txt ├── test.ConstraintTests.txt ├── test.ConstraintTests.yaml └── test.TestAllTypes.yaml ├── jsonschema ├── buf.protoschema.test.v1.ConstraintTest.RequiredImplicit.jsonschema.json ├── buf.protoschema.test.v1.ConstraintTest.RequiredImplicit.jsonschema.strict.json ├── buf.protoschema.test.v1.ConstraintTest.RequiredImplicit.schema.json ├── buf.protoschema.test.v1.ConstraintTest.RequiredImplicit.schema.strict.json ├── buf.protoschema.test.v1.ConstraintTest.RequiredOptional.jsonschema.json ├── buf.protoschema.test.v1.ConstraintTest.RequiredOptional.jsonschema.strict.json ├── buf.protoschema.test.v1.ConstraintTest.RequiredOptional.schema.json ├── buf.protoschema.test.v1.ConstraintTest.RequiredOptional.schema.strict.json ├── buf.protoschema.test.v1.ConstraintTest.jsonschema.bundle.json ├── buf.protoschema.test.v1.ConstraintTest.jsonschema.json ├── buf.protoschema.test.v1.ConstraintTest.jsonschema.strict.bundle.json ├── buf.protoschema.test.v1.ConstraintTest.jsonschema.strict.json ├── buf.protoschema.test.v1.ConstraintTest.schema.bundle.json ├── buf.protoschema.test.v1.ConstraintTest.schema.json ├── buf.protoschema.test.v1.ConstraintTest.schema.strict.bundle.json ├── buf.protoschema.test.v1.ConstraintTest.schema.strict.json ├── buf.protoschema.test.v1.ConstraintTests.jsonschema.bundle.json ├── buf.protoschema.test.v1.ConstraintTests.jsonschema.json ├── buf.protoschema.test.v1.ConstraintTests.jsonschema.strict.bundle.json ├── buf.protoschema.test.v1.ConstraintTests.jsonschema.strict.json ├── buf.protoschema.test.v1.ConstraintTests.schema.bundle.json ├── buf.protoschema.test.v1.ConstraintTests.schema.json ├── buf.protoschema.test.v1.ConstraintTests.schema.strict.bundle.json ├── buf.protoschema.test.v1.ConstraintTests.schema.strict.json ├── buf.protoschema.test.v1.CustomOptions.jsonschema.bundle.json ├── buf.protoschema.test.v1.CustomOptions.jsonschema.json ├── buf.protoschema.test.v1.CustomOptions.jsonschema.strict.bundle.json ├── buf.protoschema.test.v1.CustomOptions.jsonschema.strict.json ├── buf.protoschema.test.v1.CustomOptions.schema.bundle.json ├── buf.protoschema.test.v1.CustomOptions.schema.json ├── buf.protoschema.test.v1.CustomOptions.schema.strict.bundle.json ├── buf.protoschema.test.v1.CustomOptions.schema.strict.json ├── buf.protoschema.test.v1.IgnoreField.jsonschema.bundle.json ├── buf.protoschema.test.v1.IgnoreField.jsonschema.json ├── buf.protoschema.test.v1.IgnoreField.jsonschema.strict.bundle.json ├── buf.protoschema.test.v1.IgnoreField.jsonschema.strict.json ├── buf.protoschema.test.v1.IgnoreField.schema.bundle.json ├── buf.protoschema.test.v1.IgnoreField.schema.json ├── buf.protoschema.test.v1.IgnoreField.schema.strict.bundle.json ├── buf.protoschema.test.v1.IgnoreField.schema.strict.json ├── buf.protoschema.test.v1.NestedReference.jsonschema.bundle.json ├── buf.protoschema.test.v1.NestedReference.jsonschema.json ├── buf.protoschema.test.v1.NestedReference.jsonschema.strict.bundle.json ├── buf.protoschema.test.v1.NestedReference.jsonschema.strict.json ├── buf.protoschema.test.v1.NestedReference.schema.bundle.json ├── buf.protoschema.test.v1.NestedReference.schema.json ├── buf.protoschema.test.v1.NestedReference.schema.strict.bundle.json ├── buf.protoschema.test.v1.NestedReference.schema.strict.json ├── buf.protoschema.test.v1.Product.Location.jsonschema.json ├── buf.protoschema.test.v1.Product.Location.jsonschema.strict.json ├── buf.protoschema.test.v1.Product.Location.schema.json ├── buf.protoschema.test.v1.Product.Location.schema.strict.json ├── buf.protoschema.test.v1.Product.jsonschema.bundle.json ├── buf.protoschema.test.v1.Product.jsonschema.json ├── buf.protoschema.test.v1.Product.jsonschema.strict.bundle.json ├── buf.protoschema.test.v1.Product.jsonschema.strict.json ├── buf.protoschema.test.v1.Product.schema.bundle.json ├── buf.protoschema.test.v1.Product.schema.json ├── buf.protoschema.test.v1.Product.schema.strict.bundle.json ├── buf.protoschema.test.v1.Product.schema.strict.json ├── bufext.cel.expr.conformance.proto3.NestedTestAllTypes.jsonschema.bundle.json ├── bufext.cel.expr.conformance.proto3.NestedTestAllTypes.jsonschema.json ├── bufext.cel.expr.conformance.proto3.NestedTestAllTypes.jsonschema.strict.bundle.json ├── bufext.cel.expr.conformance.proto3.NestedTestAllTypes.jsonschema.strict.json ├── bufext.cel.expr.conformance.proto3.NestedTestAllTypes.schema.bundle.json ├── bufext.cel.expr.conformance.proto3.NestedTestAllTypes.schema.json ├── bufext.cel.expr.conformance.proto3.NestedTestAllTypes.schema.strict.bundle.json ├── bufext.cel.expr.conformance.proto3.NestedTestAllTypes.schema.strict.json ├── bufext.cel.expr.conformance.proto3.TestAllTypes.NestedMessage.jsonschema.json ├── bufext.cel.expr.conformance.proto3.TestAllTypes.NestedMessage.jsonschema.strict.json ├── bufext.cel.expr.conformance.proto3.TestAllTypes.NestedMessage.schema.json ├── bufext.cel.expr.conformance.proto3.TestAllTypes.NestedMessage.schema.strict.json ├── bufext.cel.expr.conformance.proto3.TestAllTypes.jsonschema.bundle.json ├── bufext.cel.expr.conformance.proto3.TestAllTypes.jsonschema.json ├── bufext.cel.expr.conformance.proto3.TestAllTypes.jsonschema.strict.bundle.json ├── bufext.cel.expr.conformance.proto3.TestAllTypes.jsonschema.strict.json ├── bufext.cel.expr.conformance.proto3.TestAllTypes.schema.bundle.json ├── bufext.cel.expr.conformance.proto3.TestAllTypes.schema.json ├── bufext.cel.expr.conformance.proto3.TestAllTypes.schema.strict.bundle.json ├── bufext.cel.expr.conformance.proto3.TestAllTypes.schema.strict.json ├── google.protobuf.Any.jsonschema.json ├── google.protobuf.Any.jsonschema.strict.json ├── google.protobuf.Any.schema.json ├── google.protobuf.Any.schema.strict.json ├── google.protobuf.BoolValue.jsonschema.json ├── google.protobuf.BoolValue.jsonschema.strict.json ├── google.protobuf.BoolValue.schema.json ├── google.protobuf.BoolValue.schema.strict.json ├── google.protobuf.BytesValue.jsonschema.json ├── google.protobuf.BytesValue.jsonschema.strict.json ├── google.protobuf.BytesValue.schema.json ├── google.protobuf.BytesValue.schema.strict.json ├── google.protobuf.DoubleValue.jsonschema.json ├── google.protobuf.DoubleValue.jsonschema.strict.json ├── google.protobuf.DoubleValue.schema.json ├── google.protobuf.DoubleValue.schema.strict.json ├── google.protobuf.Duration.jsonschema.json ├── google.protobuf.Duration.jsonschema.strict.json ├── google.protobuf.Duration.schema.json ├── google.protobuf.Duration.schema.strict.json ├── google.protobuf.FloatValue.jsonschema.json ├── google.protobuf.FloatValue.jsonschema.strict.json ├── google.protobuf.FloatValue.schema.json ├── google.protobuf.FloatValue.schema.strict.json ├── google.protobuf.Int32Value.jsonschema.json ├── google.protobuf.Int32Value.jsonschema.strict.json ├── google.protobuf.Int32Value.schema.json ├── google.protobuf.Int32Value.schema.strict.json ├── google.protobuf.Int64Value.jsonschema.json ├── google.protobuf.Int64Value.jsonschema.strict.json ├── google.protobuf.Int64Value.schema.json ├── google.protobuf.Int64Value.schema.strict.json ├── google.protobuf.ListValue.jsonschema.json ├── google.protobuf.ListValue.jsonschema.strict.json ├── google.protobuf.ListValue.schema.json ├── google.protobuf.ListValue.schema.strict.json ├── google.protobuf.StringValue.jsonschema.json ├── google.protobuf.StringValue.jsonschema.strict.json ├── google.protobuf.StringValue.schema.json ├── google.protobuf.StringValue.schema.strict.json ├── google.protobuf.Struct.jsonschema.json ├── google.protobuf.Struct.jsonschema.strict.json ├── google.protobuf.Struct.schema.json ├── google.protobuf.Struct.schema.strict.json ├── google.protobuf.Timestamp.jsonschema.json ├── google.protobuf.Timestamp.jsonschema.strict.json ├── google.protobuf.Timestamp.schema.json ├── google.protobuf.Timestamp.schema.strict.json ├── google.protobuf.UInt32Value.jsonschema.json ├── google.protobuf.UInt32Value.jsonschema.strict.json ├── google.protobuf.UInt32Value.schema.json ├── google.protobuf.UInt32Value.schema.strict.json ├── google.protobuf.UInt64Value.jsonschema.json ├── google.protobuf.UInt64Value.jsonschema.strict.json ├── google.protobuf.UInt64Value.schema.json ├── google.protobuf.UInt64Value.schema.strict.json ├── google.protobuf.Value.jsonschema.json ├── google.protobuf.Value.jsonschema.strict.json ├── google.protobuf.Value.schema.json └── google.protobuf.Value.schema.strict.json └── pubsub ├── buf.protoschema.test.v1.ConstraintTest.pubsub.proto ├── buf.protoschema.test.v1.ConstraintTests.pubsub.proto ├── buf.protoschema.test.v1.CustomOptions.pubsub.proto ├── buf.protoschema.test.v1.IgnoreField.pubsub.proto ├── buf.protoschema.test.v1.NestedReference.pubsub.proto ├── buf.protoschema.test.v1.Product.pubsub.proto ├── bufext.cel.expr.conformance.proto3.NestedTestAllTypes.pubsub.proto └── bufext.cel.expr.conformance.proto3.TestAllTypes.pubsub.proto /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/add-to-project.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/.github/workflows/add-to-project.yaml -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/emergency-review-bypass.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/.github/workflows/emergency-review-bypass.yaml -------------------------------------------------------------------------------- /.github/workflows/notify-approval-bypass.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/.github/workflows/notify-approval-bypass.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-title.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/.github/workflows/pr-title.yaml -------------------------------------------------------------------------------- /.github/workflows/windows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/.github/workflows/windows.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.tmp/ 2 | /.vscode/ 3 | -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/.golangci.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/README.md -------------------------------------------------------------------------------- /buf.gen.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/buf.gen.yaml -------------------------------------------------------------------------------- /buf.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/buf.lock -------------------------------------------------------------------------------- /buf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/buf.yaml -------------------------------------------------------------------------------- /cmd/protoc-gen-jsonschema/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/cmd/protoc-gen-jsonschema/main.go -------------------------------------------------------------------------------- /cmd/protoc-gen-pubsub/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/cmd/protoc-gen-pubsub/main.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/go.sum -------------------------------------------------------------------------------- /internal/cmd/jsonschema-generate-testdata/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/cmd/jsonschema-generate-testdata/main.go -------------------------------------------------------------------------------- /internal/cmd/pubsub-generate-testdata/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/cmd/pubsub-generate-testdata/main.go -------------------------------------------------------------------------------- /internal/gen/jsonschema/buf.protoschema.test.v1.ConstraintTest.RequiredImplicit.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/gen/jsonschema/buf.protoschema.test.v1.ConstraintTest.RequiredImplicit.schema.json -------------------------------------------------------------------------------- /internal/gen/jsonschema/buf.protoschema.test.v1.ConstraintTest.RequiredOptional.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/gen/jsonschema/buf.protoschema.test.v1.ConstraintTest.RequiredOptional.schema.json -------------------------------------------------------------------------------- /internal/gen/jsonschema/buf.protoschema.test.v1.ConstraintTest.jsonschema.strict.bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/gen/jsonschema/buf.protoschema.test.v1.ConstraintTest.jsonschema.strict.bundle.json -------------------------------------------------------------------------------- /internal/gen/jsonschema/buf.protoschema.test.v1.ConstraintTest.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/gen/jsonschema/buf.protoschema.test.v1.ConstraintTest.schema.json -------------------------------------------------------------------------------- /internal/gen/jsonschema/buf.protoschema.test.v1.ConstraintTests.jsonschema.strict.bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/gen/jsonschema/buf.protoschema.test.v1.ConstraintTests.jsonschema.strict.bundle.json -------------------------------------------------------------------------------- /internal/gen/jsonschema/buf.protoschema.test.v1.ConstraintTests.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/gen/jsonschema/buf.protoschema.test.v1.ConstraintTests.schema.json -------------------------------------------------------------------------------- /internal/gen/jsonschema/buf.protoschema.test.v1.CustomOptions.jsonschema.strict.bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/gen/jsonschema/buf.protoschema.test.v1.CustomOptions.jsonschema.strict.bundle.json -------------------------------------------------------------------------------- /internal/gen/jsonschema/buf.protoschema.test.v1.CustomOptions.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/gen/jsonschema/buf.protoschema.test.v1.CustomOptions.schema.json -------------------------------------------------------------------------------- /internal/gen/jsonschema/buf.protoschema.test.v1.IgnoreField.jsonschema.strict.bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/gen/jsonschema/buf.protoschema.test.v1.IgnoreField.jsonschema.strict.bundle.json -------------------------------------------------------------------------------- /internal/gen/jsonschema/buf.protoschema.test.v1.IgnoreField.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/gen/jsonschema/buf.protoschema.test.v1.IgnoreField.schema.json -------------------------------------------------------------------------------- /internal/gen/jsonschema/buf.protoschema.test.v1.NestedReference.jsonschema.strict.bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/gen/jsonschema/buf.protoschema.test.v1.NestedReference.jsonschema.strict.bundle.json -------------------------------------------------------------------------------- /internal/gen/jsonschema/buf.protoschema.test.v1.NestedReference.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/gen/jsonschema/buf.protoschema.test.v1.NestedReference.schema.json -------------------------------------------------------------------------------- /internal/gen/jsonschema/buf.protoschema.test.v1.Product.Location.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/gen/jsonschema/buf.protoschema.test.v1.Product.Location.schema.json -------------------------------------------------------------------------------- /internal/gen/jsonschema/buf.protoschema.test.v1.Product.jsonschema.strict.bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/gen/jsonschema/buf.protoschema.test.v1.Product.jsonschema.strict.bundle.json -------------------------------------------------------------------------------- /internal/gen/jsonschema/buf.protoschema.test.v1.Product.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/gen/jsonschema/buf.protoschema.test.v1.Product.schema.json -------------------------------------------------------------------------------- /internal/gen/jsonschema/bufext.cel.expr.conformance.proto3.NestedTestAllTypes.jsonschema.strict.bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/gen/jsonschema/bufext.cel.expr.conformance.proto3.NestedTestAllTypes.jsonschema.strict.bundle.json -------------------------------------------------------------------------------- /internal/gen/jsonschema/bufext.cel.expr.conformance.proto3.NestedTestAllTypes.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/gen/jsonschema/bufext.cel.expr.conformance.proto3.NestedTestAllTypes.schema.json -------------------------------------------------------------------------------- /internal/gen/jsonschema/bufext.cel.expr.conformance.proto3.TestAllTypes.NestedMessage.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/gen/jsonschema/bufext.cel.expr.conformance.proto3.TestAllTypes.NestedMessage.schema.json -------------------------------------------------------------------------------- /internal/gen/jsonschema/bufext.cel.expr.conformance.proto3.TestAllTypes.jsonschema.strict.bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/gen/jsonschema/bufext.cel.expr.conformance.proto3.TestAllTypes.jsonschema.strict.bundle.json -------------------------------------------------------------------------------- /internal/gen/jsonschema/bufext.cel.expr.conformance.proto3.TestAllTypes.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/gen/jsonschema/bufext.cel.expr.conformance.proto3.TestAllTypes.schema.json -------------------------------------------------------------------------------- /internal/gen/jsonschema/google.protobuf.Any.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/gen/jsonschema/google.protobuf.Any.schema.json -------------------------------------------------------------------------------- /internal/gen/jsonschema/google.protobuf.BoolValue.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/gen/jsonschema/google.protobuf.BoolValue.schema.json -------------------------------------------------------------------------------- /internal/gen/jsonschema/google.protobuf.BytesValue.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/gen/jsonschema/google.protobuf.BytesValue.schema.json -------------------------------------------------------------------------------- /internal/gen/jsonschema/google.protobuf.DoubleValue.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/gen/jsonschema/google.protobuf.DoubleValue.schema.json -------------------------------------------------------------------------------- /internal/gen/jsonschema/google.protobuf.Duration.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/gen/jsonschema/google.protobuf.Duration.schema.json -------------------------------------------------------------------------------- /internal/gen/jsonschema/google.protobuf.FloatValue.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/gen/jsonschema/google.protobuf.FloatValue.schema.json -------------------------------------------------------------------------------- /internal/gen/jsonschema/google.protobuf.Int32Value.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/gen/jsonschema/google.protobuf.Int32Value.schema.json -------------------------------------------------------------------------------- /internal/gen/jsonschema/google.protobuf.Int64Value.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/gen/jsonschema/google.protobuf.Int64Value.schema.json -------------------------------------------------------------------------------- /internal/gen/jsonschema/google.protobuf.ListValue.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/gen/jsonschema/google.protobuf.ListValue.schema.json -------------------------------------------------------------------------------- /internal/gen/jsonschema/google.protobuf.StringValue.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/gen/jsonschema/google.protobuf.StringValue.schema.json -------------------------------------------------------------------------------- /internal/gen/jsonschema/google.protobuf.Struct.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/gen/jsonschema/google.protobuf.Struct.schema.json -------------------------------------------------------------------------------- /internal/gen/jsonschema/google.protobuf.Timestamp.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/gen/jsonschema/google.protobuf.Timestamp.schema.json -------------------------------------------------------------------------------- /internal/gen/jsonschema/google.protobuf.UInt32Value.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/gen/jsonschema/google.protobuf.UInt32Value.schema.json -------------------------------------------------------------------------------- /internal/gen/jsonschema/google.protobuf.UInt64Value.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/gen/jsonschema/google.protobuf.UInt64Value.schema.json -------------------------------------------------------------------------------- /internal/gen/jsonschema/google.protobuf.Value.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/gen/jsonschema/google.protobuf.Value.schema.json -------------------------------------------------------------------------------- /internal/gen/proto/buf/protoschema/test/v1/constraints.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/gen/proto/buf/protoschema/test/v1/constraints.pb.go -------------------------------------------------------------------------------- /internal/gen/proto/buf/protoschema/test/v1/examples.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/gen/proto/buf/protoschema/test/v1/examples.pb.go -------------------------------------------------------------------------------- /internal/gen/proto/buf/protoschema/test/v1/test_cases.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/gen/proto/buf/protoschema/test/v1/test_cases.pb.go -------------------------------------------------------------------------------- /internal/gen/proto/bufext/cel/expr/conformance/proto3/test_all_types.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/gen/proto/bufext/cel/expr/conformance/proto3/test_all_types.pb.go -------------------------------------------------------------------------------- /internal/proto/buf/protoschema/test/v1/constraints.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/proto/buf/protoschema/test/v1/constraints.proto -------------------------------------------------------------------------------- /internal/proto/buf/protoschema/test/v1/examples.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/proto/buf/protoschema/test/v1/examples.proto -------------------------------------------------------------------------------- /internal/proto/buf/protoschema/test/v1/test_cases.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/proto/buf/protoschema/test/v1/test_cases.proto -------------------------------------------------------------------------------- /internal/proto/bufext/cel/expr/conformance/proto3/test_all_types.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/proto/bufext/cel/expr/conformance/proto3/test_all_types.proto -------------------------------------------------------------------------------- /internal/protoschema/golden/golden.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/protoschema/golden/golden.go -------------------------------------------------------------------------------- /internal/protoschema/jsonschema/jsonschema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/protoschema/jsonschema/jsonschema.go -------------------------------------------------------------------------------- /internal/protoschema/jsonschema/jsonschema_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/protoschema/jsonschema/jsonschema_test.go -------------------------------------------------------------------------------- /internal/protoschema/normalize/normalizer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/protoschema/normalize/normalizer.go -------------------------------------------------------------------------------- /internal/protoschema/normalize/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/protoschema/normalize/options.go -------------------------------------------------------------------------------- /internal/protoschema/plugin/pluginjsonschema/pluginjsonschema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/protoschema/plugin/pluginjsonschema/pluginjsonschema.go -------------------------------------------------------------------------------- /internal/protoschema/plugin/pluginjsonschema/pluginjsonschema_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/protoschema/plugin/pluginjsonschema/pluginjsonschema_test.go -------------------------------------------------------------------------------- /internal/protoschema/plugin/pluginpubsub/pluginpubsub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/protoschema/plugin/pluginpubsub/pluginpubsub.go -------------------------------------------------------------------------------- /internal/protoschema/plugin/pluginpubsub/pluginpubsub_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/protoschema/plugin/pluginpubsub/pluginpubsub_test.go -------------------------------------------------------------------------------- /internal/protoschema/protoschema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/protoschema/protoschema.go -------------------------------------------------------------------------------- /internal/protoschema/pubsub/pubsub.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/protoschema/pubsub/pubsub.go -------------------------------------------------------------------------------- /internal/protoschema/pubsub/pubsub_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/protoschema/pubsub/pubsub_test.go -------------------------------------------------------------------------------- /internal/testdata/codegenrequest/image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/codegenrequest/image.json -------------------------------------------------------------------------------- /internal/testdata/codegenrequest/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/codegenrequest/input.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema-doc/test.ConstraintTests.bundle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema-doc/test.ConstraintTests.bundle.txt -------------------------------------------------------------------------------- /internal/testdata/jsonschema-doc/test.ConstraintTests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema-doc/test.ConstraintTests.txt -------------------------------------------------------------------------------- /internal/testdata/jsonschema-doc/test.ConstraintTests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema-doc/test.ConstraintTests.yaml -------------------------------------------------------------------------------- /internal/testdata/jsonschema-doc/test.TestAllTypes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema-doc/test.TestAllTypes.yaml -------------------------------------------------------------------------------- /internal/testdata/jsonschema/buf.protoschema.test.v1.ConstraintTest.RequiredImplicit.jsonschema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/buf.protoschema.test.v1.ConstraintTest.RequiredImplicit.jsonschema.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/buf.protoschema.test.v1.ConstraintTest.RequiredImplicit.jsonschema.strict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/buf.protoschema.test.v1.ConstraintTest.RequiredImplicit.jsonschema.strict.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/buf.protoschema.test.v1.ConstraintTest.RequiredImplicit.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/buf.protoschema.test.v1.ConstraintTest.RequiredImplicit.schema.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/buf.protoschema.test.v1.ConstraintTest.RequiredImplicit.schema.strict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/buf.protoschema.test.v1.ConstraintTest.RequiredImplicit.schema.strict.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/buf.protoschema.test.v1.ConstraintTest.RequiredOptional.jsonschema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/buf.protoschema.test.v1.ConstraintTest.RequiredOptional.jsonschema.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/buf.protoschema.test.v1.ConstraintTest.RequiredOptional.jsonschema.strict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/buf.protoschema.test.v1.ConstraintTest.RequiredOptional.jsonschema.strict.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/buf.protoschema.test.v1.ConstraintTest.RequiredOptional.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/buf.protoschema.test.v1.ConstraintTest.RequiredOptional.schema.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/buf.protoschema.test.v1.ConstraintTest.RequiredOptional.schema.strict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/buf.protoschema.test.v1.ConstraintTest.RequiredOptional.schema.strict.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/buf.protoschema.test.v1.ConstraintTest.jsonschema.bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/buf.protoschema.test.v1.ConstraintTest.jsonschema.bundle.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/buf.protoschema.test.v1.ConstraintTest.jsonschema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/buf.protoschema.test.v1.ConstraintTest.jsonschema.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/buf.protoschema.test.v1.ConstraintTest.jsonschema.strict.bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/buf.protoschema.test.v1.ConstraintTest.jsonschema.strict.bundle.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/buf.protoschema.test.v1.ConstraintTest.jsonschema.strict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/buf.protoschema.test.v1.ConstraintTest.jsonschema.strict.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/buf.protoschema.test.v1.ConstraintTest.schema.bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/buf.protoschema.test.v1.ConstraintTest.schema.bundle.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/buf.protoschema.test.v1.ConstraintTest.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/buf.protoschema.test.v1.ConstraintTest.schema.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/buf.protoschema.test.v1.ConstraintTest.schema.strict.bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/buf.protoschema.test.v1.ConstraintTest.schema.strict.bundle.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/buf.protoschema.test.v1.ConstraintTest.schema.strict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/buf.protoschema.test.v1.ConstraintTest.schema.strict.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/buf.protoschema.test.v1.ConstraintTests.jsonschema.bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/buf.protoschema.test.v1.ConstraintTests.jsonschema.bundle.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/buf.protoschema.test.v1.ConstraintTests.jsonschema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/buf.protoschema.test.v1.ConstraintTests.jsonschema.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/buf.protoschema.test.v1.ConstraintTests.jsonschema.strict.bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/buf.protoschema.test.v1.ConstraintTests.jsonschema.strict.bundle.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/buf.protoschema.test.v1.ConstraintTests.jsonschema.strict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/buf.protoschema.test.v1.ConstraintTests.jsonschema.strict.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/buf.protoschema.test.v1.ConstraintTests.schema.bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/buf.protoschema.test.v1.ConstraintTests.schema.bundle.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/buf.protoschema.test.v1.ConstraintTests.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/buf.protoschema.test.v1.ConstraintTests.schema.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/buf.protoschema.test.v1.ConstraintTests.schema.strict.bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/buf.protoschema.test.v1.ConstraintTests.schema.strict.bundle.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/buf.protoschema.test.v1.ConstraintTests.schema.strict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/buf.protoschema.test.v1.ConstraintTests.schema.strict.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/buf.protoschema.test.v1.CustomOptions.jsonschema.bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/buf.protoschema.test.v1.CustomOptions.jsonschema.bundle.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/buf.protoschema.test.v1.CustomOptions.jsonschema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/buf.protoschema.test.v1.CustomOptions.jsonschema.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/buf.protoschema.test.v1.CustomOptions.jsonschema.strict.bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/buf.protoschema.test.v1.CustomOptions.jsonschema.strict.bundle.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/buf.protoschema.test.v1.CustomOptions.jsonschema.strict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/buf.protoschema.test.v1.CustomOptions.jsonschema.strict.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/buf.protoschema.test.v1.CustomOptions.schema.bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/buf.protoschema.test.v1.CustomOptions.schema.bundle.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/buf.protoschema.test.v1.CustomOptions.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/buf.protoschema.test.v1.CustomOptions.schema.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/buf.protoschema.test.v1.CustomOptions.schema.strict.bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/buf.protoschema.test.v1.CustomOptions.schema.strict.bundle.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/buf.protoschema.test.v1.CustomOptions.schema.strict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/buf.protoschema.test.v1.CustomOptions.schema.strict.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/buf.protoschema.test.v1.IgnoreField.jsonschema.bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/buf.protoschema.test.v1.IgnoreField.jsonschema.bundle.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/buf.protoschema.test.v1.IgnoreField.jsonschema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/buf.protoschema.test.v1.IgnoreField.jsonschema.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/buf.protoschema.test.v1.IgnoreField.jsonschema.strict.bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/buf.protoschema.test.v1.IgnoreField.jsonschema.strict.bundle.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/buf.protoschema.test.v1.IgnoreField.jsonschema.strict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/buf.protoschema.test.v1.IgnoreField.jsonschema.strict.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/buf.protoschema.test.v1.IgnoreField.schema.bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/buf.protoschema.test.v1.IgnoreField.schema.bundle.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/buf.protoschema.test.v1.IgnoreField.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/buf.protoschema.test.v1.IgnoreField.schema.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/buf.protoschema.test.v1.IgnoreField.schema.strict.bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/buf.protoschema.test.v1.IgnoreField.schema.strict.bundle.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/buf.protoschema.test.v1.IgnoreField.schema.strict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/buf.protoschema.test.v1.IgnoreField.schema.strict.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/buf.protoschema.test.v1.NestedReference.jsonschema.bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/buf.protoschema.test.v1.NestedReference.jsonschema.bundle.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/buf.protoschema.test.v1.NestedReference.jsonschema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/buf.protoschema.test.v1.NestedReference.jsonschema.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/buf.protoschema.test.v1.NestedReference.jsonschema.strict.bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/buf.protoschema.test.v1.NestedReference.jsonschema.strict.bundle.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/buf.protoschema.test.v1.NestedReference.jsonschema.strict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/buf.protoschema.test.v1.NestedReference.jsonschema.strict.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/buf.protoschema.test.v1.NestedReference.schema.bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/buf.protoschema.test.v1.NestedReference.schema.bundle.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/buf.protoschema.test.v1.NestedReference.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/buf.protoschema.test.v1.NestedReference.schema.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/buf.protoschema.test.v1.NestedReference.schema.strict.bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/buf.protoschema.test.v1.NestedReference.schema.strict.bundle.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/buf.protoschema.test.v1.NestedReference.schema.strict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/buf.protoschema.test.v1.NestedReference.schema.strict.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/buf.protoschema.test.v1.Product.Location.jsonschema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/buf.protoschema.test.v1.Product.Location.jsonschema.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/buf.protoschema.test.v1.Product.Location.jsonschema.strict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/buf.protoschema.test.v1.Product.Location.jsonschema.strict.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/buf.protoschema.test.v1.Product.Location.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/buf.protoschema.test.v1.Product.Location.schema.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/buf.protoschema.test.v1.Product.Location.schema.strict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/buf.protoschema.test.v1.Product.Location.schema.strict.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/buf.protoschema.test.v1.Product.jsonschema.bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/buf.protoschema.test.v1.Product.jsonschema.bundle.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/buf.protoschema.test.v1.Product.jsonschema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/buf.protoschema.test.v1.Product.jsonschema.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/buf.protoschema.test.v1.Product.jsonschema.strict.bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/buf.protoschema.test.v1.Product.jsonschema.strict.bundle.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/buf.protoschema.test.v1.Product.jsonschema.strict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/buf.protoschema.test.v1.Product.jsonschema.strict.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/buf.protoschema.test.v1.Product.schema.bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/buf.protoschema.test.v1.Product.schema.bundle.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/buf.protoschema.test.v1.Product.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/buf.protoschema.test.v1.Product.schema.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/buf.protoschema.test.v1.Product.schema.strict.bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/buf.protoschema.test.v1.Product.schema.strict.bundle.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/buf.protoschema.test.v1.Product.schema.strict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/buf.protoschema.test.v1.Product.schema.strict.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/bufext.cel.expr.conformance.proto3.NestedTestAllTypes.jsonschema.bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/bufext.cel.expr.conformance.proto3.NestedTestAllTypes.jsonschema.bundle.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/bufext.cel.expr.conformance.proto3.NestedTestAllTypes.jsonschema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/bufext.cel.expr.conformance.proto3.NestedTestAllTypes.jsonschema.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/bufext.cel.expr.conformance.proto3.NestedTestAllTypes.jsonschema.strict.bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/bufext.cel.expr.conformance.proto3.NestedTestAllTypes.jsonschema.strict.bundle.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/bufext.cel.expr.conformance.proto3.NestedTestAllTypes.jsonschema.strict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/bufext.cel.expr.conformance.proto3.NestedTestAllTypes.jsonschema.strict.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/bufext.cel.expr.conformance.proto3.NestedTestAllTypes.schema.bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/bufext.cel.expr.conformance.proto3.NestedTestAllTypes.schema.bundle.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/bufext.cel.expr.conformance.proto3.NestedTestAllTypes.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/bufext.cel.expr.conformance.proto3.NestedTestAllTypes.schema.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/bufext.cel.expr.conformance.proto3.NestedTestAllTypes.schema.strict.bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/bufext.cel.expr.conformance.proto3.NestedTestAllTypes.schema.strict.bundle.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/bufext.cel.expr.conformance.proto3.NestedTestAllTypes.schema.strict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/bufext.cel.expr.conformance.proto3.NestedTestAllTypes.schema.strict.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/bufext.cel.expr.conformance.proto3.TestAllTypes.NestedMessage.jsonschema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/bufext.cel.expr.conformance.proto3.TestAllTypes.NestedMessage.jsonschema.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/bufext.cel.expr.conformance.proto3.TestAllTypes.NestedMessage.jsonschema.strict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/bufext.cel.expr.conformance.proto3.TestAllTypes.NestedMessage.jsonschema.strict.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/bufext.cel.expr.conformance.proto3.TestAllTypes.NestedMessage.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/bufext.cel.expr.conformance.proto3.TestAllTypes.NestedMessage.schema.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/bufext.cel.expr.conformance.proto3.TestAllTypes.NestedMessage.schema.strict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/bufext.cel.expr.conformance.proto3.TestAllTypes.NestedMessage.schema.strict.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/bufext.cel.expr.conformance.proto3.TestAllTypes.jsonschema.bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/bufext.cel.expr.conformance.proto3.TestAllTypes.jsonschema.bundle.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/bufext.cel.expr.conformance.proto3.TestAllTypes.jsonschema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/bufext.cel.expr.conformance.proto3.TestAllTypes.jsonschema.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/bufext.cel.expr.conformance.proto3.TestAllTypes.jsonschema.strict.bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/bufext.cel.expr.conformance.proto3.TestAllTypes.jsonschema.strict.bundle.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/bufext.cel.expr.conformance.proto3.TestAllTypes.jsonschema.strict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/bufext.cel.expr.conformance.proto3.TestAllTypes.jsonschema.strict.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/bufext.cel.expr.conformance.proto3.TestAllTypes.schema.bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/bufext.cel.expr.conformance.proto3.TestAllTypes.schema.bundle.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/bufext.cel.expr.conformance.proto3.TestAllTypes.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/bufext.cel.expr.conformance.proto3.TestAllTypes.schema.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/bufext.cel.expr.conformance.proto3.TestAllTypes.schema.strict.bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/bufext.cel.expr.conformance.proto3.TestAllTypes.schema.strict.bundle.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/bufext.cel.expr.conformance.proto3.TestAllTypes.schema.strict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/bufext.cel.expr.conformance.proto3.TestAllTypes.schema.strict.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/google.protobuf.Any.jsonschema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/google.protobuf.Any.jsonschema.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/google.protobuf.Any.jsonschema.strict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/google.protobuf.Any.jsonschema.strict.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/google.protobuf.Any.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/google.protobuf.Any.schema.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/google.protobuf.Any.schema.strict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/google.protobuf.Any.schema.strict.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/google.protobuf.BoolValue.jsonschema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/google.protobuf.BoolValue.jsonschema.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/google.protobuf.BoolValue.jsonschema.strict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/google.protobuf.BoolValue.jsonschema.strict.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/google.protobuf.BoolValue.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/google.protobuf.BoolValue.schema.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/google.protobuf.BoolValue.schema.strict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/google.protobuf.BoolValue.schema.strict.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/google.protobuf.BytesValue.jsonschema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/google.protobuf.BytesValue.jsonschema.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/google.protobuf.BytesValue.jsonschema.strict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/google.protobuf.BytesValue.jsonschema.strict.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/google.protobuf.BytesValue.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/google.protobuf.BytesValue.schema.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/google.protobuf.BytesValue.schema.strict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/google.protobuf.BytesValue.schema.strict.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/google.protobuf.DoubleValue.jsonschema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/google.protobuf.DoubleValue.jsonschema.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/google.protobuf.DoubleValue.jsonschema.strict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/google.protobuf.DoubleValue.jsonschema.strict.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/google.protobuf.DoubleValue.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/google.protobuf.DoubleValue.schema.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/google.protobuf.DoubleValue.schema.strict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/google.protobuf.DoubleValue.schema.strict.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/google.protobuf.Duration.jsonschema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/google.protobuf.Duration.jsonschema.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/google.protobuf.Duration.jsonschema.strict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/google.protobuf.Duration.jsonschema.strict.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/google.protobuf.Duration.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/google.protobuf.Duration.schema.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/google.protobuf.Duration.schema.strict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/google.protobuf.Duration.schema.strict.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/google.protobuf.FloatValue.jsonschema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/google.protobuf.FloatValue.jsonschema.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/google.protobuf.FloatValue.jsonschema.strict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/google.protobuf.FloatValue.jsonschema.strict.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/google.protobuf.FloatValue.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/google.protobuf.FloatValue.schema.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/google.protobuf.FloatValue.schema.strict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/google.protobuf.FloatValue.schema.strict.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/google.protobuf.Int32Value.jsonschema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/google.protobuf.Int32Value.jsonschema.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/google.protobuf.Int32Value.jsonschema.strict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/google.protobuf.Int32Value.jsonschema.strict.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/google.protobuf.Int32Value.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/google.protobuf.Int32Value.schema.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/google.protobuf.Int32Value.schema.strict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/google.protobuf.Int32Value.schema.strict.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/google.protobuf.Int64Value.jsonschema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/google.protobuf.Int64Value.jsonschema.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/google.protobuf.Int64Value.jsonschema.strict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/google.protobuf.Int64Value.jsonschema.strict.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/google.protobuf.Int64Value.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/google.protobuf.Int64Value.schema.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/google.protobuf.Int64Value.schema.strict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/google.protobuf.Int64Value.schema.strict.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/google.protobuf.ListValue.jsonschema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/google.protobuf.ListValue.jsonschema.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/google.protobuf.ListValue.jsonschema.strict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/google.protobuf.ListValue.jsonschema.strict.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/google.protobuf.ListValue.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/google.protobuf.ListValue.schema.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/google.protobuf.ListValue.schema.strict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/google.protobuf.ListValue.schema.strict.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/google.protobuf.StringValue.jsonschema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/google.protobuf.StringValue.jsonschema.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/google.protobuf.StringValue.jsonschema.strict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/google.protobuf.StringValue.jsonschema.strict.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/google.protobuf.StringValue.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/google.protobuf.StringValue.schema.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/google.protobuf.StringValue.schema.strict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/google.protobuf.StringValue.schema.strict.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/google.protobuf.Struct.jsonschema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/google.protobuf.Struct.jsonschema.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/google.protobuf.Struct.jsonschema.strict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/google.protobuf.Struct.jsonschema.strict.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/google.protobuf.Struct.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/google.protobuf.Struct.schema.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/google.protobuf.Struct.schema.strict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/google.protobuf.Struct.schema.strict.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/google.protobuf.Timestamp.jsonschema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/google.protobuf.Timestamp.jsonschema.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/google.protobuf.Timestamp.jsonschema.strict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/google.protobuf.Timestamp.jsonschema.strict.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/google.protobuf.Timestamp.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/google.protobuf.Timestamp.schema.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/google.protobuf.Timestamp.schema.strict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/google.protobuf.Timestamp.schema.strict.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/google.protobuf.UInt32Value.jsonschema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/google.protobuf.UInt32Value.jsonschema.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/google.protobuf.UInt32Value.jsonschema.strict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/google.protobuf.UInt32Value.jsonschema.strict.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/google.protobuf.UInt32Value.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/google.protobuf.UInt32Value.schema.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/google.protobuf.UInt32Value.schema.strict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/google.protobuf.UInt32Value.schema.strict.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/google.protobuf.UInt64Value.jsonschema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/google.protobuf.UInt64Value.jsonschema.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/google.protobuf.UInt64Value.jsonschema.strict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/google.protobuf.UInt64Value.jsonschema.strict.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/google.protobuf.UInt64Value.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/google.protobuf.UInt64Value.schema.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/google.protobuf.UInt64Value.schema.strict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/google.protobuf.UInt64Value.schema.strict.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/google.protobuf.Value.jsonschema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/google.protobuf.Value.jsonschema.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/google.protobuf.Value.jsonschema.strict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/google.protobuf.Value.jsonschema.strict.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/google.protobuf.Value.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/google.protobuf.Value.schema.json -------------------------------------------------------------------------------- /internal/testdata/jsonschema/google.protobuf.Value.schema.strict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/jsonschema/google.protobuf.Value.schema.strict.json -------------------------------------------------------------------------------- /internal/testdata/pubsub/buf.protoschema.test.v1.ConstraintTest.pubsub.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/pubsub/buf.protoschema.test.v1.ConstraintTest.pubsub.proto -------------------------------------------------------------------------------- /internal/testdata/pubsub/buf.protoschema.test.v1.ConstraintTests.pubsub.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/pubsub/buf.protoschema.test.v1.ConstraintTests.pubsub.proto -------------------------------------------------------------------------------- /internal/testdata/pubsub/buf.protoschema.test.v1.CustomOptions.pubsub.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/pubsub/buf.protoschema.test.v1.CustomOptions.pubsub.proto -------------------------------------------------------------------------------- /internal/testdata/pubsub/buf.protoschema.test.v1.IgnoreField.pubsub.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/pubsub/buf.protoschema.test.v1.IgnoreField.pubsub.proto -------------------------------------------------------------------------------- /internal/testdata/pubsub/buf.protoschema.test.v1.NestedReference.pubsub.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/pubsub/buf.protoschema.test.v1.NestedReference.pubsub.proto -------------------------------------------------------------------------------- /internal/testdata/pubsub/buf.protoschema.test.v1.Product.pubsub.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/pubsub/buf.protoschema.test.v1.Product.pubsub.proto -------------------------------------------------------------------------------- /internal/testdata/pubsub/bufext.cel.expr.conformance.proto3.NestedTestAllTypes.pubsub.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/pubsub/bufext.cel.expr.conformance.proto3.NestedTestAllTypes.pubsub.proto -------------------------------------------------------------------------------- /internal/testdata/pubsub/bufext.cel.expr.conformance.proto3.TestAllTypes.pubsub.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufbuild/protoschema-plugins/HEAD/internal/testdata/pubsub/bufext.cel.expr.conformance.proto3.TestAllTypes.pubsub.proto --------------------------------------------------------------------------------