forked from MapComplete/MapComplete
		
	
		
			
				
	
	
		
			37 lines
		
	
	
		
			No EOL
		
	
	
		
			793 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			No EOL
		
	
	
		
			793 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
export default {
 | 
						|
  "$schema": "http://json-schema.org/draft-07/schema#",
 | 
						|
  "$ref": "#/definitions/AndOrTagConfigJson",
 | 
						|
  "definitions": {
 | 
						|
    "AndOrTagConfigJson": {
 | 
						|
      "type": "object",
 | 
						|
      "properties": {
 | 
						|
        "and": {
 | 
						|
          "type": "array",
 | 
						|
          "items": {
 | 
						|
            "anyOf": [
 | 
						|
              {
 | 
						|
                "type": "string"
 | 
						|
              },
 | 
						|
              {
 | 
						|
                "$ref": "#/definitions/AndOrTagConfigJson"
 | 
						|
              }
 | 
						|
            ]
 | 
						|
          }
 | 
						|
        },
 | 
						|
        "or": {
 | 
						|
          "type": "array",
 | 
						|
          "items": {
 | 
						|
            "anyOf": [
 | 
						|
              {
 | 
						|
                "type": "string"
 | 
						|
              },
 | 
						|
              {
 | 
						|
                "$ref": "#/definitions/AndOrTagConfigJson"
 | 
						|
              }
 | 
						|
            ]
 | 
						|
          }
 | 
						|
        }
 | 
						|
      }
 | 
						|
    }
 | 
						|
  }
 | 
						|
} |