{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/GithubStorePublishingSecretsRequest", "title": "GithubStorePublishingSecretsRequest", "description": "A request to store publishing secrets for a github target", "type": "object", "properties": { "generate_gen_lock_id": { "type": "string", "description": "The generation lock ID" }, "secrets": { "type": "object", "description": "A map of secrets to store in the GitHub target", "additionalProperties": { "type": "string" } } }, "required": [ "generate_gen_lock_id" ] }