{
  "openapi" : "3.0.3",
  "info" : {
    "title" : "COR API Services",
    "description" : "Deze Logius REST API's bieden de openbare informatie voor organisaties",
    "contact" : {
      "name" : "Logius",
      "url" : "https://www.logius.nl/diensten/digikoppeling/",
      "email" : "servicecentrum@logius.nl"
    },
    "version" : "1.2.15"
  },
  "security" : [ {
    "default" : [ ]
  } ],
  "paths" : {
    "/heartbeat" : {
      "summary" : "Readiness checks worden gebruikt om aan te geven of de API in staat is om requests te verwerken",
      "description" : "Health - Readiness",
      "get" : {
        "summary" : "Readiness check van deze API",
        "description" : "Controleer of de API gereed is",
        "responses" : {
          "200" : {
            "description" : "OK",
            "content" : {
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/HealthCheckResponse"
                }
              }
            }
          },
          "429" : {
            "description" : "Too Many Requests",
            "content" : {
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/HealthCheckResponse"
                }
              }
            }
          },
          "503" : {
            "description" : "Service Unavailable",
            "content" : {
              "application/json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/HealthCheckResponse"
                }
              }
            }
          }
        },
        "security" : [ {
          "default" : [ ]
        } ],
        "x-throttling-tier" : "Unlimited",
        "x-auth-type" : "None",
        "x-wso2-application-security" : {
          "security-types" : [ "oauth2", "api_key" ],
          "optional" : false
        }
      }
    },
    "/openapi" : {
      "get" : {
        "parameters" : [ ],
        "responses" : {
          "200" : {
            "description" : "OK"
          }
        },
        "security" : [ {
          "default" : [ ]
        } ],
        "x-throttling-tier" : "Unlimited",
        "x-auth-type" : "None",
        "x-wso2-application-security" : {
          "security-types" : [ "oauth2", "api_key" ],
          "optional" : false
        }
      }
    },
    "/openapi.json" : {
      "get" : {
        "parameters" : [ ],
        "responses" : {
          "200" : {
            "description" : "OK"
          }
        },
        "security" : [ {
          "default" : [ ]
        } ],
        "x-throttling-tier" : "Unlimited",
        "x-auth-type" : "None",
        "x-wso2-application-security" : {
          "security-types" : [ "oauth2", "api_key" ],
          "optional" : false
        }
      }
    },
    "/laatsteWijziging" : {
      "get" : {
        "summary" : "Laatste wijziging",
        "description" : "Dit eindpunt geeft het tijdstempel van de laatst gewijzigde organisatie in het systeem",
        "x-throttling-tier" : "Unlimited",
        "x-auth-type" : "None",
        "x-wso2-application-security" : {
          "security-types" : [ "oauth2", "api_key" ],
          "optional" : false
        },
        "responses" : {
          "200" : {
            "description" : "Tijdstempel laatst gewijzigde organisatie",
            "headers" : {
              "API-Version" : {
                "description" : "De huidige versie van de applicatie",
                "schema" : {
                  "type" : "string"
                }
              }
            },
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/LaatsteWijzigingsDatum"
                }
              }
            }
          },
          "400" : {
            "description" : "De opgegeven parameters zijn onjuist",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "404" : {
            "description" : "Het gevraagde gegeven is niet gevonden",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "405" : {
            "description" : "Het verzoek is niet toegestaan voor dit eindpunt",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "406" : {
            "description" : "De opgegeven Accept Header is onjuist",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "429" : {
            "description" : "Maximaal aantal verzoeken per seconds is overschreden",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "500" : {
            "description" : "De server heeft een interne fout",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "503" : {
            "description" : "De dienst is niet beschikbaar",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        },
        "security" : [ {
          "default" : [ ]
        } ]
      }
    },
    "/organisaties" : {
      "get" : {
        "summary" : "Organisaties Collectie",
        "description" : "Dit eindpunt geeft een lijst van alle openbare organisaties in het systeem",
        "x-throttling-tier" : "Unlimited",
        "x-auth-type" : "None",
        "x-wso2-application-security" : {
          "security-types" : [ "oauth2", "api_key" ],
          "optional" : false
        },
        "parameters" : [ {
          "description" : "Schakelaar om details van gekoppelde organisaties (subOIN of OINhouder) op te vragen (default false = geen details)",
          "explode" : true,
          "style" : "form",
          "name" : "expand",
          "in" : "query",
          "schema" : {
            "type" : "boolean"
          }
        }, {
          "description" : "Een kommagescheiden string met namen van velden waarvan de waarde opgehaald dient te worden",
          "explode" : true,
          "style" : "form",
          "name" : "fields",
          "in" : "query",
          "schema" : {
            "type" : "string"
          }
        }, {
          "description" : "Het Kvk Nummer van de organisatie",
          "explode" : true,
          "schema" : {
            "maxLength" : 8,
            "minLength" : 8,
            "type" : "string"
          },
          "style" : "form",
          "name" : "kvkNummer",
          "in" : "query"
        }, {
          "description" : "De naam van de organisatie",
          "explode" : true,
          "style" : "form",
          "name" : "naam",
          "in" : "query",
          "schema" : {
            "type" : "string"
          }
        }, {
          "description" : "Het organisatie Identificatienummer",
          "explode" : true,
          "schema" : {
            "maxLength" : 20,
            "minLength" : 20,
            "type" : "string"
          },
          "style" : "form",
          "name" : "oin",
          "in" : "query"
        }, {
          "description" : "De organisatiecode van de organisatie",
          "explode" : true,
          "schema" : {
            "maxLength" : 4,
            "type" : "string"
          },
          "style" : "form",
          "name" : "organisatieCode",
          "in" : "query"
        }, {
          "description" : "Het organisatietype van de organisatie",
          "explode" : true,
          "schema" : {
            "oneOf" : [ {
              "$ref" : "#/components/schemas/OrganisationType"
            } ]
          },
          "style" : "form",
          "name" : "organisatieType",
          "in" : "query"
        }, {
          "description" : "De opgevraagde pagina",
          "explode" : true,
          "style" : "form",
          "name" : "pagina",
          "in" : "query",
          "schema" : {
            "format" : "int32",
            "type" : "integer"
          }
        }, {
          "description" : "Het aantal organisaties per pagina (-1 voor alle organisaties op 1 pagina)",
          "explode" : true,
          "style" : "form",
          "name" : "resultatenPerPagina",
          "in" : "query",
          "schema" : {
            "format" : "int32",
            "type" : "integer"
          }
        }, {
          "description" : "Het ID zoals in het register Overheidsorganisaties bekend",
          "explode" : true,
          "schema" : {
            "maxLength" : 255,
            "type" : "string"
          },
          "style" : "form",
          "name" : "rooId",
          "in" : "query"
        }, {
          "description" : "De status van de organisatie binnen het OIN-register",
          "explode" : true,
          "schema" : {
            "oneOf" : [ {
              "$ref" : "#/components/schemas/OrganisationStatus"
            } ]
          },
          "style" : "form",
          "name" : "status",
          "in" : "query"
        }, {
          "description" : "Vrije tekst voor het zoeken in de volgende velden: oin, naam, afkorting",
          "explode" : true,
          "style" : "form",
          "name" : "zoek",
          "in" : "query",
          "schema" : {
            "type" : "string"
          }
        }, {
          "description" : "De sleutel om toegang te krijgen tot testgegevens",
          "explode" : false,
          "style" : "simple",
          "name" : "X-Test-Data-Key",
          "in" : "header",
          "schema" : {
            "type" : "string"
          }
        } ],
        "responses" : {
          "200" : {
            "description" : "Lijst met organisaties",
            "headers" : {
              "API-Version" : {
                "description" : "De huidige versie van de applicatie",
                "schema" : {
                  "type" : "string"
                }
              },
              "X-Total-Count" : {
                "description" : "Het totale aantal resultaten",
                "schema" : {
                  "format" : "int32",
                  "type" : "integer"
                }
              },
              "X-Pagination-Count" : {
                "description" : "Het totale aantal beschikbare pagina's",
                "schema" : {
                  "format" : "int32",
                  "type" : "integer"
                }
              },
              "X-Pagination-Page" : {
                "description" : "De geretourneerde pagina",
                "schema" : {
                  "format" : "int32",
                  "type" : "integer"
                }
              },
              "X-Pagination-Limit" : {
                "description" : "Het totale aantal resultaten per pagina",
                "schema" : {
                  "format" : "int32",
                  "type" : "integer"
                }
              }
            },
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/OrganisatieListResponse"
                }
              }
            }
          },
          "400" : {
            "description" : "De opgegeven parameters zijn onjuist",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "404" : {
            "description" : "Het gevraagde gegeven is niet gevonden",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "405" : {
            "description" : "Het verzoek is niet toegestaan voor dit eindpunt",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "406" : {
            "description" : "De opgegeven Accept Header is onjuist",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "429" : {
            "description" : "Maximaal aantal verzoeken per seconds is overschreden",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "500" : {
            "description" : "De server heeft een interne fout",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "503" : {
            "description" : "De dienst is niet beschikbaar",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        },
        "security" : [ {
          "default" : [ ]
        } ]
      }
    },
    "/organisaties/{oin}" : {
      "get" : {
        "summary" : "Openbare organisatie Informatie",
        "description" : "Dit eindpunt levert de openbare informatie van de organisatie",
        "x-throttling-tier" : "Unlimited",
        "x-auth-type" : "None",
        "x-wso2-application-security" : {
          "security-types" : [ "oauth2", "api_key" ],
          "optional" : false
        },
        "parameters" : [ {
          "description" : "Het organisatie Identificatienummer",
          "explode" : false,
          "required" : true,
          "style" : "simple",
          "name" : "oin",
          "in" : "path",
          "schema" : {
            "type" : "string"
          }
        }, {
          "description" : "De datum waarop de organisatiegegevens beschikbaar werden in het systeem",
          "explode" : true,
          "style" : "form",
          "name" : "beschikbaarOp",
          "in" : "query",
          "schema" : {
            "type" : "string"
          }
        }, {
          "description" : "Schakelaar om details van gekoppelde organisaties (subOIN of OINhouder) op te vragen (default false = geen details)",
          "explode" : true,
          "style" : "form",
          "name" : "expand",
          "in" : "query",
          "schema" : {
            "type" : "boolean"
          }
        }, {
          "description" : "Een kommagescheiden string met namen van velden waarvan de waarde opgehaald dient te worden",
          "explode" : true,
          "style" : "form",
          "name" : "fields",
          "in" : "query",
          "schema" : {
            "type" : "string"
          }
        }, {
          "description" : "De datum waarop de organisatiegegevens geldig zijn/worden",
          "explode" : true,
          "style" : "form",
          "name" : "geldigOp",
          "in" : "query",
          "schema" : {
            "type" : "string"
          }
        }, {
          "description" : "De sleutel om toegang te krijgen tot testgegevens",
          "explode" : false,
          "style" : "simple",
          "name" : "X-Test-Data-Key",
          "in" : "header",
          "schema" : {
            "type" : "string"
          }
        } ],
        "responses" : {
          "200" : {
            "description" : "Organisatie informatie",
            "headers" : {
              "API-Version" : {
                "description" : "De huidige versie van de applicatie",
                "schema" : {
                  "type" : "string"
                }
              }
            },
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/OrganisatieResponse"
                }
              }
            }
          },
          "400" : {
            "description" : "De opgegeven parameters zijn onjuist",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "404" : {
            "description" : "Het gevraagde gegeven is niet gevonden",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "405" : {
            "description" : "Het verzoek is niet toegestaan voor dit eindpunt",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "406" : {
            "description" : "De opgegeven Accept Header is onjuist",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "429" : {
            "description" : "Maximaal aantal verzoeken per seconds is overschreden",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "500" : {
            "description" : "De server heeft een interne fout",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ErrorResponse"
                }
              }
            }
          },
          "503" : {
            "description" : "De dienst is niet beschikbaar",
            "content" : {
              "application/hal+json" : {
                "schema" : {
                  "$ref" : "#/components/schemas/ErrorResponse"
                }
              }
            }
          }
        },
        "security" : [ {
          "default" : [ ]
        } ]
      }
    }
  },
  "components" : {
    "schemas" : {
      "HealthCheckResponse" : {
        "type" : "object",
        "properties" : {
          "status" : {
            "type" : "string",
            "allOf" : [ {
              "$ref" : "#/components/schemas/HealthCheckStatus"
            } ]
          },
          "checks" : {
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/HealthCheckResponse"
            },
            "nullable" : true
          },
          "name" : {
            "type" : "string"
          },
          "data" : {
            "$ref" : "#/components/schemas/Data"
          }
        }
      },
      "HealthCheckStatus" : {
        "enum" : [ "UP", "DOWN" ],
        "type" : "string"
      },
      "HealthCheckListItem" : {
        "type" : "object",
        "properties" : {
          "name" : {
            "type" : "string",
            "nullable" : true
          },
          "status" : {
            "$ref" : "#/components/schemas/HealthCheckStatus"
          },
          "data" : {
            "type" : "object",
            "properties" : {
              "exceptionClass" : {
                "type" : "object"
              },
              "exceptionMessage" : {
                "type" : "object"
              },
              "rootCause" : {
                "type" : "object"
              }
            },
            "nullable" : true
          }
        }
      },
      "Data" : {
        "type" : "object",
        "properties" : {
          "exceptionClass" : {
            "type" : "string"
          },
          "rootCause" : {
            "type" : "string"
          }
        }
      },
      "ErrorResponse" : {
        "description" : "Foutmeldinggegevens",
        "type" : "object",
        "properties" : {
          "type" : {
            "description" : "De link naar het fouttype",
            "type" : "string"
          },
          "title" : {
            "description" : "De titel van het fouttype",
            "type" : "string"
          },
          "status" : {
            "format" : "int32",
            "description" : "De HTTP status code",
            "type" : "integer"
          },
          "detail" : {
            "description" : "Het detail van de foutmelding",
            "type" : "string"
          },
          "instance" : {
            "description" : "Het UUID waarmee een beheerder de foutmelding eenvoudig terug kan vinden in de log",
            "type" : "string"
          },
          "parameterDetail" : {
            "description" : "Een lijst met foutdetails over de gebruikte parameters",
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/ErrorResponseParameter"
            }
          }
        }
      },
      "ErrorResponseParameter" : {
        "description" : "Foutdetail over de gebruikte parameter",
        "type" : "object",
        "properties" : {
          "type" : {
            "description" : "Fouttype van de parameter",
            "type" : "string"
          },
          "name" : {
            "description" : "Naam van het veld met de fout",
            "type" : "string"
          },
          "reason" : {
            "description" : "Foutomschrijving",
            "type" : "string"
          }
        }
      },
      "HalInfo" : {
        "description" : "Een HAL-referentie",
        "type" : "object",
        "properties" : {
          "href" : {
            "description" : "De link naar de bron",
            "type" : "string"
          },
          "type" : {
            "description" : "Het mime-type van de bron",
            "type" : "string"
          }
        }
      },
      "HalPaginationInfo" : {
        "description" : "De HAL paginering referentie",
        "type" : "object",
        "properties" : {
          "self" : {
            "description" : "De link naar zichzelf",
            "type" : "object",
            "allOf" : [ {
              "$ref" : "#/components/schemas/HalInfo"
            } ]
          },
          "first" : {
            "description" : "De link naar de eerste pagina van de lijst met gegevens",
            "type" : "object",
            "allOf" : [ {
              "$ref" : "#/components/schemas/HalInfo"
            } ]
          },
          "prev" : {
            "description" : "De link naar de vorige pagina van de lijst met gegevens",
            "type" : "object",
            "allOf" : [ {
              "$ref" : "#/components/schemas/HalInfo"
            } ]
          },
          "next" : {
            "description" : "De link naar de volgende pagina van de lijst met gegevens",
            "type" : "object",
            "allOf" : [ {
              "$ref" : "#/components/schemas/HalInfo"
            } ]
          },
          "last" : {
            "description" : "De link naar de laatste pagina van de lijst met gegevens",
            "type" : "object",
            "allOf" : [ {
              "$ref" : "#/components/schemas/HalInfo"
            } ]
          }
        }
      },
      "HalSelfInfo" : {
        "description" : "De HAL paginering referentie",
        "type" : "object",
        "properties" : {
          "self" : {
            "description" : "De link naar zichzelf",
            "type" : "object",
            "allOf" : [ {
              "$ref" : "#/components/schemas/HalInfo"
            } ]
          }
        }
      },
      "LaatsteWijzigingsDatum" : {
        "description" : "Modificatiedatum laatst aangepaste organisatie",
        "type" : "object",
        "properties" : {
          "_links" : {
            "description" : "De HAL paginering referentie",
            "type" : "object",
            "allOf" : [ {
              "$ref" : "#/components/schemas/HalSelfInfo"
            } ]
          },
          "laatsteWijziging" : {
            "description" : "Modificatiedatum laatst aangepaste organisatie",
            "type" : "string",
            "allOf" : [ {
              "$ref" : "#/components/schemas/LocalDateTime"
            } ]
          }
        }
      },
      "LocalDateTime" : {
        "format" : "date-time",
        "type" : "string",
        "example" : "2022-03-10T12:15:50"
      },
      "OrganisatieListResponse" : {
        "description" : "Lijst met organisatiegegevens",
        "type" : "object",
        "properties" : {
          "_links" : {
            "description" : "De HAL paginering referentie",
            "type" : "object",
            "allOf" : [ {
              "$ref" : "#/components/schemas/HalPaginationInfo"
            } ]
          },
          "organisaties" : {
            "description" : "De lijst met organisaties",
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/OrganisatieResponse"
            }
          }
        }
      },
      "OrganisatieResponse" : {
        "description" : "Organisatiegegevens",
        "type" : "object",
        "properties" : {
          "_links" : {
            "description" : "De HAL paginering referentie",
            "type" : "object",
            "allOf" : [ {
              "$ref" : "#/components/schemas/HalSelfInfo"
            } ]
          },
          "naam" : {
            "description" : "De naam van de organisatie",
            "type" : "string"
          },
          "oin" : {
            "description" : "Het organisatie Identificatienummer",
            "type" : "string"
          },
          "status" : {
            "description" : "De status van de organisatie binnen het OIN-register",
            "type" : "string",
            "oneOf" : [ {
              "$ref" : "#/components/schemas/OrganisationStatus"
            } ]
          },
          "kvkNummer" : {
            "description" : "Het Kvk Nummer van de organisatie",
            "maxLength" : 8,
            "minLength" : 8,
            "type" : "string"
          },
          "afgifteDatum" : {
            "description" : "De afgiftedatum van de organisatie",
            "type" : "string",
            "allOf" : [ {
              "$ref" : "#/components/schemas/LocalDateTime"
            } ]
          },
          "laatstAangepastDatum" : {
            "description" : "De laatstaangepastdatum van de organisatie",
            "type" : "string",
            "allOf" : [ {
              "$ref" : "#/components/schemas/LocalDateTime"
            } ]
          },
          "intrekDatum" : {
            "description" : "De intrekdatum van de organisatie",
            "type" : "string",
            "allOf" : [ {
              "$ref" : "#/components/schemas/LocalDateTime"
            } ]
          },
          "organisatieCode" : {
            "description" : "De organisatiecode van de organisatie",
            "maxLength" : 4,
            "type" : "string"
          },
          "organisatieType" : {
            "description" : "Het organisatietype van de organisatie",
            "type" : "string",
            "allOf" : [ {
              "$ref" : "#/components/schemas/OrganisationType"
            } ]
          },
          "rooId" : {
            "description" : "Het ID zoals in het register Overheidsorganisaties bekend",
            "type" : "string"
          },
          "hoofdOIN" : {
            "description" : "De oinhouder van de organisatie",
            "type" : "object",
            "allOf" : [ {
              "$ref" : "#/components/schemas/OrganisatieResponse"
            } ]
          },
          "subOINs" : {
            "description" : "De lijst met suboins van de organisatie",
            "type" : "array",
            "items" : {
              "$ref" : "#/components/schemas/OrganisatieResponse"
            }
          }
        }
      },
      "OrganisationStatus" : {
        "description" : "De status van de organisatie binnen het OIN-register",
        "enum" : [ "In Behandeling", "Actief", "Ingetrokken" ],
        "type" : "string"
      },
      "OrganisationType" : {
        "description" : "Het organisatietype van de organisatie",
        "enum" : [ "GM", "PV", "WS", "MNRE", "GS", "GR", "OORG" ],
        "type" : "string"
      }
    },
    "securitySchemes" : {
      "default" : {
        "type" : "oauth2",
        "flows" : {
          "implicit" : {
            "authorizationUrl" : "https://test.com",
            "scopes" : { }
          }
        }
      }
    }
  },
  "x-wso2-cors" : {
    "corsConfigurationEnabled" : false,
    "accessControlAllowOrigins" : [ "*" ],
    "accessControlAllowCredentials" : false,
    "accessControlAllowHeaders" : [ "authorization", "Access-Control-Allow-Origin", "Content-Type", "SOAPAction", "apikey", "Internal-Key" ],
    "accessControlAllowMethods" : [ "GET", "PUT", "POST", "DELETE", "PATCH", "OPTIONS" ]
  },
  "x-wso2-production-endpoints" : {
    "urls" : [ "http://onloading-proxy-team-interfaces-cor-v1-2/" ],
    "type" : "http"
  },
  "x-wso2-basePath" : "/cor/1.2",
  "x-wso2-transports" : [ "http", "https" ],
  "x-wso2-application-security" : {
    "security-types" : [ "oauth2", "api_key" ],
    "optional" : false
  },
  "x-wso2-response-cache" : {
    "enabled" : false,
    "cacheTimeoutInSeconds" : 300
  },
  "servers" : [ {
    "url" : "https://oinregister.logius.nl/api/v1"
  } ]
}