Actions Variable

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.
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-actions-variable-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/actions-variable",
  "title": "Actions Variable",
  "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.",
      "type": "string",
      "format": "date-time",
      "example": "2019-01-24T22:45:36.000Z"
    },
    "updated_at": {
      "description": "The date and time at which the variable was last updated, in ISO 8601 format':' YYYY-MM-DDTHH:MM:SSZ.",
      "type": "string",
      "format": "date-time",
      "example": "2019-01-24T22:45:36.000Z"
    }
  },
  "required": [
    "name",
    "value",
    "created_at",
    "updated_at"
  ]
}