Event Photo Tag

Description

An event photo tag.

Properties

Property Description
displayOrder

The display order value for this event photo tag.

id

The identifier for the event photo tag.

links required read-only

Each property defines a hypertext link relationship as indicated by a link object or array of link objects. The target URL of each hypertext link relationship is related to the current resource according to the defined semantics of the link relationship property name.

maximumPhotoCount

The maximum number of event photos to which the tag may be applied.

name

The name for this event photo tag.

Allows alphanumeric, space, dash, and underscore characters.

type

The type of object represented.

OpenAPI Schema

The following schema is based on OpenAPI 3.0 and is provided in our downloadable OpenAPI document.

{
  "description": "An event photo tag.",
  "properties": {
    "displayOrder": {
      "description": "The display order value for this event photo tag.",
      "type": "number"
    },
    "id": {
      "description": "The identifier for the event photo tag.",
      "type": "number"
    },
    "links": {
      "$ref": "#/components/schemas/Links"
    },
    "maximumPhotoCount": {
      "description": "The maximum number of event photos to which the tag may be applied.",
      "type": "number"
    },
    "name": {
      "description": "The name for this event photo tag.\n\nAllows alphanumeric, space, dash, and underscore characters.",
      "pattern": "^[\\d\\s\\w\\-]{1,30}$",
      "type": "string"
    },
    "type": {
      "description": "The type of object represented.",
      "enum": [
        "event-photo-tag"
      ],
      "type": "string"
    }
  },
  "title": "Event Photo Tag",
  "type": "object"
}