{
"id": "dev.ocbwoy3.dotsyncd.config",
"defs": {
"main": {
"key": "any",
"type": "record",
"record": {
"type": "object",
"required": [
"name",
"config",
"createdAt",
"updatedAt",
"dependencies"
],
"properties": {
"name": {
"type": "string",
"maxLength": 100,
"minLength": 1,
"description": "The name of the config (e.g. Main)"
},
"config": {
"ref": "#config",
"type": "ref",
"description": "The configuration details"
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "The date and time when the config was created"
},
"updatedAt": {
"type": "string",
"format": "datetime",
"description": "The date and time when the config was last updated"
},
"description": {
"type": "string",
"maxLength": 2000,
"description": "The description for config"
},
"dependencies": {
"ref": "#dependencies",
"type": "ref",
"description": "Dependencies required for this config"
}
}
}
},
"config": {
"type": "object",
"required": [],
"properties": {},
"description": "Describes custom configuration for your rice. You must implement your own settings JSON schema."
},
"dependencies": {
"type": "array",
"items": {
"refs": [
"dev.ocbwoy3.dotsyncd.refsDependency#hyprland",
"dev.ocbwoy3.dotsyncd.refsDependency#tangledRepo",
"dev.ocbwoy3.dotsyncd.refsDependency#distro"
],
"type": "union"
},
"description": "All dependencies for the configuration"
}
},
"$type": "com.atproto.lexicon.schema",
"lexicon": 1,
"description": "This record defines a configuration used by dotsyncd"
}