Actor

Actor

APIs.ioEngineeringPlatform

Properties

Name Type Description
id integer
login string
display_login string
gravatar_id string
url string
avatar_url string
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-actor-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/actor",
  "title": "Actor",
  "description": "Actor",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer"
    },
    "login": {
      "type": "string"
    },
    "display_login": {
      "type": "string"
    },
    "gravatar_id": {
      "type": "string",
      "nullable": true
    },
    "url": {
      "type": "string",
      "format": "uri"
    },
    "avatar_url": {
      "type": "string",
      "format": "uri"
    }
  },
  "required": [
    "id",
    "login",
    "gravatar_id",
    "url",
    "avatar_url"
  ]
}