| 1234567891011121314151617181920212223242526 |
- {
- "$schema": "http://json-schema.org/draft-07/schema#",
- "type": "object",
- "additionalProperties": false,
- "properties": {
- "ARCHIVEDOTORG_ENABLED": {
- "type": "boolean",
- "default": true,
- "x-aliases": ["SAVE_ARCHIVEDOTORG", "USE_ARCHIVEDOTORG", "SUBMIT_ARCHIVEDOTORG"],
- "description": "Submit URLs to archive.org Wayback Machine"
- },
- "ARCHIVEDOTORG_TIMEOUT": {
- "type": "integer",
- "default": 60,
- "minimum": 10,
- "x-fallback": "TIMEOUT",
- "description": "Timeout for archive.org submission in seconds"
- },
- "ARCHIVEDOTORG_USER_AGENT": {
- "type": "string",
- "default": "",
- "x-fallback": "USER_AGENT",
- "description": "User agent string"
- }
- }
- }
|