{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://accurotech.local/schemas/instances/shape_instance_record.schema.json",
  "title": "Shape Instance Record",
  "type": "object",
  "additionalProperties": true,
  "required": [
    "id",
    "name",
    "conforms_to_shape",
    "payload_policy"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "conforms_to_shape": {
      "type": "string"
    },
    "payload_policy": {
      "type": "string"
    },
    "day_zero_package": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  }
}
