@payloadcms/plugin-redirects
Version:
Redirects plugin for Payload
44 lines (43 loc) • 886 B
JSON
{
"type": "object",
"$schema": "http://json-schema.org/draft-04/schema#",
"additionalProperties": false,
"properties": {
"$schema": {
"type": "string"
},
"plugin-redirects": {
"type": "object",
"additionalProperties": false,
"properties": {
"fromUrl": {
"type": "string"
},
"toUrlType": {
"type": "string"
},
"internalLink": {
"type": "string"
},
"customUrl": {
"type": "string"
},
"documentToRedirect": {
"type": "string"
},
"redirectType": {
"type": "string"
}
},
"required": [
"fromUrl",
"toUrlType",
"internalLink",
"customUrl",
"documentToRedirect",
"redirectType"
]
}
},
"required": ["plugin-redirects"]
}