Payload schema
projectIdstring | null
pathstring
Raw JSON schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"projectId": {
"anyOf": [
{
"type": "string",
"minLength": 1
},
{
"type": "null"
}
]
},
"path": {
"type": "string",
"minLength": 1
}
},
"required": [
"projectId",
"path"
]
}