{
"$id": "openapi-contact.json",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "OpenAPI Contact Object",
"description": "Contact information for the exposed API.",
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "The identifying name of the contact person or organization."
},
"url": {
"type": "string",
"format": "uri",
"description": "The URL pointing to the contact information."
},
"email": {
"type": "string",
"format": "email",
"description": "The email address of the contact person or organization."
}
},
"patternProperties": {
"^x-": {}
},
"additionalProperties": false
}