Skip to content

Commit

Permalink
fix: reference links (#670)
Browse files Browse the repository at this point in the history
  • Loading branch information
trace2798 authored Jan 2, 2025
1 parent 22f084e commit 9f9690e
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions lib/manifest/modus_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -143,15 +143,15 @@
"minLength": 1,
"pattern": "^https?://\\S+/$",
"description": "Base URL for connections to the connection. Must end with a trailing slash. If providing the entire URL, use the endpoint field instead.",
"markdownDescription": "Base URL for connections to the connection. Must end with a trailing slash. If providing the entire URL, use the `endpoint` field instead.\n\nReference: https://docs.hypermode.com/define-connections"
"markdownDescription": "Base URL for connections to the connection. Must end with a trailing slash. If providing the entire URL, use the `endpoint` field instead.\n\nReference: https://docs.hypermode.com/modus/app-manifest#http-connection"
},
"endpoint": {
"type": "string",
"format": "uri",
"minLength": 1,
"pattern": "^https?://\\S+$",
"description": "Full URL endpoint for connections to the connection. If providing the base URL, use the baseUrl field instead.",
"markdownDescription": "Full URL endpoint for connections to the connection. If providing the base URL, use the `baseUrl` field instead.\n\nReference: https://docs.hypermode.com/define-connections"
"markdownDescription": "Full URL endpoint for connections to the connection. If providing the base URL, use the `baseUrl` field instead.\n\nReference: https://docs.hypermode.com/modus/app-manifest#http-connection"
},
"headers": {
"type": "object",
Expand All @@ -165,7 +165,7 @@
"minLength": 1
},
"description": "Headers to include in requests to the connection.",
"markdownDescription": "Headers to include in requests to the connection.\n\nReference: https://docs.hypermode.com/define-connections"
"markdownDescription": "Headers to include in requests to the connection.\n\nReference: https://docs.hypermode.com/modus/app-manifest#http-connection"
},
"queryParameters": {
"type": "object",
Expand All @@ -179,7 +179,7 @@
"minLength": 1
},
"description": "Query parameters to include in requests to the connection.",
"markdownDescription": "Query parameters to include in requests to the connection.\n\nReference: https://docs.hypermode.com/define-connections"
"markdownDescription": "Query parameters to include in requests to the connection.\n\nReference: https://docs.hypermode.com/modus/app-manifest#http-connection"
}
},
"required": ["type"],
Expand Down Expand Up @@ -213,7 +213,7 @@
"minLength": 1,
"pattern": "^postgres(?:ql)?:\\/\\/(.*?@)?([0-9a-zA-Z.-]*?)(:\\d+)?(\\/[0-9a-zA-Z.-]+)?(\\?.+)?$",
"description": "The PostgreSQL connection string in URI format.",
"markdownDescription": "The PostgreSQL connection string in URI format.\n\nReference: https://docs.hypermode.com/define-connections"
"markdownDescription": "The PostgreSQL connection string in URI format.\n\nReference: https://docs.hypermode.com/modus/app-manifest#postgresql-connection"
}
},
"required": ["type", "connString"],
Expand All @@ -231,13 +231,13 @@
"minLength": 1,
"pattern": "^[a-zA-Z0-9]+(?:-[a-zA-Z0-9.]+)*:\\d+$",
"description": "The gRPC target for connections to Dgraph, such as \"localhost:9080\" or \"your-server-1234567.grpc.us-east-1.aws.cloud.dgraph.io:443\".",
"markdownDescription": "The gRPC target for connections to Dgraph, such as \"localhost:9080\" or \"your-server-1234567.grpc.us-east-1.aws.cloud.dgraph.io:443\".\n\nReference: https://docs.hypermode.com/define-connections"
"markdownDescription": "The gRPC target for connections to Dgraph, such as \"localhost:9080\" or \"your-server-1234567.grpc.us-east-1.aws.cloud.dgraph.io:443\".\n\nReference: https://docs.hypermode.com/modus/app-manifest#dgraph-connection"
},
"key": {
"type": "string",
"minLength": 1,
"description": "API key for Dgraph.",
"markdownDescription": "API key for Dgraph.\n\nReference: https://docs.hypermode.com/define-connections"
"markdownDescription": "API key for Dgraph.\n\nReference: https://docs.hypermode.com/modus/app-manifest#dgraph-connection"
}
},
"required": ["type", "grpcTarget"],
Expand All @@ -255,19 +255,19 @@
"minLength": 1,
"pattern": "^(?:neo4j|neo4j\\+s|bolt)://(.*?@)?([0-9a-zA-Z.-]*?)(:\\d+)?(\\/[0-9a-zA-Z.-]+)?(\\?.+)?$",
"description": "The Neo4j connection string in URI format.",
"markdownDescription": "The Neo4j connection string in URI format.\n\nReference: https://docs.hypermode.com/define-connections"
"markdownDescription": "The Neo4j connection string in URI format.\n\nReference: https://docs.hypermode.com/modus/app-manifest#neo4j-connection"
},
"username": {
"type": "string",
"minLength": 1,
"description": "Username for the Neo4j connection.",
"markdownDescription": "Username for the Neo4j connection.\n\nReference: https://docs.hypermode.com/define-connections"
"markdownDescription": "Username for the Neo4j connection.\n\nReference: https://docs.hypermode.com/modus/app-manifest#neo4j-connection"
},
"password": {
"type": "string",
"minLength": 1,
"description": "Password for the Neo4j connection.",
"markdownDescription": "Password for the Neo4j connection.\n\nReference: https://docs.hypermode.com/define-connections"
"markdownDescription": "Password for the Neo4j connection.\n\nReference: https://docs.hypermode.com/modus/app-manifest#neo4j-connection"
}
},
"required": ["type", "dbUri", "username", "password"],
Expand Down

0 comments on commit 9f9690e

Please sign in to comment.