-
Notifications
You must be signed in to change notification settings - Fork 473
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
103 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 5 additions & 1 deletion
6
...LES_draco_point_compression/schema/3DTILES_draco_point_compression.batchTable.schema.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,20 @@ | ||
{ | ||
"$schema": "http://json-schema.org/draft-04/schema", | ||
"id" : "3DTILES_draco_point_compression.batchTable.schema.json", | ||
"title": "3DTILES_draco_point_compression Batch Table extension", | ||
"type": "object", | ||
"description" : "Specifies the compressed Batch Table properties.", | ||
"properties": { | ||
"properties": { | ||
"type": "object", | ||
"description": "Defines the properties stored in the compressed data. Each property is associated with a unique ID. This ID is used to identify the property within the compressed data. No two properties in the Feature Table and Batch Table may use the same ID.", | ||
"minProperties": 1, | ||
"additionalProperties": { | ||
"type": "number", | ||
"minimum": 0 | ||
} | ||
} | ||
}, | ||
"required": ["properties"] | ||
"required": ["properties"], | ||
"additionalProperties" : false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters