Tag protection

Tag protection

APIs.ioEngineeringPlatform

Properties

Name Type Description
id integer
created_at string
updated_at string
enabled boolean
pattern string
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-tag-protection-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/tag-protection",
  "title": "Tag protection",
  "description": "Tag protection",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "example": 2
    },
    "created_at": {
      "type": "string",
      "example": "2011-01-26T19:01:12Z"
    },
    "updated_at": {
      "type": "string",
      "example": "2011-01-26T19:01:12Z"
    },
    "enabled": {
      "type": "boolean",
      "example": true
    },
    "pattern": {
      "type": "string",
      "example": "v1.*"
    }
  },
  "required": [
    "pattern"
  ]
}