diff --git a/README.md b/README.md index 982bbbf..b70e287 100644 --- a/README.md +++ b/README.md @@ -282,7 +282,6 @@ Specification - [Model Object](#model-object) - [Field Object](#field-object) - [Definition Object](#definition-object) -- [Schema Object](#schema-object) - [Example Object](#example-object) - [Service Level Object](#service-levels-object) - [Quality Object](#quality-object) diff --git a/datacontract.schema.json b/datacontract.schema.json index 844afc4..f78ff14 100644 --- a/datacontract.schema.json +++ b/datacontract.schema.json @@ -7,6 +7,7 @@ "type": "string", "title": "DataContractSpecificationVersion", "enum": [ + "1.1.0", "0.9.3", "0.9.2", "0.9.1", @@ -1208,42 +1209,6 @@ ] } }, - "schema": { - "type": "object", - "properties": { - "type": { - "type": "string", - "title": "SchemaType", - "enum": [ - "dbt", - "bigquery", - "json-schema", - "sql-ddl", - "avro", - "protobuf", - "custom" - ], - "description": "The type of the schema. Typical values are dbt, bigquery, json-schema, sql-ddl, avro, protobuf, custom." - }, - "specification": { - "oneOf": [ - { - "type": "string", - "description": "The specification of the schema as a string." - }, - { - "type": "object", - "description": "The specification of the schema as an object." - } - ] - } - }, - "required": [ - "type", - "specification" - ], - "description": "The schema of the data contract describes the syntax and semantics of provided data sets. It supports different schema types." - }, "examples": { "type": "array", "items": {