Actions Variable for an Organization

Organization variable for GitHub Actions.

APIs.ioEngineeringPlatform

Properties

Name Type Description
name string The name of the variable.
value string The value of the variable.
created_at string The date and time at which the variable was created, in ISO 8601 format':' YYYY-MM-DDTHH:MM:SSZ.
updated_at string The date and time at which the variable was last updated, in ISO 8601 format':' YYYY-MM-DDTHH:MM:SSZ.
visibility string Visibility of a variable
selected_repositories_url string
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-organization-actions-variable-schema.json Raw ↑
{
  "$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"
  ]
}