Token

A Rackspace Cloud Identity authentication token.

CloudManaged ServicesMulticloudInfrastructureDevOps

Properties

Name Type Description
id string Token identifier (bearer value).
expires string
tenant object
View JSON Schema on GitHub

JSON Schema

rackspace-cloud-identity-token-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/rackspace-technology/main/json-schema/rackspace-cloud-identity-token-schema.json",
  "title": "Token",
  "description": "A Rackspace Cloud Identity authentication token.",
  "type": "object",
  "properties": {
    "id": { "type": "string", "description": "Token identifier (bearer value)." },
    "expires": { "type": "string", "format": "date-time" },
    "tenant": {
      "type": "object",
      "properties": {
        "id": { "type": "string" },
        "name": { "type": "string" }
      }
    }
  },
  "required": ["id", "expires"]
}