{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Create Service Account",
  "description": "Create a new service account for programmatic API access.",
  "type": "object",
  "required": ["name"],
  "properties": {
    "name": {
      "type": "string",
      "title": "Name",
      "description": "A human-readable name for the service account",
      "examples": ["CI Bot", "Deploy Pipeline"]
    },
    "description": {
      "type": "string",
      "title": "Description",
      "description": "What this service account is used for",
      "examples": ["Continuous integration pipeline"]
    }
  }
}
