If you have a contact field, there should only be a valid email address inscribed.

Noncompliant Code Example

swagger: "2.0"
info:
  version: 1.0.0
  title: Swagger Petstore
  contact:
    email: randomString # Noncompliant: There should only be a valid email address in contact.

Compliant Solution

swagger: "2.0"
info:
  version: 1.0.0
  title: Swagger Petstore
  contact:
    email: max@mustermann.at