{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "minLength": 1,
      "maxLength": 200,
      "description": "Human-readable name for the resource being created or updated."
    },
    "expectedName": {
      "type": "string",
      "minLength": 1,
      "maxLength": 200,
      "description": "The expected name value; allowed values and bounds are specified in this schema."
    }
  },
  "required": [
    "name",
    "expectedName"
  ],
  "additionalProperties": false
}
