EVE Online · Schema

get_characters_character_id_mail_200_ok

200 ok object

AuthenticationAuthorizationGamingImagesMMOOAuth2RESTSSOStatic Data

Properties

Name Type Description
from integer From whom the mail was sent
is_read boolean is_read boolean
labels array labels array
mail_id integer mail_id integer
recipients array Recipients of the mail
subject string Mail subject
timestamp string When the mail was sent
View JSON Schema on GitHub

JSON Schema

eve-online-mail-header-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.com/json-schema/eve-online-mailheader-schema.json",
  "title": "get_characters_character_id_mail_200_ok",
  "description": "200 ok object",
  "type": "object",
  "properties": {
    "from": {
      "type": "integer",
      "format": "int32",
      "description": "From whom the mail was sent",
      "title": "get_characters_character_id_mail_from"
    },
    "is_read": {
      "type": "boolean",
      "description": "is_read boolean",
      "title": "get_characters_character_id_mail_is_read"
    },
    "labels": {
      "type": "array",
      "minimum": 0,
      "description": "labels array",
      "title": "get_characters_character_id_mail_labels",
      "items": {
        "type": "integer",
        "format": "int32",
        "description": "label integer",
        "title": "get_characters_character_id_mail_label"
      }
    },
    "mail_id": {
      "type": "integer",
      "format": "int32",
      "description": "mail_id integer",
      "title": "get_characters_character_id_mail_mail_id"
    },
    "recipients": {
      "type": "array",
      "description": "Recipients of the mail",
      "title": "get_characters_character_id_mail_recipients",
      "items": {
        "type": "object",
        "description": "recipient object",
        "title": "get_characters_character_id_mail_recipient",
        "required": [
          "recipient_type",
          "recipient_id"
        ],
        "properties": {
          "recipient_id": {
            "type": "integer",
            "format": "int32",
            "description": "recipient_id integer",
            "title": "get_characters_character_id_mail_recipient_id"
          },
          "recipient_type": {
            "type": "string",
            "enum": [
              "alliance",
              "character",
              "corporation",
              "mailing_list"
            ],
            "description": "recipient_type string",
            "title": "get_characters_character_id_mail_recipient_type"
          }
        }
      }
    },
    "subject": {
      "type": "string",
      "description": "Mail subject",
      "title": "get_characters_character_id_mail_subject"
    },
    "timestamp": {
      "type": "string",
      "format": "date-time",
      "description": "When the mail was sent",
      "title": "get_characters_character_id_mail_timestamp"
    }
  }
}