{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/organization-actions-variable", "title": "Actions Variable for an Organization", "description": "Organization variable for GitHub Actions.", "type": "object", "properties": { "name": { "description": "The name of the variable.", "example": "USERNAME", "type": "string" }, "value": { "description": "The value of the variable.", "example": "octocat", "type": "string" }, "created_at": { "description": "The date and time at which the variable was created, in ISO 8601 format':' YYYY-MM-DDTHH:MM:SSZ.", "example": "2019-01-24T22:45:36.000Z", "type": "string", "format": "date-time" }, "updated_at": { "description": "The date and time at which the variable was last updated, in ISO 8601 format':' YYYY-MM-DDTHH:MM:SSZ.", "example": "2019-01-24T22:45:36.000Z", "type": "string", "format": "date-time" }, "visibility": { "description": "Visibility of a variable", "enum": [ "all", "private", "selected" ], "type": "string" }, "selected_repositories_url": { "type": "string", "format": "uri", "example": "https://api.github.com/organizations/org/variables/USERNAME/repositories" } }, "required": [ "name", "value", "created_at", "updated_at", "visibility" ] }