Skip to content

Commit

Permalink
rename jsonschema to json, remove aurora mutations
Browse files Browse the repository at this point in the history
  • Loading branch information
Gil Mizrahi committed Mar 12, 2024
1 parent 309f26c commit ffb9052
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion crates/configuration/src/configuration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ use crate::values::{ConnectionUri, IsolationLevel, PoolSettings, Secret};
use crate::version3;

pub const CONFIGURATION_FILENAME: &str = "configuration.json";
pub const CONFIGURATION_JSONSCHEMA_FILENAME: &str = "schema.jsonschema";
pub const CONFIGURATION_JSONSCHEMA_FILENAME: &str = "schema.json";

/// The parsed connector configuration.
#[derive(Clone, Debug, Deserialize, Serialize, JsonSchema)]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ source: crates/tests/databases-tests/src/postgres/configuration_tests.rs
expression: default_configuration
---
{
"$schema": "schema.jsonschema",
"$schema": "schema.json",
"connectionSettings": {
"connectionUri": {
"variable": "MAGIC_URI"
Expand Down
4 changes: 2 additions & 2 deletions static/aurora/v3-chinook-ndc-metadata/configuration.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"version": "3",
"$schema": "../../schema.jsonschema",
"$schema": "../../schema.json",
"connectionSettings": {
"connectionUri": {
"variable": "CONNECTION_URI"
Expand Down Expand Up @@ -2816,7 +2816,7 @@
"operatorKind": "custom"
}
],
"mutationsVersion": "v1",
"mutationsVersion": null,
"introspectPrefixFunctionComparisonOperators": [
"box_above",
"box_below",
Expand Down
2 changes: 1 addition & 1 deletion static/citus/v3-chinook-ndc-metadata/configuration.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"version": "3",
"$schema": "../../schema.jsonschema",
"$schema": "../../schema.json",
"connectionSettings": {
"connectionUri": {
"variable": "CONNECTION_URI"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"version": "3",
"$schema": "../../schema.jsonschema",
"$schema": "../../schema.json",
"connectionSettings": {
"connectionUri": {
"variable": "CONNECTION_URI"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"version": "3",
"$schema": "../../schema.jsonschema",
"$schema": "../../schema.json",
"connectionSettings": {
"connectionUri": {
"variable": "CONNECTION_URI"
Expand Down
2 changes: 1 addition & 1 deletion static/postgres/v3-chinook-ndc-metadata/configuration.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"version": "3",
"$schema": "../../schema.jsonschema",
"$schema": "../../schema.json",
"connectionSettings": {
"connectionUri": {
"variable": "CONNECTION_URI"
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion static/yugabyte/v3-chinook-ndc-metadata/configuration.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"version": "3",
"$schema": "../../schema.jsonschema",
"$schema": "../../schema.json",
"connectionSettings": {
"connectionUri": {
"variable": "CONNECTION_URI"
Expand Down

0 comments on commit ffb9052

Please sign in to comment.