Skip to content

Latest commit

 

History

History
73 lines (62 loc) · 1.67 KB

ogc-wfs.adoc

File metadata and controls

73 lines (62 loc) · 1.67 KB

A successful execution of the operation SHALL be reported as a response with a HTTP status code 200.

CoreRoot(success): HttpResponse
if (success)
  requirement(label: success-response)
end
success-response()

The content of that response SHALL be based upon the provided OpenAPI 3.0 schema and include at least links to the following resources:

  • /api (relation type "service")

  • /conformance (relation type "conformance")

  • /collections (relation type "data")

'/':
  get:
    responses:
      '200':
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/root'
            properties:
              type: array
              items:
                $ref: '#/components/schemas/link'
              match:
                - href: '/api'
                  rel: service
                - href: '/conformance'
                  rel: conformance
                - href: '/collections'
                  rel: data
          text/html:
            schema:
              type: string