diff --git a/versions/3.0.md b/versions/3.0.md
index 1d6a2d02a9..c0fe16d045 100644
--- a/versions/3.0.md
+++ b/versions/3.0.md
@@ -113,11 +113,9 @@ Field Name | Type | Description
schemes | [`string`] | The transfer protocol of the API. Values MUST be from the list: `"http"`, `"https"`, `"ws"`, `"wss"`. If the `schemes` is not included, the default scheme to be used is the one used to access the OpenAPI definition itself.
consumes | [`string`] | A list of MIME types the APIs can consume. This is global to all APIs but can be overridden on specific API calls. Value MUST be as described under [Mime Types](#mimeTypes).
produces | [`string`] | A list of MIME types the APIs can produce. This is global to all APIs but can be overridden on specific API calls. Value MUST be as described under [Mime Types](#mimeTypes).
+responses | [Responses]
paths | [Paths Object](#pathsObject) | **Required.** The available paths and operations for the API.
-definitions | [Definitions Object](#definitionsObject) | An object to hold data types produced and consumed by operations.
-parameters | [Parameters Definitions Object](#parametersDefinitionsObject) | An object to hold parameters that can be used across operations. This property *does not* define global parameters for all operations.
-responses | [Responses Definitions Object](#responsesDefinitionsObject) | An object to hold responses that can be used across operations. This property *does not* define global responses for all operations.
-securityDefinitions | [Security Definitions Object](#securityDefinitionsObject) | Security scheme definitions that can be used across the specification.
+components | [Components Object](#componentsObject) | An element to hold various schemas for the specification.
security | [[Security Requirement Object](#securityRequirementObject)] | A declaration of which security schemes are applied for the API as a whole. The list of values describes alternative security schemes that can be used (that is, there is a logical OR between the security requirements). Individual operations can override this definition.
tags | [[Tag Object](#tagObject)] | A list of tags used by the specification with additional metadata. The order of the tags can be used to reflect on their order by the parsing tools. Not all tags that are used by the [Operation Object](#operationObject) must be declared. The tags that are not declared may be organized randomly or based on the tools' logic. Each tag name in the list MUST be unique.
externalDocs | [External Documentation Object](#externalDocumentationObject) | Additional external documentation.
@@ -248,6 +246,21 @@ name: Apache 2.0
url: http://www.apache.org/licenses/LICENSE-2.0.html
```
+#### Components Object
+
+Holds a set of schemas for different aspects of the OAS. The intention is to put reusable components into a single location, allowing reuse from this and other OAS documents.
+
+##### Fixed Fields
+
+Field Pattern | Type | Description
+---|:---:|---
+ | [Definitions Object](#definitionsObject) | A hash containing payload definitions for the specification.
+ | Responses Definitions Object | Reusable responses objects.
+ | [Parameters Definitions Object](#parametersDefinitionsObject) | An object to hold parameters to be reused across operations. Parameter definitions can be referenced to the ones defined here.
+ | [Response Headers Definitions Object](#responseHeadersDefinitionsObject) | Response headers to reuse across the specification.
+ | [Security Definitions Object](#securityDefinitionsObject) | Security definitions to reuse across the specification.
+
+
#### Paths Object
Holds the relative paths to the individual endpoints. The path is appended to the [`basePath`](#oasBasePath) in order to construct the full URL.