{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CreateItemRequest", "title": "CreateItemRequest", "type": "object", "properties": { "jsonapi": { "$ref": "#/components/schemas/JsonApiVersion" }, "data": { "type": "object", "properties": { "type": { "type": "string", "example": "items" }, "attributes": { "type": "object", "properties": { "displayName": { "type": "string" }, "extension": { "$ref": "#/components/schemas/Extension" } } }, "relationships": { "type": "object", "properties": { "tip": { "type": "object", "properties": { "data": { "type": "object", "properties": { "type": { "type": "string", "example": "versions" }, "id": { "type": "string" } } } } }, "parent": { "type": "object", "properties": { "data": { "type": "object", "properties": { "type": { "type": "string", "example": "folders" }, "id": { "type": "string" } } } } } } } } }, "included": { "type": "array", "items": { "type": "object" } } } }