node.EXT_instance_features.schema.json 620 B

123456789101112131415161718192021222324252627
  1. {
  2. "$schema": "https://json-schema.org/draft/2020-12/schema",
  3. "$id": "node.EXT_instance_features.schema.json",
  4. "title": "EXT_instance_features glTF Node extension",
  5. "type": "object",
  6. "description": "An object describing per-instance feature IDs.",
  7. "allOf": [
  8. {
  9. "$ref": "glTFProperty.schema.json"
  10. }
  11. ],
  12. "properties": {
  13. "featureIds": {
  14. "type": "array",
  15. "description": "An array of feature ID sets.",
  16. "minItems": 1,
  17. "items": {
  18. "$ref": "featureId.schema.json"
  19. }
  20. },
  21. "extensions": {},
  22. "extras": {}
  23. },
  24. "required": [
  25. "featureIds"
  26. ]
  27. }