Success Response

APIs.ioEngineeringPlatform

Properties

Name Type Description
tags array A list of associated tags.
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-taggetput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/tagGetPut",
  "title": "Success Response",
  "type": "object",
  "properties": {
    "tags": {
      "type": "array",
      "maxItems": 5,
      "minItems": 0,
      "description": "A list of associated tags.",
      "items": {
        "type": "object",
        "description": "Information about the tag.",
        "properties": {
          "slug": {
            "type": "string",
            "pattern": "^[a-z][a-z0-9-]*[a-z0-9]+$",
            "minLength": 2,
            "maxLength": 64,
            "description": "The tag's ID within a team or individual (non-team) user scope.",
            "example": "needs-review"
          }
        }
      }
    }
  }
}