changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "bounds": {
+ "anyOf": [
+ {
+ "additionalProperties": false,
+ "properties": {
+ "maxX": {
+ "type": "number"
+ },
+ "maxY": {
+ "type": "number"
+ },
+ "minX": {
+ "type": "number"
+ },
+ "minY": {
+ "type": "number"
+ }
+ },
+ "required": [
+ "minX",
+ "minY",
+ "maxX",
+ "maxY"
+ ],
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "World-space extents, null for an empty drawing"
+ },
+ "entityCount": {
+ "maximum": 9007199254740991,
+ "minimum": -9007199254740991,
+ "type": "integer"
+ },
+ "entityTypes": {
+ "additionalProperties": {
+ "type": "number"
+ },
+ "description": "Top-level entities per DXF type",
+ "propertyNames": {
+ "type": "string"
+ },
+ "type": "object"
+ },
+ "layers": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "color": {
+ "description": "The color actually drawn (dominant), as #rrggbb",
+ "type": "string"
+ },
+ "entityCount": {
+ "maximum": 9007199254740991,
+ "minimum": -9007199254740991,
+ "type": "integer"
+ },
+ "name": {
+ "type": "string"
+ },
+ "visible": {
+ "type": "boolean"
+ }
+ },
+ "required": [
+ "name",
+ "entityCount",
+ "visible",
+ "color"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "segmentCount": {
+ "maximum": 9007199254740991,
+ "minimum": -9007199254740991,
+ "type": "integer"
+ },
+ "size": {
+ "anyOf": [
+ {
+ "additionalProperties": false,
+ "properties": {
+ "height": {
+ "type": "number"
+ },
+ "width": {
+ "type": "number"
+ }
+ },
+ "required": [
+ "width",
+ "height"
+ ],
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "description": "Bounding-box size in drawing units, null when empty"
+ },
+ "texts": {
+ "description": "Unique TEXT/MTEXT strings, blocks included",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "units": {
+ "description": "Drawing-unit label (e.g. \"mm\"), \"\" when unitless",
+ "type": "string"
+ },
+ "unsupported": {
+ "additionalProperties": {
+ "type": "number"
+ },
+ "description": "Per-type counts of skipped entities",
+ "propertyNames": {
+ "type": "string"
+ },
+ "type": "object"
+ }
+ },
+ "required": [
+ "units",
+ "bounds",
+ "size",
+ "entityCount",
+ "segmentCount",
+ "layers",
+ "entityTypes",
+ "unsupported",
+ "texts"
+ ],
+ "type": "object"
+}