{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Creator",
"title": "Creator",
"type": "object",
"properties": {
"type": {
"type": "string",
"description": "A type that denotes who or what created a resource.",
"enum": [
"USER",
"ORG_API_KEY",
"SYSTEM"
],
"example": "USER"
},
"name": {
"type": "string",
"description": "The name of who or what created a resource.",
"example": "John Doe"
}
},
"required": [
"name",
"type"
]
}