Atlassian · Schema

AccountIdEmailRecord

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
accountId string
email string
View JSON Schema on GitHub

JSON Schema

atlassian-accountidemailrecord-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AccountIdEmailRecord",
  "title": "AccountIdEmailRecord",
  "required": [
    "accountId",
    "email"
  ],
  "type": "object",
  "properties": {
    "accountId": {
      "type": "string",
      "example": "500123"
    },
    "email": {
      "type": "string",
      "example": "[email protected]"
    }
  }
}