{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://github.com/exabugs/mobilespec/schema/mobilespec.config.schema.json",
  "title": "MobileSpec Configuration",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "paths": {
      "type": "object",
      "additionalProperties": false,
      "properties": {
        "l2": {
          "type": "string",
          "default": "L2.screenflows"
        },
        "l3": {
          "type": "string",
          "default": "L3.ui"
        },
        "l4": {
          "type": "string",
          "default": "L4.state"
        },
        "l2Guards": {
          "type": "string",
          "default": "L2.guards.yaml"
        }
      }
    },
    "mermaid": {
      "type": "object",
      "additionalProperties": false,
      "properties": {
        "groupOrder": {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "screenOrder": {
          "type": "array",
          "items": {
            "type": "string"
          }
        }
      },
      "required": ["groupOrder"]
    },
    "validation": {
      "type": "object",
      "additionalProperties": false,
      "properties": {
        "allowNoIncoming": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "遷移元が無いことを許可する screen.id（例: screen_auth_callback）"
        }
      }
    }
  },
  "required": ["mermaid"]
}
