Skip to content

Commit

Permalink
Merge pull request #67 from CesiumGS/replace-integer-with-gltfid
Browse files Browse the repository at this point in the history
Replace integer with glTFid
  • Loading branch information
lilleyse authored May 20, 2024
2 parents 49ee3e8 + 3bbd5dd commit d5cc0ea
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,7 @@
],
"properties": {
"propertyTable": {
"type": "integer",
"minimum": 0,
"allOf": [ { "$ref": "glTFid.schema.json" } ],
"description": "The index of the property table containing per-feature property values."
},
"index": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@
"description": "An array of indexes of property textures in the root `EXT_structural_metadata` object.",
"minItems": 1,
"items": {
"type": "integer"
"allOf": [ { "$ref": "glTFid.schema.json" } ]
}
},
"propertyAttributes": {
"type": "array",
"description": "An array of indexes of property attributes in the root `EXT_structural_metadata` object.",
"minItems": 1,
"items": {
"type": "integer"
"allOf": [ { "$ref": "glTFid.schema.json" } ]
}
},
"extensions": {},
Expand Down

0 comments on commit d5cc0ea

Please sign in to comment.