-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.schema.json
1 lines (1 loc) · 1.32 KB
/
config.schema.json
1
{"$schema":"http://json-schema.org/draft-04/schema#","properties":{"gitlab":{"items":{"$schema":"http://json-schema.org/draft-04/schema#","$ref":"#/definitions/DiscoveryConfig"},"type":"array"},"git":{"items":{"$schema":"http://json-schema.org/draft-04/schema#","$ref":"#/definitions/GitSourcesRootConfig"},"type":"array"},"directory":{"items":{"$schema":"http://json-schema.org/draft-04/schema#","$ref":"#/definitions/RawSourcesRootConfig"},"type":"array"}},"additionalProperties":false,"type":"object","definitions":{"DiscoveryConfig":{"properties":{"url":{"type":"string"},"token":{"type":"string"},"tokenEnvVar":{"type":"string"},"includeArchived":{"type":"boolean"},"httpsUrl":{"type":"boolean"},"fastForward":{"type":"boolean"},"include":{"items":{"type":"string"},"type":"array"},"exclude":{"items":{"type":"string"},"type":"array"}},"additionalProperties":false,"type":"object","oneOf":[{"required":["token"],"title":"token"},{"required":["tokenEnvVar"],"title":"tokenEnvVar"}]},"GitSourcesRootConfig":{"required":["url"],"properties":{"url":{"type":"string"},"fastForward":{"type":"boolean"},"remotes":{"patternProperties":{".*":{"type":"string"}},"type":"object"}},"additionalProperties":false,"type":"object"},"RawSourcesRootConfig":{"required":["path"],"properties":{"path":{"type":"string"}},"additionalProperties":false,"type":"object"}}}