Atlassian · Schema

ProjectEmailAddress

A project's sender email address.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
emailAddress string The email address.
emailAddressStatus array When using a custom domain, the status of the email address.
View JSON Schema on GitHub

JSON Schema

atlassian-projectemailaddress-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ProjectEmailAddress",
  "title": "ProjectEmailAddress",
  "additionalProperties": false,
  "description": "A project's sender email address.",
  "properties": {
    "emailAddress": {
      "description": "The email address.",
      "type": "string"
    },
    "emailAddressStatus": {
      "description": "When using a custom domain, the status of the email address.",
      "items": {
        "type": "string"
      },
      "type": "array"
    }
  },
  "type": "object"
}