Skip to content

Commit 68c9c05

Browse files
authored
Merge pull request #1633 from jlowin/marvin/update-config-schema
2 parents ddf691c + 25e4753 commit 68c9c05

File tree

2 files changed

+24
-8
lines changed

2 files changed

+24
-8
lines changed

docs/public/schemas/fastmcp.json/latest.json

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -243,17 +243,25 @@
243243
"editable": {
244244
"anyOf": [
245245
{
246-
"type": "string"
246+
"items": {
247+
"type": "string"
248+
},
249+
"type": "array"
247250
},
248251
{
249252
"type": "null"
250253
}
251254
],
252255
"default": null,
253-
"description": "Directory to install in editable mode",
256+
"description": "Directories to install in editable mode",
254257
"examples": [
255-
".",
256-
"../my-package"
258+
[
259+
".",
260+
"../my-package"
261+
],
262+
[
263+
"/path/to/package"
264+
]
257265
],
258266
"title": "Editable"
259267
}

docs/public/schemas/fastmcp.json/v1.json

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -243,17 +243,25 @@
243243
"editable": {
244244
"anyOf": [
245245
{
246-
"type": "string"
246+
"items": {
247+
"type": "string"
248+
},
249+
"type": "array"
247250
},
248251
{
249252
"type": "null"
250253
}
251254
],
252255
"default": null,
253-
"description": "Directory to install in editable mode",
256+
"description": "Directories to install in editable mode",
254257
"examples": [
255-
".",
256-
"../my-package"
258+
[
259+
".",
260+
"../my-package"
261+
],
262+
[
263+
"/path/to/package"
264+
]
257265
],
258266
"title": "Editable"
259267
}

0 commit comments

Comments
 (0)