posh-providers/goharbor/harbor/config.schema.json
Kevin Franklin Kim 4588a19b45
feat: add schema
2025-04-04 16:44:08 +02:00

27 lines
550 B
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://github.com/foomo/posh-providers/goharbor/harbor/config",
"$ref": "#/$defs/Config",
"$defs": {
"Config": {
"properties": {
"url": {
"type": "string"
},
"authUrl": {
"type": "string"
},
"project": {
"type": "string"
}
},
"additionalProperties": false,
"type": "object",
"required": [
"url",
"authUrl",
"project"
]
}
}
}