Estrutura do Arquivo .yaml de Implantação (comando apply)

O campo revision deve ter o valor last ou conter apenas caracteres numéricos (“1”, “2”, …). O valor deve ser >= 1 e não pode começar com zero (regra presente no schema).

apiVersion: api-management.sensedia.com/v1
kind: Deployment
metadata:
  # Descrição de texto aberto apenas com valores de exemplo
  type: production
  owner: engineering
spec:
  # Campos de identificação
  apiRef:
     name: "Open Banking API"
     version: "1.0.0"
  environmentRef:
     name: "Production"
  # Demais campos
  revision: "last"

Schema de Implantação (comando apply)

{
  "$schema": "https://json-schema.org/draft/2019-09/schema",
  "$id": "https://sensedia.com/cli/api-management/deployment/apply",
  "type": "object",
  "properties": {
    "apiVersion": {
      "type": "string",
      "enum": [
        "api-management.sensedia.com/v1"
      ]
    },
    "kind": {
      "type": "string",
      "enum": [
        "Deployment"
      ]
    },
    "metadata": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      }
    },
    "spec": {
      "additionalProperties": false,
      "type": "object",
      "required": [
        "apiRef",
        "environmentRef"
      ],
      "properties": {
        "apiRef": {
          "$ref": "#/$defs/apiRef"
        },
        "environmentRef": {
          "$ref": "#/$defs/namedRef"
        },
        "revision": {
          "type": "string",
          "default": "last",
          "pattern": "^(last|[1-9][0-9]*)$"
        }
      }
    }
  },
  "required": [
    "apiVersion",
    "kind",
    "spec"
  ],
  "$defs": {
    "namedRef": {
      "additionalProperties": false,
      "type": "object",
      "properties": {
        "name": {
          "type": "string"
        }
      },
      "required": [
        "name"
      ]
    },
    "apiRef": {
      "additionalProperties": false,
      "type": "object",
      "properties": {
        "name": {
          "type": "string"
        },
        "version": {
          "type": "string"
        }
      },
      "required": [
        "name",
        "version"
      ]
    }
  }
}
Thanks for your feedback!
EDIT
How useful was this article to you?