OpenAPI · Schema

OpenAPI Contact Object

Contact information for the exposed API.

DocumentationRESTSpecification

Properties

Name Type Description
name string The identifying name of the contact person or organization.
url string The URL pointing to the contact information.
email string The email address of the contact person or organization.
View JSON Schema on GitHub

JSON Schema

openapi-contact.json Raw ↑
{
  "$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
}