changedInput schema / properties / files / items / anyOf
Previous value: -[
- {
- "additionalProperties": false,
- "properties": {
- "content": {
- "description": "The file's stringified contents.",
- "type": "string"
- },
- "path": {
- "description": "The file's path. Accepts .json, .yaml, .proto and .graphql file types.",
- "type": "string"
- },
- "type": {
- "description": "The type of file. This property is required when creating multi-file specifications:\n- `ROOT` — The file containing the full OpenAPI structure. This serves as the entry point for the API spec and references other (`DEFAULT`) spec files. Multi-file specs can only have one root file.\n- `DEFAULT` — A file referenced by the `ROOT` file.\n",
- "enum": [
- "DEFAULT",
- "ROOT"
- ],
- "type": "string"
- }
- },
- "required": [
- "path",
- "content",
- "type"
- ],
- "type": "object"
- },
- {
- "additionalProperties": false,
- "properties": {
- "content": {
- "description": "The file's stringified contents.",
- "type": "string"
- },
- "path": {
- "description": "The file's path. Accepts .json, .yaml, .proto and .graphql file types.",
- "type": "string"
- }
- },
- "required": [
- "path",
- "content"
- ],
- "type": "object"
- }
-]New value: +[
+ {
+ "additionalProperties": false,
+ "properties": {
+ "content": {
+ "description": "The file's stringified contents.",
+ "type": "string"
+ },
+ "path": {
+ "description": "The file's path. Accepts .json, .yaml, and .proto types.",
+ "type": "string"
+ },
+ "type": {
+ "description": "The type of file. This property is required when creating multi-file specifications:\n- `ROOT` — The file containing the full OpenAPI structure. This serves as the entry point for the API spec and references other (`DEFAULT`) spec files. Multi-file specs can only have one root file.\n- `DEFAULT` — A file referenced by the `ROOT` file.\n",
+ "enum": [
+ "DEFAULT",
+ "ROOT"
+ ],
+ "type": "string"
+ }
+ },
+ "required": [
+ "path",
+ "content",
+ "type"
+ ],
+ "type": "object"
+ },
+ {
+ "additionalProperties": false,
+ "properties": {
+ "content": {
+ "description": "The file's stringified contents.",
+ "type": "string"
+ },
+ "path": {
+ "description": "The file's path. Accepts .json, .yaml, .proto, .graphql, and .smithy file types.",
+ "type": "string"
+ }
+ },
+ "required": [
+ "path",
+ "content"
+ ],
+ "type": "object"
+ }
+]
changedInput schema / properties / type / enum
Previous value: -[
- "OPENAPI:2.0",
- "OPENAPI:3.0",
- "OPENAPI:3.1",
- "ASYNCAPI:2.0",
- "PROTOBUF:2",
- "PROTOBUF:3",
- "GRAPHQL"
-]New value: +[
+ "OPENAPI:2.0",
+ "OPENAPI:3.0",
+ "OPENAPI:3.1",
+ "ASYNCAPI:2.0",
+ "ASYNCAPI:3.0",
+ "PROTOBUF:2",
+ "PROTOBUF:3",
+ "GRAPHQL",
+ "SMITHY:2.0"
+]