From 89ae8bc9118caf5e9ff2eb3448b5c6c9860bece5 Mon Sep 17 00:00:00 2001 From: Kyle Fuller Date: Fri, 12 Jun 2020 13:10:42 +0100 Subject: [PATCH 1/3] refactor(core): rename fury to core --- .circleci/smoke.sh | 4 ++-- README.md | 2 +- packages/apiaryb-parser/package.json | 4 ++-- packages/apiaryb-parser/test/adapter-test.js | 2 +- packages/apiaryb-parser/test/parser-test.js | 2 +- packages/apib-parser/package.json | 4 ++-- packages/apib-parser/test/adapter-test.js | 2 +- packages/apib-parser/test/validate-test.js | 2 +- packages/apib-serializer/package.json | 4 ++-- packages/apib-serializer/test/adapter-test.js | 2 +- packages/apib-serializer/test/filters-test.js | 2 +- packages/apib-serializer/test/mson-test.js | 2 +- packages/{fury => core}/CHANGELOG.md | 6 +++++- packages/{fury => core}/README.md | 14 +++++++------- packages/{fury => core}/lib/fury.js | 0 packages/{fury => core}/package.json | 8 ++++---- packages/{fury => core}/test/assert.js | 0 packages/{fury => core}/test/fury-test.js | 0 packages/{fury => core}/test/parse-test.js | 0 packages/{fury => core}/test/serialize-test.js | 0 packages/{fury => core}/test/validate-test.js | 0 packages/fury-cli/lib/fury.js | 2 +- packages/fury-cli/package.json | 2 +- packages/openapi2-parser/package.json | 4 ++-- packages/openapi2-parser/test/adapter-test.js | 2 +- packages/openapi2-parser/test/generator-test.js | 2 +- .../test/inherit-parameters-test.js | 2 +- packages/openapi2-parser/test/parameter-test.js | 2 +- packages/openapi2-parser/test/parser-test.js | 2 +- packages/openapi2-parser/test/schema-test.js | 2 +- packages/openapi3-parser/package.json | 4 ++-- .../integration/parser/oas/parseOpenAPI-test.js | 2 +- .../test/integration/testParseFixture.js | 2 +- packages/openapi3-parser/test/unit/adapter-test.js | 2 +- packages/openapi3-parser/test/unit/chai-test.js | 2 +- packages/openapi3-parser/test/unit/chai.js | 2 +- packages/openapi3-parser/test/unit/parser-test.js | 2 +- .../unit/parser/oas/parseComponentsObject-test.js | 2 +- .../unit/parser/oas/parseExampleObject-test.js | 2 +- .../test/unit/parser/oas/parseHeaderObject-test.js | 2 +- .../test/unit/parser/oas/parseInfoObject-test.js | 2 +- .../unit/parser/oas/parseLicenseObject-test.js | 2 +- .../unit/parser/oas/parseMediaTypeObject-test.js | 2 +- .../unit/parser/oas/parseOauthFlowObject-test.js | 2 +- .../unit/parser/oas/parseOauthFlowsObject-test.js | 2 +- .../unit/parser/oas/parseOpenAPIObject-test.js | 2 +- .../unit/parser/oas/parseOperationObject-test.js | 2 +- .../unit/parser/oas/parseParameterObject-test.js | 2 +- .../unit/parser/oas/parseParameterObjects-test.js | 2 +- .../unit/parser/oas/parsePathItemObject-test.js | 2 +- .../test/unit/parser/oas/parsePathsObject-test.js | 2 +- .../unit/parser/oas/parseReferenceObject-test.js | 2 +- .../unit/parser/oas/parseRequestBodyObject-test.js | 2 +- .../unit/parser/oas/parseResponseObject-test.js | 2 +- .../unit/parser/oas/parseResponsesObject-test.js | 2 +- .../test/unit/parser/oas/parseSchemaObject-test.js | 2 +- .../oas/parseSecurityRequirementObject-test.js | 2 +- .../oas/parseSecurityRequirementsArray-test.js | 2 +- .../parser/oas/parseSecuritySchemeObject-test.js | 2 +- .../test/unit/parser/oas/parseServerObject-test.js | 2 +- .../parser/oas/parseServerVariableObject-test.js | 2 +- .../test/unit/parser/oas/parseServersArray-test.js | 2 +- .../test/unit/parser/openapi-test.js | 2 +- .../test/unit/parser/parseArray-test.js | 2 +- .../test/unit/parser/parseBoolean-test.js | 2 +- .../test/unit/parser/parseCopy-test.js | 2 +- .../test/unit/parser/parseMap-test.js | 2 +- .../test/unit/parser/parseObject-test.js | 2 +- .../test/unit/parser/parseString-test.js | 2 +- .../test/unit/parser/parseYAML-test.js | 2 +- .../test/unit/pipeParseResult-test.js | 2 +- packages/remote/package.json | 4 ++-- packages/remote/test/fury-test.js | 2 +- 73 files changed, 87 insertions(+), 83 deletions(-) rename packages/{fury => core}/CHANGELOG.md (98%) rename packages/{fury => core}/README.md (93%) rename packages/{fury => core}/lib/fury.js (100%) rename packages/{fury => core}/package.json (85%) rename packages/{fury => core}/test/assert.js (100%) rename packages/{fury => core}/test/fury-test.js (100%) rename packages/{fury => core}/test/parse-test.js (100%) rename packages/{fury => core}/test/serialize-test.js (100%) rename packages/{fury => core}/test/validate-test.js (100%) diff --git a/.circleci/smoke.sh b/.circleci/smoke.sh index 561457bc6..b6309fa4d 100755 --- a/.circleci/smoke.sh +++ b/.circleci/smoke.sh @@ -18,11 +18,11 @@ install() { cd "$TMPDIR" && npm install "$TARBALL" && cd "$PROJECT_DIR" } -echo "Setting up Fury in $TMPDIR" +echo "Setting up API Elements in $TMPDIR" create_package install api-elements -install fury +install core install apib-parser install openapi2-parser install openapi3-parser diff --git a/README.md b/README.md index f795d17b2..9019ad453 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ API Elements adapters: ## Usage ```javascript -const { Fury } = require('fury'); +const { Fury } = require('@apielements/core'); const fury = new Fury(); diff --git a/packages/apiaryb-parser/package.json b/packages/apiaryb-parser/package.json index ccd9ec72a..a0ac3f325 100644 --- a/packages/apiaryb-parser/package.json +++ b/packages/apiaryb-parser/package.json @@ -26,12 +26,12 @@ "deckardcain": "^1.0.0" }, "peerDependencies": { - "fury": "3.0.0-beta.14" + "@apielements/core": "^0.1.0" }, "devDependencies": { + "@apielements/core": "^0.1.0", "chai": "^4.2.0", "eslint": "^5.16.0", - "fury": "3.0.0-beta.14", "glob": "^7.1.2", "mocha": "^7.1.1", "pegjs": "git://github.com/dmajda/pegjs.git#02af83f9b416778878e52e2cbbc22d96e312164e" diff --git a/packages/apiaryb-parser/test/adapter-test.js b/packages/apiaryb-parser/test/adapter-test.js index c742d2cda..5431ce51e 100644 --- a/packages/apiaryb-parser/test/adapter-test.js +++ b/packages/apiaryb-parser/test/adapter-test.js @@ -1,5 +1,5 @@ const { expect } = require('chai'); -const fury = require('fury'); +const fury = require('@apielements/core'); const adapter = require('../lib/adapter'); const { detect, mediaTypes } = adapter; diff --git a/packages/apiaryb-parser/test/parser-test.js b/packages/apiaryb-parser/test/parser-test.js index 129f4dfbf..05bff2329 100644 --- a/packages/apiaryb-parser/test/parser-test.js +++ b/packages/apiaryb-parser/test/parser-test.js @@ -4,7 +4,7 @@ const { expect } = require('chai'); const glob = require('glob'); const path = require('path'); const fs = require('fs'); -const fury = require('fury'); +const fury = require('@apielements/core'); const adapter = require('../lib/adapter'); fury.adapters = [adapter]; diff --git a/packages/apib-parser/package.json b/packages/apib-parser/package.json index a0d406343..831cc9cdd 100644 --- a/packages/apib-parser/package.json +++ b/packages/apib-parser/package.json @@ -27,12 +27,12 @@ "protagonist": "^2.1.0" }, "peerDependencies": { - "fury": "3.0.0-beta.14" + "@apielements/core": "^0.1.0" }, "devDependencies": { + "@apielements/core": "^0.1.0", "chai": "^4.2.0", "eslint": "^5.16.0", - "fury": "3.0.0-beta.14", "mocha": "^7.1.1" }, "engines": { diff --git a/packages/apib-parser/test/adapter-test.js b/packages/apib-parser/test/adapter-test.js index 7dbf540b2..878af0ad3 100644 --- a/packages/apib-parser/test/adapter-test.js +++ b/packages/apib-parser/test/adapter-test.js @@ -2,7 +2,7 @@ * Tests for API Blueprint adapter. */ -const { Fury } = require('fury'); +const { Fury } = require('@apielements/core'); const { expect } = require('chai'); const adapter = require('../lib/adapter'); diff --git a/packages/apib-parser/test/validate-test.js b/packages/apib-parser/test/validate-test.js index ca0a4c208..bf30138be 100644 --- a/packages/apib-parser/test/validate-test.js +++ b/packages/apib-parser/test/validate-test.js @@ -1,5 +1,5 @@ const { expect } = require('chai'); -const { Fury } = require('fury'); +const { Fury } = require('@apielements/core'); const adapter = require('../lib/adapter'); const fury = new Fury(); diff --git a/packages/apib-serializer/package.json b/packages/apib-serializer/package.json index 07c58938d..79da8d69a 100644 --- a/packages/apib-serializer/package.json +++ b/packages/apib-serializer/package.json @@ -24,12 +24,12 @@ "nunjucks": "^3.2.0" }, "peerDependencies": { - "fury": "3.0.0-beta.14" + "@apielements/core": "^0.1.0" }, "devDependencies": { + "@apielements/core": "^0.1.0", "chai": "^4.2.0", "eslint": "^5.16.0", - "fury": "3.0.0-beta.14", "glob": "^7.1.2", "mocha": "^7.1.1" }, diff --git a/packages/apib-serializer/test/adapter-test.js b/packages/apib-serializer/test/adapter-test.js index ae6e5ebd4..775f14445 100644 --- a/packages/apib-serializer/test/adapter-test.js +++ b/packages/apib-serializer/test/adapter-test.js @@ -6,7 +6,7 @@ const { expect } = require('chai'); const fs = require('fs'); -const { Fury } = require('fury'); +const { Fury } = require('@apielements/core'); const glob = require('glob'); const path = require('path'); const adapter = require('../lib/adapter'); diff --git a/packages/apib-serializer/test/filters-test.js b/packages/apib-serializer/test/filters-test.js index 623bb2e78..c3ad0d9b6 100644 --- a/packages/apib-serializer/test/filters-test.js +++ b/packages/apib-serializer/test/filters-test.js @@ -1,5 +1,5 @@ const { expect } = require('chai'); -const { Fury } = require('fury'); +const { Fury } = require('@apielements/core'); const { bodyOnly } = require('../lib/filters'); const fury = new Fury(); diff --git a/packages/apib-serializer/test/mson-test.js b/packages/apib-serializer/test/mson-test.js index ab1a24000..8b67eac36 100644 --- a/packages/apib-serializer/test/mson-test.js +++ b/packages/apib-serializer/test/mson-test.js @@ -1,5 +1,5 @@ const { expect } = require('chai'); -const { Fury } = require('fury'); +const { Fury } = require('@apielements/core'); const { renderAttributes } = require('../lib/mson'); const { elements } = (new Fury()).minim; diff --git a/packages/fury/CHANGELOG.md b/packages/core/CHANGELOG.md similarity index 98% rename from packages/fury/CHANGELOG.md rename to packages/core/CHANGELOG.md index 4f2732446..21fb0e60c 100644 --- a/packages/fury/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,4 +1,8 @@ -# Fury Changelog +# API Elements: Core + +## 0.1.0 (2020-06-12) + +The package has been renamed to `@apielements/core`. ## 3.0.0-beta.14 (2020-04-20) diff --git a/packages/fury/README.md b/packages/core/README.md similarity index 93% rename from packages/fury/README.md rename to packages/core/README.md index fb22784f6..2f718c5ad 100644 --- a/packages/fury/README.md +++ b/packages/core/README.md @@ -1,7 +1,7 @@ -# Fury.js +# API Elements: Core -[![NPM version](https://img.shields.io/npm/v/fury.svg)](https://www.npmjs.org/package/fury) -[![License](https://img.shields.io/npm/l/fury.svg)](https://www.npmjs.org/package/fury) +[![NPM version](https://img.shields.io/npm/v/@apielements/core.svg)](https://www.npmjs.org/package/@apielements/core) +[![License](https://img.shields.io/npm/l/@apielements/core.svg)](https://www.npmjs.org/package/@apielements/core) API Description SDK @@ -19,7 +19,7 @@ Note: Fury requires *adapters* to support parsing and serializing. You will need Fury.js is available as an npm module. ```sh -$ npm install --save fury +$ npm install --save @apielements/core ``` ### Refract Interface @@ -27,7 +27,7 @@ $ npm install --save fury Fury.js offers an interface based on the [Refract Project](https://github.com/refractproject/refract-spec) element specification and makes use of the API description and data structure namespaces. Adapters convert from formats such as API Blueprint into Refract elements and Fury.js exposes these with API-related convenience functionality. For example: ```js -import fury from 'fury'; +import fury from '@apielements/core'; import apibParser from '@apielements/apib-parser'; // The input as a string @@ -102,7 +102,7 @@ Reference: There may come a day when you need to have multiple Fury instances with different adapters or other options set up in the same program. This is possible via the `Fury` class: ```js -import {Fury} from 'fury'; +import {Fury} from '@apielements/core'; const fury1 = new Fury(); const fury2 = new Fury(); @@ -182,7 +182,7 @@ export default {name, mediaTypes, detect, parse, serialize}; Now you can register your adapter with Fury.js: ```js -import fury from 'fury'; +import fury from '@apielements/core'; import myAdapter from './my-adapter'; // Register my custom adapter diff --git a/packages/fury/lib/fury.js b/packages/core/lib/fury.js similarity index 100% rename from packages/fury/lib/fury.js rename to packages/core/lib/fury.js diff --git a/packages/fury/package.json b/packages/core/package.json similarity index 85% rename from packages/fury/package.json rename to packages/core/package.json index c2a0a61e6..50811f224 100644 --- a/packages/fury/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { - "name": "fury", - "version": "3.0.0-beta.14", + "name": "@apielements/core", + "version": "0.1.0", "description": "API Description SDK", "author": "Apiary.io ", "license": "MIT", @@ -8,11 +8,11 @@ "files": [ "lib/fury.js" ], - "homepage": "https://github.com/apiaryio/api-elements.js/tree/master/packages/fury", + "homepage": "https://github.com/apiaryio/api-elements.js/tree/master/packages/core", "repository": { "type": "git", "url": "https://github.com/apiaryio/api-elements.js.git", - "directory": "packages/fury" + "directory": "packages/core" }, "scripts": { "lint": "eslint .", diff --git a/packages/fury/test/assert.js b/packages/core/test/assert.js similarity index 100% rename from packages/fury/test/assert.js rename to packages/core/test/assert.js diff --git a/packages/fury/test/fury-test.js b/packages/core/test/fury-test.js similarity index 100% rename from packages/fury/test/fury-test.js rename to packages/core/test/fury-test.js diff --git a/packages/fury/test/parse-test.js b/packages/core/test/parse-test.js similarity index 100% rename from packages/fury/test/parse-test.js rename to packages/core/test/parse-test.js diff --git a/packages/fury/test/serialize-test.js b/packages/core/test/serialize-test.js similarity index 100% rename from packages/fury/test/serialize-test.js rename to packages/core/test/serialize-test.js diff --git a/packages/fury/test/validate-test.js b/packages/core/test/validate-test.js similarity index 100% rename from packages/fury/test/validate-test.js rename to packages/core/test/validate-test.js diff --git a/packages/fury-cli/lib/fury.js b/packages/fury-cli/lib/fury.js index 1a0188b93..72a1d547a 100755 --- a/packages/fury-cli/lib/fury.js +++ b/packages/fury-cli/lib/fury.js @@ -10,7 +10,7 @@ const commander = require('commander'); const { highlight } = require('cardinal'); const theme = require('cardinal/themes/tomorrow-night'); const { JSON06Serialiser } = require('minim'); -const fury = require('fury'); +const fury = require('@apielements/core'); const apiBlueprintParser = require('@apielements/apib-parser'); const apiBlueprintSerializer = require('@apielements/apib-serializer'); const apiaryBlueprintParser = require('@apielements/apiaryb-parser'); diff --git a/packages/fury-cli/package.json b/packages/fury-cli/package.json index ba1d91806..e1a680efd 100644 --- a/packages/fury-cli/package.json +++ b/packages/fury-cli/package.json @@ -25,11 +25,11 @@ "@apielements/apiaryb-parser": "^0.1.0", "@apielements/apib-parser": "^0.19.0", "@apielements/apib-serializer": "^0.15.0", + "@apielements/core": "^0.1.0", "@apielements/openapi2-parser": "^0.31.1", "@apielements/openapi3-parser": "^0.12.3", "cardinal": "^2.1.1", "commander": "^5.1.0", - "fury": "3.0.0-beta.14", "js-yaml": "^3.12.0", "minim": "^0.23.4" }, diff --git a/packages/openapi2-parser/package.json b/packages/openapi2-parser/package.json index d0126a03b..35df7e981 100644 --- a/packages/openapi2-parser/package.json +++ b/packages/openapi2-parser/package.json @@ -30,12 +30,12 @@ "z-schema": "^4.1.0" }, "peerDependencies": { - "fury": "3.0.0-beta.14" + "@apielements/core": "^0.1.0" }, "devDependencies": { + "@apielements/core": "^0.1.0", "chai": "^4.2.0", "eslint": "^5.16.0", - "fury": "3.0.0-beta.14", "glob": "^7.1.2", "mocha": "^7.1.1", "swagger-zoo": "^3.1.3" diff --git a/packages/openapi2-parser/test/adapter-test.js b/packages/openapi2-parser/test/adapter-test.js index 0109a5fb3..b5e02f7f4 100644 --- a/packages/openapi2-parser/test/adapter-test.js +++ b/packages/openapi2-parser/test/adapter-test.js @@ -7,7 +7,7 @@ const fs = require('fs'); const path = require('path'); const glob = require('glob'); -const fury = require('fury'); +const fury = require('@apielements/core'); const swaggerZoo = require('swagger-zoo'); const { expect } = require('chai'); const adapter = require('../lib/adapter'); diff --git a/packages/openapi2-parser/test/generator-test.js b/packages/openapi2-parser/test/generator-test.js index 30d3f6fa8..60cab6448 100644 --- a/packages/openapi2-parser/test/generator-test.js +++ b/packages/openapi2-parser/test/generator-test.js @@ -1,5 +1,5 @@ const { expect } = require('chai'); -const { Fury } = require('fury'); +const { Fury } = require('@apielements/core'); const { bodyFromSchema } = require('../lib/generator'); const { minim: namespace } = new Fury(); diff --git a/packages/openapi2-parser/test/inherit-parameters-test.js b/packages/openapi2-parser/test/inherit-parameters-test.js index 1d42dc6bc..5b5993ddb 100644 --- a/packages/openapi2-parser/test/inherit-parameters-test.js +++ b/packages/openapi2-parser/test/inherit-parameters-test.js @@ -1,6 +1,6 @@ const { expect } = require('chai'); const cloneDeep = require('lodash/cloneDeep'); -const fury = require('fury'); +const fury = require('@apielements/core'); const adapter = require('../lib/adapter'); fury.adapters = [adapter]; diff --git a/packages/openapi2-parser/test/parameter-test.js b/packages/openapi2-parser/test/parameter-test.js index 149e6b45b..1bf86b7da 100644 --- a/packages/openapi2-parser/test/parameter-test.js +++ b/packages/openapi2-parser/test/parameter-test.js @@ -1,5 +1,5 @@ const { expect } = require('chai'); -const { Fury } = require('fury'); +const { Fury } = require('@apielements/core'); const Parser = require('../lib/parser'); const { minim: namespace } = new Fury(); diff --git a/packages/openapi2-parser/test/parser-test.js b/packages/openapi2-parser/test/parser-test.js index 374d6eaf2..8bdb1e1b6 100644 --- a/packages/openapi2-parser/test/parser-test.js +++ b/packages/openapi2-parser/test/parser-test.js @@ -1,5 +1,5 @@ const { expect } = require('chai'); -const fury = require('fury'); +const fury = require('@apielements/core'); const Parser = require('../lib/parser'); describe('Parser', () => { diff --git a/packages/openapi2-parser/test/schema-test.js b/packages/openapi2-parser/test/schema-test.js index 4720dfee8..b63f46a59 100644 --- a/packages/openapi2-parser/test/schema-test.js +++ b/packages/openapi2-parser/test/schema-test.js @@ -1,5 +1,5 @@ const { expect } = require('chai'); -const { Fury } = require('fury'); +const { Fury } = require('@apielements/core'); const { DataStructureGenerator } = require('../lib/schema'); const namespace = new Fury().minim; diff --git a/packages/openapi3-parser/package.json b/packages/openapi3-parser/package.json index 959cf8f2e..c3fe84eca 100644 --- a/packages/openapi3-parser/package.json +++ b/packages/openapi3-parser/package.json @@ -29,12 +29,12 @@ "yaml-js": "^0.2.3" }, "peerDependencies": { - "fury": "3.0.0-beta.14" + "@apielements/core": "^0.1.0" }, "devDependencies": { + "@apielements/core": "^0.1.0", "chai": "^4.2.0", "eslint": "^5.16.0", - "fury": "3.0.0-beta.14", "mocha": "^7.1.1" }, "engines": { diff --git a/packages/openapi3-parser/test/integration/parser/oas/parseOpenAPI-test.js b/packages/openapi3-parser/test/integration/parser/oas/parseOpenAPI-test.js index 0d6120eaa..d70e73b06 100644 --- a/packages/openapi3-parser/test/integration/parser/oas/parseOpenAPI-test.js +++ b/packages/openapi3-parser/test/integration/parser/oas/parseOpenAPI-test.js @@ -1,5 +1,5 @@ const { expect } = require('chai'); -const { Fury } = require('fury'); +const { Fury } = require('@apielements/core'); const parse = require('../../../../lib/parser/oas/parseOpenAPIObject'); diff --git a/packages/openapi3-parser/test/integration/testParseFixture.js b/packages/openapi3-parser/test/integration/testParseFixture.js index 37b915caf..9710aff69 100644 --- a/packages/openapi3-parser/test/integration/testParseFixture.js +++ b/packages/openapi3-parser/test/integration/testParseFixture.js @@ -1,6 +1,6 @@ const fs = require('fs'); const { expect } = require('chai'); -const { Fury } = require('fury'); +const { Fury } = require('@apielements/core'); const adapter = require('../../lib/adapter'); // fixme use `util`.`promisify` for node 8+ or https://github.com/apiaryio/api-elements.js/issues/37 diff --git a/packages/openapi3-parser/test/unit/adapter-test.js b/packages/openapi3-parser/test/unit/adapter-test.js index c9dafc9f4..f566838f0 100644 --- a/packages/openapi3-parser/test/unit/adapter-test.js +++ b/packages/openapi3-parser/test/unit/adapter-test.js @@ -1,5 +1,5 @@ const { expect } = require('chai'); -const { Fury } = require('fury'); +const { Fury } = require('@apielements/core'); const adapter = require('../../lib/adapter'); diff --git a/packages/openapi3-parser/test/unit/chai-test.js b/packages/openapi3-parser/test/unit/chai-test.js index 9eb8dcadb..8af1d6de4 100644 --- a/packages/openapi3-parser/test/unit/chai-test.js +++ b/packages/openapi3-parser/test/unit/chai-test.js @@ -1,5 +1,5 @@ const { expect } = require('chai'); -const { Fury } = require('fury'); +const { Fury } = require('@apielements/core'); const { minim: namespace } = new Fury(); diff --git a/packages/openapi3-parser/test/unit/chai.js b/packages/openapi3-parser/test/unit/chai.js index f438f1614..f9c7ba31f 100644 --- a/packages/openapi3-parser/test/unit/chai.js +++ b/packages/openapi3-parser/test/unit/chai.js @@ -2,7 +2,7 @@ /* eslint-disable no-underscore-dangle */ const chai = require('chai'); -const { Fury } = require('fury'); +const { Fury } = require('@apielements/core'); const { minim: namespace } = new Fury(); diff --git a/packages/openapi3-parser/test/unit/parser-test.js b/packages/openapi3-parser/test/unit/parser-test.js index bc53bee2d..2837c8eed 100644 --- a/packages/openapi3-parser/test/unit/parser-test.js +++ b/packages/openapi3-parser/test/unit/parser-test.js @@ -1,4 +1,4 @@ -const { Fury } = require('fury'); +const { Fury } = require('@apielements/core'); const { expect } = require('./chai'); const parse = require('../../lib/parser'); diff --git a/packages/openapi3-parser/test/unit/parser/oas/parseComponentsObject-test.js b/packages/openapi3-parser/test/unit/parser/oas/parseComponentsObject-test.js index bc4207cec..cdcd8b462 100644 --- a/packages/openapi3-parser/test/unit/parser/oas/parseComponentsObject-test.js +++ b/packages/openapi3-parser/test/unit/parser/oas/parseComponentsObject-test.js @@ -1,4 +1,4 @@ -const { Fury } = require('fury'); +const { Fury } = require('@apielements/core'); const { expect } = require('../../chai'); const parse = require('../../../../lib/parser/oas/parseComponentsObject'); const Context = require('../../../../lib/context'); diff --git a/packages/openapi3-parser/test/unit/parser/oas/parseExampleObject-test.js b/packages/openapi3-parser/test/unit/parser/oas/parseExampleObject-test.js index 26abd1aa1..6e883a348 100644 --- a/packages/openapi3-parser/test/unit/parser/oas/parseExampleObject-test.js +++ b/packages/openapi3-parser/test/unit/parser/oas/parseExampleObject-test.js @@ -1,4 +1,4 @@ -const { Fury } = require('fury'); +const { Fury } = require('@apielements/core'); const { expect } = require('../../chai'); const parse = require('../../../../lib/parser/oas/parseExampleObject'); const Context = require('../../../../lib/context'); diff --git a/packages/openapi3-parser/test/unit/parser/oas/parseHeaderObject-test.js b/packages/openapi3-parser/test/unit/parser/oas/parseHeaderObject-test.js index adbd9bea4..5654202ec 100644 --- a/packages/openapi3-parser/test/unit/parser/oas/parseHeaderObject-test.js +++ b/packages/openapi3-parser/test/unit/parser/oas/parseHeaderObject-test.js @@ -1,4 +1,4 @@ -const { Fury } = require('fury'); +const { Fury } = require('@apielements/core'); const { expect } = require('../../chai'); const parse = require('../../../../lib/parser/oas/parseHeaderObject'); const Context = require('../../../../lib/context'); diff --git a/packages/openapi3-parser/test/unit/parser/oas/parseInfoObject-test.js b/packages/openapi3-parser/test/unit/parser/oas/parseInfoObject-test.js index 1b0f515ec..68853e1eb 100644 --- a/packages/openapi3-parser/test/unit/parser/oas/parseInfoObject-test.js +++ b/packages/openapi3-parser/test/unit/parser/oas/parseInfoObject-test.js @@ -1,4 +1,4 @@ -const { Fury } = require('fury'); +const { Fury } = require('@apielements/core'); const { expect } = require('../../chai'); const parse = require('../../../../lib/parser/oas/parseInfoObject'); diff --git a/packages/openapi3-parser/test/unit/parser/oas/parseLicenseObject-test.js b/packages/openapi3-parser/test/unit/parser/oas/parseLicenseObject-test.js index 9fa595e16..e424ead02 100644 --- a/packages/openapi3-parser/test/unit/parser/oas/parseLicenseObject-test.js +++ b/packages/openapi3-parser/test/unit/parser/oas/parseLicenseObject-test.js @@ -1,4 +1,4 @@ -const { Fury } = require('fury'); +const { Fury } = require('@apielements/core'); const { expect } = require('../../chai'); const parse = require('../../../../lib/parser/oas/parseLicenseObject'); diff --git a/packages/openapi3-parser/test/unit/parser/oas/parseMediaTypeObject-test.js b/packages/openapi3-parser/test/unit/parser/oas/parseMediaTypeObject-test.js index ea241cca6..ec1832e09 100644 --- a/packages/openapi3-parser/test/unit/parser/oas/parseMediaTypeObject-test.js +++ b/packages/openapi3-parser/test/unit/parser/oas/parseMediaTypeObject-test.js @@ -1,4 +1,4 @@ -const { Fury } = require('fury'); +const { Fury } = require('@apielements/core'); const { expect } = require('../../chai'); const parse = require('../../../../lib/parser/oas/parseMediaTypeObject'); const Context = require('../../../../lib/context'); diff --git a/packages/openapi3-parser/test/unit/parser/oas/parseOauthFlowObject-test.js b/packages/openapi3-parser/test/unit/parser/oas/parseOauthFlowObject-test.js index 2c6a91a40..2063deb5c 100644 --- a/packages/openapi3-parser/test/unit/parser/oas/parseOauthFlowObject-test.js +++ b/packages/openapi3-parser/test/unit/parser/oas/parseOauthFlowObject-test.js @@ -1,4 +1,4 @@ -const { Fury } = require('fury'); +const { Fury } = require('@apielements/core'); const { expect } = require('../../chai'); const parse = require('../../../../lib/parser/oas/parseOauthFlowObject'); const Context = require('../../../../lib/context'); diff --git a/packages/openapi3-parser/test/unit/parser/oas/parseOauthFlowsObject-test.js b/packages/openapi3-parser/test/unit/parser/oas/parseOauthFlowsObject-test.js index cc9540eeb..ccef9cce9 100644 --- a/packages/openapi3-parser/test/unit/parser/oas/parseOauthFlowsObject-test.js +++ b/packages/openapi3-parser/test/unit/parser/oas/parseOauthFlowsObject-test.js @@ -1,4 +1,4 @@ -const { Fury } = require('fury'); +const { Fury } = require('@apielements/core'); const { expect } = require('../../chai'); const parse = require('../../../../lib/parser/oas/parseOauthFlowsObject'); const Context = require('../../../../lib/context'); diff --git a/packages/openapi3-parser/test/unit/parser/oas/parseOpenAPIObject-test.js b/packages/openapi3-parser/test/unit/parser/oas/parseOpenAPIObject-test.js index af3f05e98..0f1713400 100644 --- a/packages/openapi3-parser/test/unit/parser/oas/parseOpenAPIObject-test.js +++ b/packages/openapi3-parser/test/unit/parser/oas/parseOpenAPIObject-test.js @@ -1,4 +1,4 @@ -const { Fury } = require('fury'); +const { Fury } = require('@apielements/core'); const { expect } = require('../../chai'); const parse = require('../../../../lib/parser/oas/parseOpenAPIObject'); diff --git a/packages/openapi3-parser/test/unit/parser/oas/parseOperationObject-test.js b/packages/openapi3-parser/test/unit/parser/oas/parseOperationObject-test.js index c4a2a4fd9..0b8575c41 100644 --- a/packages/openapi3-parser/test/unit/parser/oas/parseOperationObject-test.js +++ b/packages/openapi3-parser/test/unit/parser/oas/parseOperationObject-test.js @@ -1,4 +1,4 @@ -const { Fury } = require('fury'); +const { Fury } = require('@apielements/core'); const { expect } = require('../../chai'); const parse = require('../../../../lib/parser/oas/parseOperationObject'); const Context = require('../../../../lib/context'); diff --git a/packages/openapi3-parser/test/unit/parser/oas/parseParameterObject-test.js b/packages/openapi3-parser/test/unit/parser/oas/parseParameterObject-test.js index 34d67ac21..477bd89db 100644 --- a/packages/openapi3-parser/test/unit/parser/oas/parseParameterObject-test.js +++ b/packages/openapi3-parser/test/unit/parser/oas/parseParameterObject-test.js @@ -1,4 +1,4 @@ -const { Fury } = require('fury'); +const { Fury } = require('@apielements/core'); const { expect } = require('../../chai'); const parse = require('../../../../lib/parser/oas/parseParameterObject'); const Context = require('../../../../lib/context'); diff --git a/packages/openapi3-parser/test/unit/parser/oas/parseParameterObjects-test.js b/packages/openapi3-parser/test/unit/parser/oas/parseParameterObjects-test.js index 61aa67534..7c29cc5f2 100644 --- a/packages/openapi3-parser/test/unit/parser/oas/parseParameterObjects-test.js +++ b/packages/openapi3-parser/test/unit/parser/oas/parseParameterObjects-test.js @@ -1,4 +1,4 @@ -const { Fury } = require('fury'); +const { Fury } = require('@apielements/core'); const { expect } = require('../../chai'); const parse = require('../../../../lib/parser/oas/parseParameterObjects'); const Context = require('../../../../lib/context'); diff --git a/packages/openapi3-parser/test/unit/parser/oas/parsePathItemObject-test.js b/packages/openapi3-parser/test/unit/parser/oas/parsePathItemObject-test.js index 7fdd0605f..a68d8b05e 100644 --- a/packages/openapi3-parser/test/unit/parser/oas/parsePathItemObject-test.js +++ b/packages/openapi3-parser/test/unit/parser/oas/parsePathItemObject-test.js @@ -1,4 +1,4 @@ -const { Fury } = require('fury'); +const { Fury } = require('@apielements/core'); const { expect } = require('../../chai'); const parse = require('../../../../lib/parser/oas/parsePathItemObject'); diff --git a/packages/openapi3-parser/test/unit/parser/oas/parsePathsObject-test.js b/packages/openapi3-parser/test/unit/parser/oas/parsePathsObject-test.js index fa24eff95..3daabbcfc 100644 --- a/packages/openapi3-parser/test/unit/parser/oas/parsePathsObject-test.js +++ b/packages/openapi3-parser/test/unit/parser/oas/parsePathsObject-test.js @@ -1,4 +1,4 @@ -const { Fury } = require('fury'); +const { Fury } = require('@apielements/core'); const { expect } = require('../../chai'); const parse = require('../../../../lib/parser/oas/parsePathsObject'); diff --git a/packages/openapi3-parser/test/unit/parser/oas/parseReferenceObject-test.js b/packages/openapi3-parser/test/unit/parser/oas/parseReferenceObject-test.js index 3745e77d4..d928865f5 100644 --- a/packages/openapi3-parser/test/unit/parser/oas/parseReferenceObject-test.js +++ b/packages/openapi3-parser/test/unit/parser/oas/parseReferenceObject-test.js @@ -1,4 +1,4 @@ -const { Fury } = require('fury'); +const { Fury } = require('@apielements/core'); const { expect } = require('../../chai'); const parse = require('../../../../lib/parser/oas/parseReferenceObject'); const Context = require('../../../../lib/context'); diff --git a/packages/openapi3-parser/test/unit/parser/oas/parseRequestBodyObject-test.js b/packages/openapi3-parser/test/unit/parser/oas/parseRequestBodyObject-test.js index dabd6b074..889d17d13 100644 --- a/packages/openapi3-parser/test/unit/parser/oas/parseRequestBodyObject-test.js +++ b/packages/openapi3-parser/test/unit/parser/oas/parseRequestBodyObject-test.js @@ -1,4 +1,4 @@ -const { Fury } = require('fury'); +const { Fury } = require('@apielements/core'); const { expect } = require('../../chai'); const parse = require('../../../../lib/parser/oas/parseRequestBodyObject'); const Context = require('../../../../lib/context'); diff --git a/packages/openapi3-parser/test/unit/parser/oas/parseResponseObject-test.js b/packages/openapi3-parser/test/unit/parser/oas/parseResponseObject-test.js index 7545f77bd..1f134de72 100644 --- a/packages/openapi3-parser/test/unit/parser/oas/parseResponseObject-test.js +++ b/packages/openapi3-parser/test/unit/parser/oas/parseResponseObject-test.js @@ -1,4 +1,4 @@ -const { Fury } = require('fury'); +const { Fury } = require('@apielements/core'); const { expect } = require('../../chai'); const parse = require('../../../../lib/parser/oas/parseResponseObject'); const Context = require('../../../../lib/context'); diff --git a/packages/openapi3-parser/test/unit/parser/oas/parseResponsesObject-test.js b/packages/openapi3-parser/test/unit/parser/oas/parseResponsesObject-test.js index 87a82ae29..bf2ff937b 100644 --- a/packages/openapi3-parser/test/unit/parser/oas/parseResponsesObject-test.js +++ b/packages/openapi3-parser/test/unit/parser/oas/parseResponsesObject-test.js @@ -1,4 +1,4 @@ -const { Fury } = require('fury'); +const { Fury } = require('@apielements/core'); const { expect } = require('../../chai'); const parse = require('../../../../lib/parser/oas/parseResponsesObject'); const Context = require('../../../../lib/context'); diff --git a/packages/openapi3-parser/test/unit/parser/oas/parseSchemaObject-test.js b/packages/openapi3-parser/test/unit/parser/oas/parseSchemaObject-test.js index b9e386165..38c5f4825 100644 --- a/packages/openapi3-parser/test/unit/parser/oas/parseSchemaObject-test.js +++ b/packages/openapi3-parser/test/unit/parser/oas/parseSchemaObject-test.js @@ -1,4 +1,4 @@ -const { Fury } = require('fury'); +const { Fury } = require('@apielements/core'); const { expect } = require('../../chai'); const parse = require('../../../../lib/parser/oas/parseSchemaObject'); const Context = require('../../../../lib/context'); diff --git a/packages/openapi3-parser/test/unit/parser/oas/parseSecurityRequirementObject-test.js b/packages/openapi3-parser/test/unit/parser/oas/parseSecurityRequirementObject-test.js index 9245b0ae6..2f86a520d 100644 --- a/packages/openapi3-parser/test/unit/parser/oas/parseSecurityRequirementObject-test.js +++ b/packages/openapi3-parser/test/unit/parser/oas/parseSecurityRequirementObject-test.js @@ -1,4 +1,4 @@ -const { Fury } = require('fury'); +const { Fury } = require('@apielements/core'); const { expect } = require('../../chai'); const parse = require('../../../../lib/parser/oas/parseSecurityRequirementObject'); const Context = require('../../../../lib/context'); diff --git a/packages/openapi3-parser/test/unit/parser/oas/parseSecurityRequirementsArray-test.js b/packages/openapi3-parser/test/unit/parser/oas/parseSecurityRequirementsArray-test.js index 21afcb23e..c8879781a 100644 --- a/packages/openapi3-parser/test/unit/parser/oas/parseSecurityRequirementsArray-test.js +++ b/packages/openapi3-parser/test/unit/parser/oas/parseSecurityRequirementsArray-test.js @@ -1,4 +1,4 @@ -const { Fury } = require('fury'); +const { Fury } = require('@apielements/core'); const { expect } = require('../../chai'); const parse = require('../../../../lib/parser/oas/parseSecurityRequirementsArray'); const Context = require('../../../../lib/context'); diff --git a/packages/openapi3-parser/test/unit/parser/oas/parseSecuritySchemeObject-test.js b/packages/openapi3-parser/test/unit/parser/oas/parseSecuritySchemeObject-test.js index e3dec07f7..756363c62 100644 --- a/packages/openapi3-parser/test/unit/parser/oas/parseSecuritySchemeObject-test.js +++ b/packages/openapi3-parser/test/unit/parser/oas/parseSecuritySchemeObject-test.js @@ -1,4 +1,4 @@ -const { Fury } = require('fury'); +const { Fury } = require('@apielements/core'); const { expect } = require('../../chai'); const parse = require('../../../../lib/parser/oas/parseSecuritySchemeObject'); const Context = require('../../../../lib/context'); diff --git a/packages/openapi3-parser/test/unit/parser/oas/parseServerObject-test.js b/packages/openapi3-parser/test/unit/parser/oas/parseServerObject-test.js index 1df769870..dd4c90c0b 100644 --- a/packages/openapi3-parser/test/unit/parser/oas/parseServerObject-test.js +++ b/packages/openapi3-parser/test/unit/parser/oas/parseServerObject-test.js @@ -1,4 +1,4 @@ -const { Fury } = require('fury'); +const { Fury } = require('@apielements/core'); const { expect } = require('../../chai'); const parse = require('../../../../lib/parser/oas/parseServerObject'); diff --git a/packages/openapi3-parser/test/unit/parser/oas/parseServerVariableObject-test.js b/packages/openapi3-parser/test/unit/parser/oas/parseServerVariableObject-test.js index a14d09e7c..b73bd8c6f 100644 --- a/packages/openapi3-parser/test/unit/parser/oas/parseServerVariableObject-test.js +++ b/packages/openapi3-parser/test/unit/parser/oas/parseServerVariableObject-test.js @@ -1,4 +1,4 @@ -const { Fury } = require('fury'); +const { Fury } = require('@apielements/core'); const { expect } = require('../../chai'); const parse = require('../../../../lib/parser/oas/parseServerVariableObject'); diff --git a/packages/openapi3-parser/test/unit/parser/oas/parseServersArray-test.js b/packages/openapi3-parser/test/unit/parser/oas/parseServersArray-test.js index bd280008e..b7d0b2ca2 100644 --- a/packages/openapi3-parser/test/unit/parser/oas/parseServersArray-test.js +++ b/packages/openapi3-parser/test/unit/parser/oas/parseServersArray-test.js @@ -1,4 +1,4 @@ -const { Fury } = require('fury'); +const { Fury } = require('@apielements/core'); const { expect } = require('../../chai'); const parse = require('../../../../lib/parser/oas/parseServersArray'); const Context = require('../../../../lib/context'); diff --git a/packages/openapi3-parser/test/unit/parser/openapi-test.js b/packages/openapi3-parser/test/unit/parser/openapi-test.js index 88929e031..854b731c5 100644 --- a/packages/openapi3-parser/test/unit/parser/openapi-test.js +++ b/packages/openapi3-parser/test/unit/parser/openapi-test.js @@ -1,4 +1,4 @@ -const { Fury } = require('fury'); +const { Fury } = require('@apielements/core'); const { expect } = require('../chai'); const parseOpenAPI = require('../../../lib/parser/openapi'); diff --git a/packages/openapi3-parser/test/unit/parser/parseArray-test.js b/packages/openapi3-parser/test/unit/parser/parseArray-test.js index 9f6dd8fa8..fb25e0635 100644 --- a/packages/openapi3-parser/test/unit/parser/parseArray-test.js +++ b/packages/openapi3-parser/test/unit/parser/parseArray-test.js @@ -1,4 +1,4 @@ -const { Fury } = require('fury'); +const { Fury } = require('@apielements/core'); const { expect } = require('../chai'); const parseArray = require('../../../lib/parser/parseArray'); diff --git a/packages/openapi3-parser/test/unit/parser/parseBoolean-test.js b/packages/openapi3-parser/test/unit/parser/parseBoolean-test.js index 725f0f5b7..bf9fd8d5d 100644 --- a/packages/openapi3-parser/test/unit/parser/parseBoolean-test.js +++ b/packages/openapi3-parser/test/unit/parser/parseBoolean-test.js @@ -1,4 +1,4 @@ -const { Fury } = require('fury'); +const { Fury } = require('@apielements/core'); const { expect } = require('../chai'); const parseBoolean = require('../../../lib/parser/parseBoolean'); diff --git a/packages/openapi3-parser/test/unit/parser/parseCopy-test.js b/packages/openapi3-parser/test/unit/parser/parseCopy-test.js index 223fd761f..dafa16fdb 100644 --- a/packages/openapi3-parser/test/unit/parser/parseCopy-test.js +++ b/packages/openapi3-parser/test/unit/parser/parseCopy-test.js @@ -1,4 +1,4 @@ -const { Fury } = require('fury'); +const { Fury } = require('@apielements/core'); const { expect } = require('../chai'); const parseCopy = require('../../../lib/parser/parseCopy'); diff --git a/packages/openapi3-parser/test/unit/parser/parseMap-test.js b/packages/openapi3-parser/test/unit/parser/parseMap-test.js index b2f689839..163ac9715 100644 --- a/packages/openapi3-parser/test/unit/parser/parseMap-test.js +++ b/packages/openapi3-parser/test/unit/parser/parseMap-test.js @@ -1,5 +1,5 @@ const R = require('ramda'); -const { Fury } = require('fury'); +const { Fury } = require('@apielements/core'); const { expect } = require('../chai'); const parseMap = require('../../../lib/parser/parseMap'); diff --git a/packages/openapi3-parser/test/unit/parser/parseObject-test.js b/packages/openapi3-parser/test/unit/parser/parseObject-test.js index e4fd48c2c..f23ba586b 100644 --- a/packages/openapi3-parser/test/unit/parser/parseObject-test.js +++ b/packages/openapi3-parser/test/unit/parser/parseObject-test.js @@ -1,5 +1,5 @@ const R = require('ramda'); -const { Fury } = require('fury'); +const { Fury } = require('@apielements/core'); const { expect } = require('../chai'); const parseObject = require('../../../lib/parser/parseObject'); diff --git a/packages/openapi3-parser/test/unit/parser/parseString-test.js b/packages/openapi3-parser/test/unit/parser/parseString-test.js index 4f0a62259..fa27f650f 100644 --- a/packages/openapi3-parser/test/unit/parser/parseString-test.js +++ b/packages/openapi3-parser/test/unit/parser/parseString-test.js @@ -1,4 +1,4 @@ -const { Fury } = require('fury'); +const { Fury } = require('@apielements/core'); const { expect } = require('../chai'); const parseString = require('../../../lib/parser/parseString'); diff --git a/packages/openapi3-parser/test/unit/parser/parseYAML-test.js b/packages/openapi3-parser/test/unit/parser/parseYAML-test.js index 9f5adfdcd..bbb0c33ed 100644 --- a/packages/openapi3-parser/test/unit/parser/parseYAML-test.js +++ b/packages/openapi3-parser/test/unit/parser/parseYAML-test.js @@ -1,4 +1,4 @@ -const { Fury } = require('fury'); +const { Fury } = require('@apielements/core'); const { expect } = require('../chai'); const Context = require('../../../lib/context'); diff --git a/packages/openapi3-parser/test/unit/pipeParseResult-test.js b/packages/openapi3-parser/test/unit/pipeParseResult-test.js index cad74ff7c..727dc74c1 100644 --- a/packages/openapi3-parser/test/unit/pipeParseResult-test.js +++ b/packages/openapi3-parser/test/unit/pipeParseResult-test.js @@ -1,5 +1,5 @@ const R = require('ramda'); -const { Fury } = require('fury'); +const { Fury } = require('@apielements/core'); const { expect } = require('./chai'); const { createError, createWarning } = require('../../lib/elements'); const pipeParseResult = require('../../lib/pipeParseResult'); diff --git a/packages/remote/package.json b/packages/remote/package.json index 1b9a545bd..d12e9048f 100644 --- a/packages/remote/package.json +++ b/packages/remote/package.json @@ -26,12 +26,12 @@ "deckardcain": "^1.0.0" }, "peerDependencies": { - "fury": "3.0.0-beta.14" + "@apielements/core": "^0.1.0" }, "devDependencies": { + "@apielements/core": "^0.1.0", "chai": "^4.2.0", "eslint": "^5.16.0", - "fury": "3.0.0-beta.14", "mocha": "^7.1.1" } } diff --git a/packages/remote/test/fury-test.js b/packages/remote/test/fury-test.js index f8fbcf73a..f53eaf259 100644 --- a/packages/remote/test/fury-test.js +++ b/packages/remote/test/fury-test.js @@ -1,5 +1,5 @@ const { expect } = require('chai'); -const { Fury } = require('fury'); +const { Fury } = require('@apielements/core'); const FuryRemoteAdapter = require('../lib/adapter'); const blueprintSource = 'FORMAT: 1A\n\n# API\n'; From f1f2c77ce976cbe8cbdd02945887e37e9d0b8f29 Mon Sep 17 00:00:00 2001 From: Kyle Fuller Date: Fri, 12 Jun 2020 13:14:16 +0100 Subject: [PATCH 2/3] refactor(cli): rename fury-cli to cli --- .circleci/smoke.sh | 2 +- packages/{fury-cli => cli}/CHANGELOG.md | 6 +- packages/{fury-cli => cli}/README.md | 11 +- packages/{fury-cli => cli}/lib/fury.js | 2 +- packages/cli/output.json | 287092 +++++++++++++++++++++ packages/{fury-cli => cli}/package.json | 8 +- 6 files changed, 287108 insertions(+), 13 deletions(-) rename packages/{fury-cli => cli}/CHANGELOG.md (97%) rename packages/{fury-cli => cli}/README.md (86%) rename packages/{fury-cli => cli}/lib/fury.js (99%) create mode 100644 packages/cli/output.json rename packages/{fury-cli => cli}/package.json (89%) diff --git a/.circleci/smoke.sh b/.circleci/smoke.sh index b6309fa4d..4e5d379ea 100755 --- a/.circleci/smoke.sh +++ b/.circleci/smoke.sh @@ -28,7 +28,7 @@ install openapi2-parser install openapi3-parser install apiaryb-parser install apib-serializer -install fury-cli +install cli cd "$TMPDIR" npx fury --help diff --git a/packages/fury-cli/CHANGELOG.md b/packages/cli/CHANGELOG.md similarity index 97% rename from packages/fury-cli/CHANGELOG.md rename to packages/cli/CHANGELOG.md index 8a962ff9d..4d46e99df 100644 --- a/packages/fury-cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,4 +1,8 @@ -# Changelog +# API Elements: CLI Changelog + +## 0.10.0 (2020-06-12) + +The package has been renamed to `@apielements/cli`. ## 0.9.4 (2020-04-20) diff --git a/packages/fury-cli/README.md b/packages/cli/README.md similarity index 86% rename from packages/fury-cli/README.md rename to packages/cli/README.md index 222916ebc..7da855a91 100644 --- a/packages/fury-cli/README.md +++ b/packages/cli/README.md @@ -1,14 +1,13 @@ -# Fury CLI +# API Elements CLI -Command line interface for the [fury](https://github.com/apiaryio/api-elements.js/tree/master/packages/fury) -API Description SDK. Fury allows you to parse API Descriptions into [API -Elements](http://api-elements.readthedocs.org/) or other API Description -formats. +Command line interface for [API Elements](https://apielements.org) +and the [API Elements JavaScript +tooling](https://apielements.org/projects/js/). ## Install ```shell -$ npm install -g fury-cli +$ npm install -g @apielements/cli ``` ## Usage diff --git a/packages/fury-cli/lib/fury.js b/packages/cli/lib/fury.js similarity index 99% rename from packages/fury-cli/lib/fury.js rename to packages/cli/lib/fury.js index 72a1d547a..046291f02 100755 --- a/packages/fury-cli/lib/fury.js +++ b/packages/cli/lib/fury.js @@ -193,7 +193,7 @@ function getPackage(name) { } function getVersion() { - const packages = ['fury-cli'].concat(adapters); + const packages = ['@apielements/cli'].concat(adapters); return packages .map(getPackage) diff --git a/packages/cli/output.json b/packages/cli/output.json new file mode 100644 index 000000000..3b05c7e5b --- /dev/null +++ b/packages/cli/output.json @@ -0,0 +1,287092 @@ +{ + "element": "parseResult", + "content": [ + { + "element": "category", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "api" + } + ] + }, + "title": { + "element": "string", + "content": "Artes API Doc - studio.apicur.io" + } + }, + "attributes": { + "version": { + "element": "string", + "content": "CODE" + }, + "metadata": { + "element": "array", + "content": [ + { + "element": "member", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "user" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "HOST" + }, + "value": { + "element": "string", + "content": "artes-dev.isabet.com.tr" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Artes Service API Documentation" + }, + { + "element": "category", + "meta": { + "title": { + "element": "string", + "content": "account-resource" + }, + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "resourceGroup" + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Account Resource" + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/account" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getAccount" + }, + "id": { + "element": "string", + "content": "getAccountUsingGET" + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"UserDTO\",\"type\":\"object\",\"properties\":{\"activated\":{\"type\":\"boolean\"},\"authorities\":{\"type\":\"array\",\"items\":{\"type\":\"string\"}},\"createdBy\":{\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"email\":{\"maxLength\":254,\"minLength\":5,\"type\":\"string\"},\"firstName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"imageUrl\":{\"maxLength\":256,\"minLength\":0,\"type\":\"string\"},\"langKey\":{\"maxLength\":6,\"minLength\":2,\"type\":\"string\"},\"lastModifiedBy\":{\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"lastName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"login\":{\"maxLength\":50,\"minLength\":1,\"pattern\":\"^[_.@A-Za-z0-9-]*$\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/UserDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "saveAccount" + }, + "id": { + "element": "string", + "content": "saveAccountUsingPOST" + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"activated\": true,\n \"authorities\": [],\n \"createdBy\": \"Ut officia cillum\",\n \"createdDate\": \"1951-10-03T17:00:08.963Z\",\n \"email\": \"labore deserunt\",\n \"firstName\": \"sunt \",\n \"id\": -58610004,\n \"imageUrl\": \"do esse mollit elit\",\n \"langKey\": \"veni\",\n \"lastModifiedBy\": \"dolor cillum proident\",\n \"lastModifiedDate\": \"2008-09-04T02:26:04.809Z\",\n \"lastName\": \"incididunt non id dolore\",\n \"login\": \"jmd7Xj4mQn\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"UserDTO\",\"type\":\"object\",\"properties\":{\"activated\":{\"type\":\"boolean\"},\"authorities\":{\"type\":\"array\",\"items\":{\"type\":\"string\"}},\"createdBy\":{\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"email\":{\"maxLength\":254,\"minLength\":5,\"type\":\"string\"},\"firstName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"imageUrl\":{\"maxLength\":256,\"minLength\":0,\"type\":\"string\"},\"langKey\":{\"maxLength\":6,\"minLength\":2,\"type\":\"string\"},\"lastModifiedBy\":{\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"lastName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"login\":{\"maxLength\":50,\"minLength\":1,\"pattern\":\"^[_.@A-Za-z0-9-]*$\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/UserDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"activated\": false,\n \"authorities\": [],\n \"createdBy\": \"qui des\",\n \"createdDate\": \"1998-03-04T22:14:43.739Z\",\n \"email\": \"sit ut exercitation ad\",\n \"firstName\": \"moll\",\n \"id\": 38219172,\n \"imageUrl\": \"culpa ex officia sint\",\n \"langKey\": \"nisi U\",\n \"lastModifiedBy\": \"culpa\",\n \"lastModifiedDate\": \"1978-05-26T11:11:44.220Z\",\n \"lastName\": \"pariatur\",\n \"login\": \"oFZW_C8\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"UserDTO\",\"type\":\"object\",\"properties\":{\"activated\":{\"type\":\"boolean\"},\"authorities\":{\"type\":\"array\",\"items\":{\"type\":\"string\"}},\"createdBy\":{\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"email\":{\"maxLength\":254,\"minLength\":5,\"type\":\"string\"},\"firstName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"imageUrl\":{\"maxLength\":256,\"minLength\":0,\"type\":\"string\"},\"langKey\":{\"maxLength\":6,\"minLength\":2,\"type\":\"string\"},\"lastModifiedBy\":{\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"lastName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"login\":{\"maxLength\":50,\"minLength\":1,\"pattern\":\"^[_.@A-Za-z0-9-]*$\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/UserDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"activated\": true,\n \"authorities\": [],\n \"createdBy\": \"qui\",\n \"createdDate\": \"2004-02-05T13:54:03.066Z\",\n \"email\": \"Excepteur Lorem nisi aliquip\",\n \"firstName\": \"mollit sit Lorem sed cupidatat\",\n \"id\": 80328138,\n \"imageUrl\": \"dolor culpa in non\",\n \"langKey\": \"laboru\",\n \"lastModifiedBy\": \"velit cillum in veniam\",\n \"lastModifiedDate\": \"2012-09-26T05:56:17.461Z\",\n \"lastName\": \"in mollit e\",\n \"login\": \"nDpB2IVTKp\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"UserDTO\",\"type\":\"object\",\"properties\":{\"activated\":{\"type\":\"boolean\"},\"authorities\":{\"type\":\"array\",\"items\":{\"type\":\"string\"}},\"createdBy\":{\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"email\":{\"maxLength\":254,\"minLength\":5,\"type\":\"string\"},\"firstName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"imageUrl\":{\"maxLength\":256,\"minLength\":0,\"type\":\"string\"},\"langKey\":{\"maxLength\":6,\"minLength\":2,\"type\":\"string\"},\"lastModifiedBy\":{\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"lastName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"login\":{\"maxLength\":50,\"minLength\":1,\"pattern\":\"^[_.@A-Za-z0-9-]*$\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/UserDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"activated\": true,\n \"authorities\": [],\n \"createdBy\": \"sed\",\n \"createdDate\": \"2015-05-01T07:33:41.181Z\",\n \"email\": \"ex anim eiusmod qui\",\n \"firstName\": \"ut nostrud non\",\n \"id\": 45961084,\n \"imageUrl\": \"id quis minim\",\n \"langKey\": \"nu\",\n \"lastModifiedBy\": \"ut aute cupidata\",\n \"lastModifiedDate\": \"2009-01-07T08:19:15.005Z\",\n \"lastName\": \"cupidatat mollit\",\n \"login\": \"_Ah\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"UserDTO\",\"type\":\"object\",\"properties\":{\"activated\":{\"type\":\"boolean\"},\"authorities\":{\"type\":\"array\",\"items\":{\"type\":\"string\"}},\"createdBy\":{\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"email\":{\"maxLength\":254,\"minLength\":5,\"type\":\"string\"},\"firstName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"imageUrl\":{\"maxLength\":256,\"minLength\":0,\"type\":\"string\"},\"langKey\":{\"maxLength\":6,\"minLength\":2,\"type\":\"string\"},\"lastModifiedBy\":{\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"lastName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"login\":{\"maxLength\":50,\"minLength\":1,\"pattern\":\"^[_.@A-Za-z0-9-]*$\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/UserDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"activated\": false,\n \"authorities\": [],\n \"createdBy\": \"do est ea id dolore\",\n \"createdDate\": \"2006-09-28T06:41:35.826Z\",\n \"email\": \"qui tempor eiusmod fugiat\",\n \"firstName\": \"aute cillum quis irure\",\n \"id\": 48585678,\n \"imageUrl\": \"id Excepteur Duis enim\",\n \"langKey\": \"fugia\",\n \"lastModifiedBy\": \"eiusmod dolor commodo\",\n \"lastModifiedDate\": \"1966-02-28T22:06:26.850Z\",\n \"lastName\": \"eu deserunt esse adi\",\n \"login\": \" \"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"UserDTO\",\"type\":\"object\",\"properties\":{\"activated\":{\"type\":\"boolean\"},\"authorities\":{\"type\":\"array\",\"items\":{\"type\":\"string\"}},\"createdBy\":{\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"email\":{\"maxLength\":254,\"minLength\":5,\"type\":\"string\"},\"firstName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"imageUrl\":{\"maxLength\":256,\"minLength\":0,\"type\":\"string\"},\"langKey\":{\"maxLength\":6,\"minLength\":2,\"type\":\"string\"},\"lastModifiedBy\":{\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"lastName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"login\":{\"maxLength\":50,\"minLength\":1,\"pattern\":\"^[_.@A-Za-z0-9-]*$\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/UserDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/account/change-default-lang" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "requestChangeDefaultLang" + }, + "id": { + "element": "string", + "content": "requestChangeDefaultLangUsingPOST" + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "deserunt" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"string\"}" + }, + { + "element": "dataStructure", + "content": { + "element": "string" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "culpa incididunt tempor" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"string\"}" + }, + { + "element": "dataStructure", + "content": { + "element": "string" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "reprehender" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"string\"}" + }, + { + "element": "dataStructure", + "content": { + "element": "string" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "quis" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"string\"}" + }, + { + "element": "dataStructure", + "content": { + "element": "string" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "in sunt veniam nisi do" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"string\"}" + }, + { + "element": "dataStructure", + "content": { + "element": "string" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/account/change-password" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "changePassword" + }, + "id": { + "element": "string", + "content": "changePasswordUsingPOST" + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"currentPassword\": \"ut culpa sed\",\n \"newPassword\": \"enim voluptate adipisicing sint\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"PasswordChangeDTO\",\"type\":\"object\",\"properties\":{\"currentPassword\":{\"type\":\"string\"},\"newPassword\":{\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/PasswordChangeDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"currentPassword\": \"mollit nulla ut\",\n \"newPassword\": \"minim consequat ut Excepteur\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"PasswordChangeDTO\",\"type\":\"object\",\"properties\":{\"currentPassword\":{\"type\":\"string\"},\"newPassword\":{\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/PasswordChangeDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"currentPassword\": \"ipsum esse\",\n \"newPassword\": \"eu occaecat esse fugiat Excepteur\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"PasswordChangeDTO\",\"type\":\"object\",\"properties\":{\"currentPassword\":{\"type\":\"string\"},\"newPassword\":{\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/PasswordChangeDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"currentPassword\": \"est tempor aute et Duis\",\n \"newPassword\": \"cillum magna ea\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"PasswordChangeDTO\",\"type\":\"object\",\"properties\":{\"currentPassword\":{\"type\":\"string\"},\"newPassword\":{\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/PasswordChangeDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"currentPassword\": \"laboris proident officia \",\n \"newPassword\": \"ea laborum cillum\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"PasswordChangeDTO\",\"type\":\"object\",\"properties\":{\"currentPassword\":{\"type\":\"string\"},\"newPassword\":{\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/PasswordChangeDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/account/reset-password/finish" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "finishPasswordReset" + }, + "id": { + "element": "string", + "content": "finishPasswordResetUsingPOST" + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"key\": \"consequat incididunt Ut esse\",\n \"newPassword\": \"eiusmod reprehenderit\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"KeyAndPasswordVM\",\"type\":\"object\",\"properties\":{\"key\":{\"type\":\"string\"},\"newPassword\":{\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/KeyAndPasswordVM" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"key\": \"adipisicing ut nisi Excepteur id\",\n \"newPassword\": \"Duis magna in irure ipsum\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"KeyAndPasswordVM\",\"type\":\"object\",\"properties\":{\"key\":{\"type\":\"string\"},\"newPassword\":{\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/KeyAndPasswordVM" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"key\": \"Lorem nulla culpa dolore\",\n \"newPassword\": \"sit ut nulla Excepteur\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"KeyAndPasswordVM\",\"type\":\"object\",\"properties\":{\"key\":{\"type\":\"string\"},\"newPassword\":{\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/KeyAndPasswordVM" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"key\": \"laborum consectetur dolor elit ad\",\n \"newPassword\": \"Excepteur\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"KeyAndPasswordVM\",\"type\":\"object\",\"properties\":{\"key\":{\"type\":\"string\"},\"newPassword\":{\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/KeyAndPasswordVM" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"key\": \"sunt in laborum aliqua\",\n \"newPassword\": \"aliqua ea officia\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"KeyAndPasswordVM\",\"type\":\"object\",\"properties\":{\"key\":{\"type\":\"string\"},\"newPassword\":{\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/KeyAndPasswordVM" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/account/reset-password/init" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "requestPasswordReset" + }, + "id": { + "element": "string", + "content": "requestPasswordResetUsingPOST" + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "laborum" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"string\"}" + }, + { + "element": "dataStructure", + "content": { + "element": "string" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "aute" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"string\"}" + }, + { + "element": "dataStructure", + "content": { + "element": "string" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "irure reprehenderit sunt" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"string\"}" + }, + { + "element": "dataStructure", + "content": { + "element": "string" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "ad tempor" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"string\"}" + }, + { + "element": "dataStructure", + "content": { + "element": "string" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "pariatur ea" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"string\"}" + }, + { + "element": "dataStructure", + "content": { + "element": "string" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/activate" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "activateAccount" + }, + "id": { + "element": "string", + "content": "activateAccountUsingGET" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/activate{?key}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "key" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "key" + }, + "value": { + "element": "string" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/authenticate" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "isAuthenticated" + }, + "id": { + "element": "string", + "content": "isAuthenticatedUsingGET" + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"string\"}" + }, + { + "element": "dataStructure", + "content": { + "element": "string" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "authorize" + }, + "id": { + "element": "string", + "content": "authorizeUsingPOST" + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"password\": \"aliqua consequat elit\",\n \"username\": \"in anim dolor\",\n \"channel\": \"MOBILE_APP\",\n \"rememberMe\": true,\n \"secretCode\": \"ullamco ipsum sint\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"LoginVM\",\"required\":[\"password\",\"username\"],\"type\":\"object\",\"properties\":{\"channel\":{\"enum\":[\"MAIL\",\"MOBILE_APP\"],\"type\":\"string\"},\"password\":{\"maxLength\":100,\"minLength\":4,\"type\":\"string\"},\"rememberMe\":{\"type\":\"boolean\"},\"secretCode\":{\"type\":\"string\"},\"username\":{\"maxLength\":50,\"minLength\":1,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/LoginVM" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"JWTToken\",\"type\":\"object\",\"properties\":{\"id_token\":{\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/JWTToken" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"password\": \"irure\",\n \"username\": \"Duis\",\n \"channel\": \"MAIL\",\n \"rememberMe\": true,\n \"secretCode\": \"ut dolore officia\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"LoginVM\",\"required\":[\"password\",\"username\"],\"type\":\"object\",\"properties\":{\"channel\":{\"enum\":[\"MAIL\",\"MOBILE_APP\"],\"type\":\"string\"},\"password\":{\"maxLength\":100,\"minLength\":4,\"type\":\"string\"},\"rememberMe\":{\"type\":\"boolean\"},\"secretCode\":{\"type\":\"string\"},\"username\":{\"maxLength\":50,\"minLength\":1,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/LoginVM" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"password\": \"adipisicing eu Except\",\n \"username\": \"veniam\",\n \"channel\": \"MAIL\",\n \"rememberMe\": false,\n \"secretCode\": \"Duis dolore\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"LoginVM\",\"required\":[\"password\",\"username\"],\"type\":\"object\",\"properties\":{\"channel\":{\"enum\":[\"MAIL\",\"MOBILE_APP\"],\"type\":\"string\"},\"password\":{\"maxLength\":100,\"minLength\":4,\"type\":\"string\"},\"rememberMe\":{\"type\":\"boolean\"},\"secretCode\":{\"type\":\"string\"},\"username\":{\"maxLength\":50,\"minLength\":1,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/LoginVM" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"password\": \"esse\",\n \"username\": \"irure sed Duis\",\n \"channel\": \"MOBILE_APP\",\n \"rememberMe\": false,\n \"secretCode\": \"qui proident \"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"LoginVM\",\"required\":[\"password\",\"username\"],\"type\":\"object\",\"properties\":{\"channel\":{\"enum\":[\"MAIL\",\"MOBILE_APP\"],\"type\":\"string\"},\"password\":{\"maxLength\":100,\"minLength\":4,\"type\":\"string\"},\"rememberMe\":{\"type\":\"boolean\"},\"secretCode\":{\"type\":\"string\"},\"username\":{\"maxLength\":50,\"minLength\":1,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/LoginVM" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"password\": \"Lorem\",\n \"username\": \"culpa pariatur Duis\",\n \"channel\": \"MOBILE_APP\",\n \"rememberMe\": true,\n \"secretCode\": \"voluptate irure commodo ea\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"LoginVM\",\"required\":[\"password\",\"username\"],\"type\":\"object\",\"properties\":{\"channel\":{\"enum\":[\"MAIL\",\"MOBILE_APP\"],\"type\":\"string\"},\"password\":{\"maxLength\":100,\"minLength\":4,\"type\":\"string\"},\"rememberMe\":{\"type\":\"boolean\"},\"secretCode\":{\"type\":\"string\"},\"username\":{\"maxLength\":50,\"minLength\":1,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/LoginVM" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/register" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "registerAccount" + }, + "id": { + "element": "string", + "content": "registerAccountUsingPOST" + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"activated\": true,\n \"authorities\": [],\n \"createdBy\": \"eu Lorem ex tempor\",\n \"createdDate\": \"1952-09-28T17:58:45.505Z\",\n \"email\": \"Lorem\",\n \"firstName\": \"non occaecat consectetur fugiat proident\",\n \"id\": 31136323,\n \"imageUrl\": \"cillum pariatur Duis sit eiusmod\",\n \"langKey\": \"amet q\",\n \"lastModifiedBy\": \"dolor esse commodo in elit\",\n \"lastModifiedDate\": \"2009-05-13T18:35:29.112Z\",\n \"lastName\": \"adipisicing\",\n \"login\": \"k._rC@I\",\n \"password\": \"reprehenderit elit sunt\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ManagedUserVM\",\"type\":\"object\",\"properties\":{\"activated\":{\"type\":\"boolean\"},\"authorities\":{\"type\":\"array\",\"items\":{\"type\":\"string\"}},\"createdBy\":{\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"email\":{\"maxLength\":254,\"minLength\":5,\"type\":\"string\"},\"firstName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"imageUrl\":{\"maxLength\":256,\"minLength\":0,\"type\":\"string\"},\"langKey\":{\"maxLength\":6,\"minLength\":2,\"type\":\"string\"},\"lastModifiedBy\":{\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"lastName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"login\":{\"maxLength\":50,\"minLength\":1,\"pattern\":\"^[_.@A-Za-z0-9-]*$\",\"type\":\"string\"},\"password\":{\"maxLength\":100,\"minLength\":4,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ManagedUserVM" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"activated\": true,\n \"authorities\": [],\n \"createdBy\": \"vo\",\n \"createdDate\": \"2019-01-16T01:54:40.504Z\",\n \"email\": \"aliquip labore elit\",\n \"firstName\": \"dolor Excepte\",\n \"id\": 14908869,\n \"imageUrl\": \"in\",\n \"langKey\": \"am\",\n \"lastModifiedBy\": \"reprehenderit in et\",\n \"lastModifiedDate\": \"1973-04-12T14:37:36.732Z\",\n \"lastName\": \"Lorem\",\n \"login\": \"sgYbmeD8OE\",\n \"password\": \"elit eiusmod ve\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ManagedUserVM\",\"type\":\"object\",\"properties\":{\"activated\":{\"type\":\"boolean\"},\"authorities\":{\"type\":\"array\",\"items\":{\"type\":\"string\"}},\"createdBy\":{\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"email\":{\"maxLength\":254,\"minLength\":5,\"type\":\"string\"},\"firstName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"imageUrl\":{\"maxLength\":256,\"minLength\":0,\"type\":\"string\"},\"langKey\":{\"maxLength\":6,\"minLength\":2,\"type\":\"string\"},\"lastModifiedBy\":{\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"lastName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"login\":{\"maxLength\":50,\"minLength\":1,\"pattern\":\"^[_.@A-Za-z0-9-]*$\",\"type\":\"string\"},\"password\":{\"maxLength\":100,\"minLength\":4,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ManagedUserVM" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"activated\": true,\n \"authorities\": [],\n \"createdBy\": \"voluptate sunt dolor a\",\n \"createdDate\": \"2012-08-17T22:39:35.546Z\",\n \"email\": \"Duisculpa exercitation reprehenderit consectetur sit\",\n \"firstName\": \"magna aliqua\",\n \"id\": -83668462,\n \"imageUrl\": \"enim et minim sint\",\n \"langKey\": \"no\",\n \"lastModifiedBy\": \"et proident non\",\n \"lastModifiedDate\": \"1962-03-13T12:57:29.757Z\",\n \"lastName\": \"sit amet voluptate inci\",\n \"login\": \" \",\n \"password\": \"occaecat\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ManagedUserVM\",\"type\":\"object\",\"properties\":{\"activated\":{\"type\":\"boolean\"},\"authorities\":{\"type\":\"array\",\"items\":{\"type\":\"string\"}},\"createdBy\":{\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"email\":{\"maxLength\":254,\"minLength\":5,\"type\":\"string\"},\"firstName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"imageUrl\":{\"maxLength\":256,\"minLength\":0,\"type\":\"string\"},\"langKey\":{\"maxLength\":6,\"minLength\":2,\"type\":\"string\"},\"lastModifiedBy\":{\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"lastName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"login\":{\"maxLength\":50,\"minLength\":1,\"pattern\":\"^[_.@A-Za-z0-9-]*$\",\"type\":\"string\"},\"password\":{\"maxLength\":100,\"minLength\":4,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ManagedUserVM" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"activated\": false,\n \"authorities\": [],\n \"createdBy\": \"ullamco aliquip\",\n \"createdDate\": \"1979-07-04T13:44:52.646Z\",\n \"email\": \"do dolore pariatur velit\",\n \"firstName\": \"occaecat dolor a\",\n \"id\": 73894117,\n \"imageUrl\": \"sint ut elit dolore labore\",\n \"langKey\": \"occaec\",\n \"lastModifiedBy\": \"Duis\",\n \"lastModifiedDate\": \"2001-01-22T23:44:58.313Z\",\n \"lastName\": \"eiusmod\",\n \"login\": \" \",\n \"password\": \"in est enim officia\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ManagedUserVM\",\"type\":\"object\",\"properties\":{\"activated\":{\"type\":\"boolean\"},\"authorities\":{\"type\":\"array\",\"items\":{\"type\":\"string\"}},\"createdBy\":{\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"email\":{\"maxLength\":254,\"minLength\":5,\"type\":\"string\"},\"firstName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"imageUrl\":{\"maxLength\":256,\"minLength\":0,\"type\":\"string\"},\"langKey\":{\"maxLength\":6,\"minLength\":2,\"type\":\"string\"},\"lastModifiedBy\":{\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"lastName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"login\":{\"maxLength\":50,\"minLength\":1,\"pattern\":\"^[_.@A-Za-z0-9-]*$\",\"type\":\"string\"},\"password\":{\"maxLength\":100,\"minLength\":4,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ManagedUserVM" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "category", + "meta": { + "title": { + "element": "string", + "content": "city-resource" + }, + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "resourceGroup" + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "City Resource" + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/adr/cities" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getAllCities" + }, + "id": { + "element": "string", + "content": "getAllCitiesUsingGET" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/adr/cities{?countryId%2eequals,countryId%2egreaterOrEqualThan,countryId%2egreaterThan,countryId%2ein*,countryId%2elessOrEqualThan,countryId%2elessThan,countryId%2especified,id%2eequals,id%2egreaterOrEqualThan,id%2egreaterThan,id%2ein*,id%2elessOrEqualThan,id%2elessThan,id%2especified,name%2econtains,name%2eequals,name%2ein*,name%2especified,page,size,sort*,stateAddressId%2eequals,stateAddressId%2egreaterOrEqualThan,stateAddressId%2egreaterThan,stateAddressId%2ein*,stateAddressId%2elessOrEqualThan,stateAddressId%2elessThan,stateAddressId%2especified,translationId%2eequals,translationId%2egreaterOrEqualThan,translationId%2egreaterThan,translationId%2ein*,translationId%2elessOrEqualThan,translationId%2elessThan,translationId%2especified}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "countryId.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "countryId.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "countryId.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "countryId.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "countryId.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "countryId.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "countryId.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Page number of the requested page" + } + }, + "content": { + "key": { + "element": "string", + "content": "page" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Size of a page" + } + }, + "content": { + "key": { + "element": "string", + "content": "size" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported." + } + }, + "content": { + "key": { + "element": "string", + "content": "sort" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "stateAddressId.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "stateAddressId.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "stateAddressId.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "stateAddressId.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "stateAddressId.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "stateAddressId.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "stateAddressId.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.specified" + }, + "value": { + "element": "boolean" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/CityDTO\"},\"definitions\":{\"CityDTO\":{\"title\":\"CityDTO\",\"description\":\"Sehir tanimlarinin tutuldugu obje view - goruntu objesidir. @see GeographicBoundary @see GeographicBoundaryType @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"country\":{\"$ref\":\"#/definitions/CountryDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"stateAddress\":{\"$ref\":\"#/definitions/StateAddressDTO\"},\"translation\":{\"$ref\":\"#/definitions/CityLangDTO\"}}},\"CityLangDTO\":{\"title\":\"CityLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"LanguageCodeDTO\":{\"title\":\"LanguageCodeDTO\",\"description\":\"Programin destekledigi dillerin kodlarini icerir Languages codes are ISO_639-1 codes, see http: Codes for the Representation of Names of Languages Codes arranged alphabetically by alpha-3/ISO 639-2 Code Note: ISO 639-2 is the alpha-3 code in Codes for the representation of names of languages-- Part 2. There are 21 languages that have alternative codes for bibliographic or terminology purposes. In those cases, each is listed separately and they are designated as \\\"B\\\" (bibliographic) or \\\"T\\\" (terminology). In all other cases there is only one ISO 639-2 code. Multiple codes assigned to the same language are to be considered synonyms. ISO 639-1 is the alpha-2 code. @author Aurora Developer team.\",\"required\":[\"englishName\",\"iso6392Code\",\"name\"],\"type\":\"object\",\"properties\":{\"attributes\":{\"description\":\"organizasyon tipinin ek alanları.\",\"type\":\"object\",\"additionalProperties\":{\"type\":\"string\"}},\"code\":{\"description\":\"gobal dil kodu. tr, en, fr vb.. ISO 639-1 Code \\\"https:\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"englishName\":{\"description\":\"Dilin ingilizce ismi. kullanim kolayligi icin konulmustur.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"icon\":{\"description\":\"Dil icin icon bilgisi\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"iso6392Code\":{\"description\":\"ISO 639-2 dil kodlari. tur, eng vb.. ISO 639-2 Code \\\"https:\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"dilin original ismi. ENGLISH, TURKCE VS...\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}},\"StateAddressDTO\":{\"title\":\"StateAddressDTO\",\"description\":\"State - Eyalet bilgilerinin tanimlarinin yapildigi objedir. view - goruntu objesidir. @see GeographicBoundary @see GeographicBoundaryType @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"country\":{\"$ref\":\"#/definitions/CountryDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/StateAddressLangDTO\"}}},\"StateAddressLangDTO\":{\"title\":\"StateAddressLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"CountryDTO\":{\"title\":\"CountryDTO\",\"description\":\"Ulke tanimlari @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/CountryLangDTO\"}}},\"CountryLangDTO\":{\"title\":\"CountryLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/CityDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "updateCity" + }, + "id": { + "element": "string", + "content": "updateCityUsingPUT" + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"country\": {\n \"createdBy\": \"in Ut\",\n \"createdDate\": \"1992-09-05T13:45:49.858Z\",\n \"id\": 44768164,\n \"lastModifiedBy\": \"Lorem esse ullamco\",\n \"lastModifiedDate\": \"1989-09-07T00:30:54.135Z\",\n \"translation\": {\n \"name\": \"sunt consequat\",\n \"createdBy\": \"dolore magna occaecat voluptate consectetur\",\n \"createdDate\": \"1953-09-05T15:27:31.192Z\",\n \"defaultLang\": true,\n \"description\": \"qui in\",\n \"id\": 26361629,\n \"lang\": {\n \"englishName\": \"sed commodo dolor\",\n \"iso6392Code\": \"laboris adi\",\n \"name\": \"amet\",\n \"attributes\": {},\n \"code\": \"dolor sunt\",\n \"createdBy\": \"id incididunt\",\n \"createdDate\": \"1955-05-15T18:50:10.150Z\",\n \"description\": \"eu occaecat\",\n \"icon\": \"nisi sunt \",\n \"id\": -87633447,\n \"lastModifiedBy\": \"anim sit\",\n \"lastModifiedDate\": \"2000-01-27T18:57:48.232Z\",\n \"orderPriority\": -25247230,\n \"status\": false\n },\n \"lastModifiedBy\": \"magn\",\n \"lastModifiedDate\": \"1990-02-01T04:59:45.735Z\",\n \"ownerId\": -1644144\n }\n },\n \"createdBy\": \"do commodo in deserunt\",\n \"createdDate\": \"1945-02-13T18:04:28.821Z\",\n \"id\": 36262998,\n \"lastModifiedBy\": \"sunt mollit incididunt\",\n \"lastModifiedDate\": \"1965-09-29T15:12:25.235Z\",\n \"stateAddress\": {\n \"country\": {\n \"createdBy\": \"id mollit consect\",\n \"createdDate\": \"1974-09-06T21:18:00.956Z\",\n \"id\": 84342522,\n \"lastModifiedBy\": \"do\",\n \"lastModifiedDate\": \"1993-11-21T06:26:22.409Z\",\n \"translation\": {\n \"name\": \"ut\",\n \"createdBy\": \"incididunt ad\",\n \"createdDate\": \"1998-01-26T14:36:21.420Z\",\n \"defaultLang\": false,\n \"description\": \"labore qui aliqua sit laborum\",\n \"id\": -14239734,\n \"lang\": {\n \"englishName\": \"nisi sed pariatur\",\n \"iso6392Code\": \"est veniam eu dolore do\",\n \"name\": \"nostrud\",\n \"attributes\": {},\n \"code\": \"consequat\",\n \"createdBy\": \"irure ad ex aliqua\",\n \"createdDate\": \"1962-08-08T22:42:25.434Z\",\n \"description\": \"occaecat\",\n \"icon\": \"nisi labore nulla\",\n \"id\": 83342899,\n \"lastModifiedBy\": \"Duis sed\",\n \"lastModifiedDate\": \"2014-09-03T01:45:49.886Z\",\n \"orderPriority\": -25557244,\n \"status\": false\n },\n \"lastModifiedBy\": \"enim elit\",\n \"lastModifiedDate\": \"1993-06-12T15:14:48.299Z\",\n \"ownerId\": -92692299\n }\n },\n \"createdBy\": \"dolore\",\n \"createdDate\": \"1961-10-29T04:50:03.364Z\",\n \"id\": -74451632,\n \"lastModifiedBy\": \"enim\",\n \"lastModifiedDate\": \"1953-11-11T19:46:36.548Z\",\n \"translation\": {\n \"name\": \"do sunt magna\",\n \"createdBy\": \"laborum non est\",\n \"createdDate\": \"1956-04-15T17:24:42.061Z\",\n \"defaultLang\": true,\n \"description\": \"deserunt dolor\",\n \"id\": 76667380,\n \"lang\": {\n \"englishName\": \"minim sed \",\n \"iso6392Code\": \"et ullamco enim\",\n \"name\": \"cupida\",\n \"attributes\": {},\n \"code\": \"dolore sunt aliqua exercitati\",\n \"createdBy\": \"amet\",\n \"createdDate\": \"1994-01-21T19:45:03.509Z\",\n \"description\": \"reprehenderit\",\n \"icon\": \"ut Excepteur ullamco\",\n \"id\": -27824860,\n \"lastModifiedBy\": \"aute qui non velit\",\n \"lastModifiedDate\": \"1952-10-28T00:14:13.767Z\",\n \"orderPriority\": -66915390,\n \"status\": false\n },\n \"lastModifiedBy\": \"ex commodo incididunt in\",\n \"lastModifiedDate\": \"2015-10-30T19:11:30.839Z\",\n \"ownerId\": 28788858\n }\n },\n \"translation\": {\n \"name\": \"Ut quis ipsum enim nisi\",\n \"createdBy\": \"quis sint irur\",\n \"createdDate\": \"2012-08-28T02:06:12.348Z\",\n \"defaultLang\": false,\n \"description\": \"proident in qui nulla\",\n \"id\": 31815045,\n \"lang\": {\n \"englishName\": \"oc\",\n \"iso6392Code\": \"incididunt Excepteur\",\n \"name\": \"do\",\n \"attributes\": {},\n \"code\": \"amet est\",\n \"createdBy\": \"dolor\",\n \"createdDate\": \"1941-09-03T18:34:34.904Z\",\n \"description\": \"Duis Ut minim nulla laborum\",\n \"icon\": \"enim tempor quis fugiat\",\n \"id\": 8183014,\n \"lastModifiedBy\": \"sunt consequat Excepteur dolor magna\",\n \"lastModifiedDate\": \"2019-09-12T15:20:41.010Z\",\n \"orderPriority\": -72114379,\n \"status\": false\n },\n \"lastModifiedBy\": \"consectetur dolore aliqua qui\",\n \"lastModifiedDate\": \"2019-04-15T10:52:16.726Z\",\n \"ownerId\": 7404056\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/CityDTO\"}],\"definitions\":{\"CityDTO\":{\"title\":\"CityDTO\",\"description\":\"Sehir tanimlarinin tutuldugu obje view - goruntu objesidir. @see GeographicBoundary @see GeographicBoundaryType @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"country\":{\"$ref\":\"#/definitions/CountryDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"stateAddress\":{\"$ref\":\"#/definitions/StateAddressDTO\"},\"translation\":{\"$ref\":\"#/definitions/CityLangDTO\"}}},\"CityLangDTO\":{\"title\":\"CityLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"LanguageCodeDTO\":{\"title\":\"LanguageCodeDTO\",\"description\":\"Programin destekledigi dillerin kodlarini icerir Languages codes are ISO_639-1 codes, see http: Codes for the Representation of Names of Languages Codes arranged alphabetically by alpha-3/ISO 639-2 Code Note: ISO 639-2 is the alpha-3 code in Codes for the representation of names of languages-- Part 2. There are 21 languages that have alternative codes for bibliographic or terminology purposes. In those cases, each is listed separately and they are designated as \\\"B\\\" (bibliographic) or \\\"T\\\" (terminology). In all other cases there is only one ISO 639-2 code. Multiple codes assigned to the same language are to be considered synonyms. ISO 639-1 is the alpha-2 code. @author Aurora Developer team.\",\"required\":[\"englishName\",\"iso6392Code\",\"name\"],\"type\":\"object\",\"properties\":{\"attributes\":{\"description\":\"organizasyon tipinin ek alanları.\",\"type\":\"object\",\"additionalProperties\":{\"type\":\"string\"}},\"code\":{\"description\":\"gobal dil kodu. tr, en, fr vb.. ISO 639-1 Code \\\"https:\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"englishName\":{\"description\":\"Dilin ingilizce ismi. kullanim kolayligi icin konulmustur.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"icon\":{\"description\":\"Dil icin icon bilgisi\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"iso6392Code\":{\"description\":\"ISO 639-2 dil kodlari. tur, eng vb.. ISO 639-2 Code \\\"https:\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"dilin original ismi. ENGLISH, TURKCE VS...\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}},\"StateAddressDTO\":{\"title\":\"StateAddressDTO\",\"description\":\"State - Eyalet bilgilerinin tanimlarinin yapildigi objedir. view - goruntu objesidir. @see GeographicBoundary @see GeographicBoundaryType @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"country\":{\"$ref\":\"#/definitions/CountryDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/StateAddressLangDTO\"}}},\"StateAddressLangDTO\":{\"title\":\"StateAddressLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"CountryDTO\":{\"title\":\"CountryDTO\",\"description\":\"Ulke tanimlari @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/CountryLangDTO\"}}},\"CountryLangDTO\":{\"title\":\"CountryLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CityDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/CityDTO\"}],\"definitions\":{\"CityDTO\":{\"title\":\"CityDTO\",\"description\":\"Sehir tanimlarinin tutuldugu obje view - goruntu objesidir. @see GeographicBoundary @see GeographicBoundaryType @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"country\":{\"$ref\":\"#/definitions/CountryDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"stateAddress\":{\"$ref\":\"#/definitions/StateAddressDTO\"},\"translation\":{\"$ref\":\"#/definitions/CityLangDTO\"}}},\"CityLangDTO\":{\"title\":\"CityLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"LanguageCodeDTO\":{\"title\":\"LanguageCodeDTO\",\"description\":\"Programin destekledigi dillerin kodlarini icerir Languages codes are ISO_639-1 codes, see http: Codes for the Representation of Names of Languages Codes arranged alphabetically by alpha-3/ISO 639-2 Code Note: ISO 639-2 is the alpha-3 code in Codes for the representation of names of languages-- Part 2. There are 21 languages that have alternative codes for bibliographic or terminology purposes. In those cases, each is listed separately and they are designated as \\\"B\\\" (bibliographic) or \\\"T\\\" (terminology). In all other cases there is only one ISO 639-2 code. Multiple codes assigned to the same language are to be considered synonyms. ISO 639-1 is the alpha-2 code. @author Aurora Developer team.\",\"required\":[\"englishName\",\"iso6392Code\",\"name\"],\"type\":\"object\",\"properties\":{\"attributes\":{\"description\":\"organizasyon tipinin ek alanları.\",\"type\":\"object\",\"additionalProperties\":{\"type\":\"string\"}},\"code\":{\"description\":\"gobal dil kodu. tr, en, fr vb.. ISO 639-1 Code \\\"https:\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"englishName\":{\"description\":\"Dilin ingilizce ismi. kullanim kolayligi icin konulmustur.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"icon\":{\"description\":\"Dil icin icon bilgisi\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"iso6392Code\":{\"description\":\"ISO 639-2 dil kodlari. tur, eng vb.. ISO 639-2 Code \\\"https:\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"dilin original ismi. ENGLISH, TURKCE VS...\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}},\"StateAddressDTO\":{\"title\":\"StateAddressDTO\",\"description\":\"State - Eyalet bilgilerinin tanimlarinin yapildigi objedir. view - goruntu objesidir. @see GeographicBoundary @see GeographicBoundaryType @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"country\":{\"$ref\":\"#/definitions/CountryDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/StateAddressLangDTO\"}}},\"StateAddressLangDTO\":{\"title\":\"StateAddressLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"CountryDTO\":{\"title\":\"CountryDTO\",\"description\":\"Ulke tanimlari @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/CountryLangDTO\"}}},\"CountryLangDTO\":{\"title\":\"CountryLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CityDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"country\": {\n \"createdBy\": \"aliquip proident veniam Ut ullamco\",\n \"createdDate\": \"1948-03-25T23:54:08.428Z\",\n \"id\": 78016908,\n \"lastModifiedBy\": \"velit aute reprehenderit pariatur\",\n \"lastModifiedDate\": \"1971-06-22T17:34:54.660Z\",\n \"translation\": {\n \"name\": \"ad id dolor ipsum Ut\",\n \"createdBy\": \"irure voluptate anim incididunt\",\n \"createdDate\": \"2012-11-09T09:11:17.091Z\",\n \"defaultLang\": false,\n \"description\": \"enim eiusmod occaecat dolore\",\n \"id\": -85457666,\n \"lang\": {\n \"englishName\": \"quis in officia au\",\n \"iso6392Code\": \"tempor est Ut minim consequat\",\n \"name\": \"dolore fugiat\",\n \"attributes\": {},\n \"code\": \"deserunt sint in dolore\",\n \"createdBy\": \"ut \",\n \"createdDate\": \"1961-11-03T12:15:32.262Z\",\n \"description\": \"officia do pariatur ad\",\n \"icon\": \"sit commodo velit\",\n \"id\": 34297372,\n \"lastModifiedBy\": \"ut fugiat deserunt aliqua\",\n \"lastModifiedDate\": \"1967-05-28T17:04:22.977Z\",\n \"orderPriority\": -42453899,\n \"status\": true\n },\n \"lastModifiedBy\": \"exercitation nostrud aute\",\n \"lastModifiedDate\": \"1963-03-13T06:44:14.625Z\",\n \"ownerId\": 68742627\n }\n },\n \"createdBy\": \"culpa non\",\n \"createdDate\": \"1974-05-05T11:42:29.938Z\",\n \"id\": 8474369,\n \"lastModifiedBy\": \"ea ullamco sunt Lorem nisi\",\n \"lastModifiedDate\": \"1988-03-09T22:06:13.211Z\",\n \"stateAddress\": {\n \"country\": {\n \"createdBy\": \"labore dolore ut et nostrud\",\n \"createdDate\": \"1945-11-25T21:43:33.341Z\",\n \"id\": -10623163,\n \"lastModifiedBy\": \"aliquip pariatur eu\",\n \"lastModifiedDate\": \"2009-07-09T17:02:08.719Z\",\n \"translation\": {\n \"name\": \"consequat enim\",\n \"createdBy\": \"eiusmod ipsum deserunt laboris ex\",\n \"createdDate\": \"2002-08-21T07:39:05.051Z\",\n \"defaultLang\": false,\n \"description\": \"laboris aliqua consectetur nulla eiusmod\",\n \"id\": 78873996,\n \"lang\": {\n \"englishName\": \"enim \",\n \"iso6392Code\": \"Lorem adipisicing\",\n \"name\": \"consequat\",\n \"attributes\": {},\n \"code\": \"cillum m\",\n \"createdBy\": \"nisi\",\n \"createdDate\": \"2005-05-20T02:22:41.445Z\",\n \"description\": \"ea consectetur sint\",\n \"icon\": \"do\",\n \"id\": -26708890,\n \"lastModifiedBy\": \"ex\",\n \"lastModifiedDate\": \"2001-05-26T12:50:35.458Z\",\n \"orderPriority\": -48696898,\n \"status\": false\n },\n \"lastModifiedBy\": \"fugiat dolor exercitation\",\n \"lastModifiedDate\": \"1949-12-17T09:17:53.461Z\",\n \"ownerId\": 4792342\n }\n },\n \"createdBy\": \"ut ipsum velit\",\n \"createdDate\": \"1966-04-17T12:32:14.413Z\",\n \"id\": -72334981,\n \"lastModifiedBy\": \"magna id ea ad nulla\",\n \"lastModifiedDate\": \"1990-12-11T05:29:39.824Z\",\n \"translation\": {\n \"name\": \"ut nulla\",\n \"createdBy\": \"quis anim sit\",\n \"createdDate\": \"1977-12-11T06:01:29.552Z\",\n \"defaultLang\": true,\n \"description\": \"in\",\n \"id\": -28902413,\n \"lang\": {\n \"englishName\": \"ad dolore magna\",\n \"iso6392Code\": \"dolore ad fugiat in co\",\n \"name\": \"ut id sit\",\n \"attributes\": {},\n \"code\": \"dolor eiusmod Excep\",\n \"createdBy\": \"magna\",\n \"createdDate\": \"1989-10-17T16:57:03.186Z\",\n \"description\": \"commodo in laborum exercitation eiusmod\",\n \"icon\": \"qui consectetur minim sunt adipisicing\",\n \"id\": 71223266,\n \"lastModifiedBy\": \"Duis\",\n \"lastModifiedDate\": \"1940-04-24T18:42:20.109Z\",\n \"orderPriority\": -65837825,\n \"status\": true\n },\n \"lastModifiedBy\": \"ea sunt aliqua aute\",\n \"lastModifiedDate\": \"1970-03-10T10:19:22.416Z\",\n \"ownerId\": -84723102\n }\n },\n \"translation\": {\n \"name\": \"sed\",\n \"createdBy\": \"Ut ut consequat\",\n \"createdDate\": \"2000-01-11T22:22:10.915Z\",\n \"defaultLang\": false,\n \"description\": \"irure culpa ex\",\n \"id\": -2814012,\n \"lang\": {\n \"englishName\": \"consectetur irure Lorem\",\n \"iso6392Code\": \"fugiat nisi do\",\n \"name\": \"Duis aute incididunt Lorem enim\",\n \"attributes\": {},\n \"code\": \"culpa dolore\",\n \"createdBy\": \"ea amet fugiat ex pariatur\",\n \"createdDate\": \"1990-11-01T02:00:35.031Z\",\n \"description\": \"sit consectetur\",\n \"icon\": \"adipisicing Duis\",\n \"id\": -90221204,\n \"lastModifiedBy\": \"sed Excepteur est ex commodo\",\n \"lastModifiedDate\": \"1975-12-26T09:51:12.050Z\",\n \"orderPriority\": -358474,\n \"status\": true\n },\n \"lastModifiedBy\": \"incididunt adipisicing\",\n \"lastModifiedDate\": \"1987-05-28T07:00:20.044Z\",\n \"ownerId\": -48335847\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/CityDTO\"}],\"definitions\":{\"CityDTO\":{\"title\":\"CityDTO\",\"description\":\"Sehir tanimlarinin tutuldugu obje view - goruntu objesidir. @see GeographicBoundary @see GeographicBoundaryType @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"country\":{\"$ref\":\"#/definitions/CountryDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"stateAddress\":{\"$ref\":\"#/definitions/StateAddressDTO\"},\"translation\":{\"$ref\":\"#/definitions/CityLangDTO\"}}},\"CityLangDTO\":{\"title\":\"CityLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"LanguageCodeDTO\":{\"title\":\"LanguageCodeDTO\",\"description\":\"Programin destekledigi dillerin kodlarini icerir Languages codes are ISO_639-1 codes, see http: Codes for the Representation of Names of Languages Codes arranged alphabetically by alpha-3/ISO 639-2 Code Note: ISO 639-2 is the alpha-3 code in Codes for the representation of names of languages-- Part 2. There are 21 languages that have alternative codes for bibliographic or terminology purposes. In those cases, each is listed separately and they are designated as \\\"B\\\" (bibliographic) or \\\"T\\\" (terminology). In all other cases there is only one ISO 639-2 code. Multiple codes assigned to the same language are to be considered synonyms. ISO 639-1 is the alpha-2 code. @author Aurora Developer team.\",\"required\":[\"englishName\",\"iso6392Code\",\"name\"],\"type\":\"object\",\"properties\":{\"attributes\":{\"description\":\"organizasyon tipinin ek alanları.\",\"type\":\"object\",\"additionalProperties\":{\"type\":\"string\"}},\"code\":{\"description\":\"gobal dil kodu. tr, en, fr vb.. ISO 639-1 Code \\\"https:\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"englishName\":{\"description\":\"Dilin ingilizce ismi. kullanim kolayligi icin konulmustur.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"icon\":{\"description\":\"Dil icin icon bilgisi\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"iso6392Code\":{\"description\":\"ISO 639-2 dil kodlari. tur, eng vb.. ISO 639-2 Code \\\"https:\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"dilin original ismi. ENGLISH, TURKCE VS...\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}},\"StateAddressDTO\":{\"title\":\"StateAddressDTO\",\"description\":\"State - Eyalet bilgilerinin tanimlarinin yapildigi objedir. view - goruntu objesidir. @see GeographicBoundary @see GeographicBoundaryType @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"country\":{\"$ref\":\"#/definitions/CountryDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/StateAddressLangDTO\"}}},\"StateAddressLangDTO\":{\"title\":\"StateAddressLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"CountryDTO\":{\"title\":\"CountryDTO\",\"description\":\"Ulke tanimlari @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/CountryLangDTO\"}}},\"CountryLangDTO\":{\"title\":\"CountryLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CityDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"country\": {\n \"createdBy\": \"ut aliquip ex officia sed\",\n \"createdDate\": \"1958-09-13T05:27:06.631Z\",\n \"id\": -29719363,\n \"lastModifiedBy\": \"et pariatur do ullamco eu\",\n \"lastModifiedDate\": \"1949-02-13T05:25:53.608Z\",\n \"translation\": {\n \"name\": \"ullamco dolore qu\",\n \"createdBy\": \"pariatur\",\n \"createdDate\": \"1977-05-06T10:06:23.116Z\",\n \"defaultLang\": true,\n \"description\": \"elit\",\n \"id\": -26263218,\n \"lang\": {\n \"englishName\": \"ut dolor d\",\n \"iso6392Code\": \"Lorem\",\n \"name\": \"et voluptate deserunt aliquip aliqu\",\n \"attributes\": {},\n \"code\": \"culpa id exercitation Ut\",\n \"createdBy\": \"id et exercitation occaecat Duis\",\n \"createdDate\": \"1988-12-03T23:43:39.362Z\",\n \"description\": \"Ut eu cupidatat aliquip\",\n \"icon\": \"laboris nostrud commodo Excepteur\",\n \"id\": 80223888,\n \"lastModifiedBy\": \"elit\",\n \"lastModifiedDate\": \"1949-08-06T09:56:49.304Z\",\n \"orderPriority\": -91730678,\n \"status\": true\n },\n \"lastModifiedBy\": \"ea irure velit quis d\",\n \"lastModifiedDate\": \"1951-05-05T20:36:08.364Z\",\n \"ownerId\": -74877542\n }\n },\n \"createdBy\": \"est ut reprehenderit\",\n \"createdDate\": \"1976-08-31T12:17:06.168Z\",\n \"id\": -37697022,\n \"lastModifiedBy\": \"nisi\",\n \"lastModifiedDate\": \"2000-04-30T13:44:20.066Z\",\n \"stateAddress\": {\n \"country\": {\n \"createdBy\": \"magna cillum tempor\",\n \"createdDate\": \"1955-03-10T04:28:23.265Z\",\n \"id\": 88068676,\n \"lastModifiedBy\": \"labore eu ad dolore\",\n \"lastModifiedDate\": \"1987-08-20T00:02:30.607Z\",\n \"translation\": {\n \"name\": \"ad veniam esse\",\n \"createdBy\": \"dolore aliquip consequat eu\",\n \"createdDate\": \"1954-02-11T21:34:43.695Z\",\n \"defaultLang\": true,\n \"description\": \"cupidatat in\",\n \"id\": 16766479,\n \"lang\": {\n \"englishName\": \"exercitation eli\",\n \"iso6392Code\": \"ali\",\n \"name\": \"ipsum quis in\",\n \"attributes\": {},\n \"code\": \"nostrud pariatur\",\n \"createdBy\": \"mollit do dolore ipsum\",\n \"createdDate\": \"1949-11-02T18:18:15.359Z\",\n \"description\": \"culpa eiusmod quis Duis laborum\",\n \"icon\": \"pariatur sit deserunt Duis amet\",\n \"id\": 27872098,\n \"lastModifiedBy\": \"pariatur\",\n \"lastModifiedDate\": \"1945-12-14T01:59:36.861Z\",\n \"orderPriority\": -92356137,\n \"status\": false\n },\n \"lastModifiedBy\": \"ut consectetur\",\n \"lastModifiedDate\": \"1974-06-27T04:47:48.704Z\",\n \"ownerId\": 72120642\n }\n },\n \"createdBy\": \"in\",\n \"createdDate\": \"1980-11-25T14:15:33.589Z\",\n \"id\": 51605888,\n \"lastModifiedBy\": \"nisi fugiat aute cill\",\n \"lastModifiedDate\": \"1972-12-30T22:51:32.115Z\",\n \"translation\": {\n \"name\": \"amet anim adipisicing\",\n \"createdBy\": \"quis deserunt incididunt sunt aliqua\",\n \"createdDate\": \"2000-01-23T14:14:29.124Z\",\n \"defaultLang\": false,\n \"description\": \"ad\",\n \"id\": -42691223,\n \"lang\": {\n \"englishName\": \"minim ea nulla \",\n \"iso6392Code\": \"aliqua Lorem dolor\",\n \"name\": \"amet \",\n \"attributes\": {},\n \"code\": \"aliqua tempor reprehenderit Ut lab\",\n \"createdBy\": \"do\",\n \"createdDate\": \"1963-11-05T16:35:08.298Z\",\n \"description\": \"laborum ea nisi\",\n \"icon\": \"commodo\",\n \"id\": -15581668,\n \"lastModifiedBy\": \"fugiat nulla quis ea velit\",\n \"lastModifiedDate\": \"1967-08-31T12:00:46.716Z\",\n \"orderPriority\": -12560189,\n \"status\": true\n },\n \"lastModifiedBy\": \"do mollit nulla\",\n \"lastModifiedDate\": \"2005-01-09T00:12:57.914Z\",\n \"ownerId\": -68559313\n }\n },\n \"translation\": {\n \"name\": \"consectetur\",\n \"createdBy\": \"dolore veniam mollit\",\n \"createdDate\": \"1956-09-28T21:03:39.487Z\",\n \"defaultLang\": false,\n \"description\": \"nostrud cupidatat\",\n \"id\": 5115416,\n \"lang\": {\n \"englishName\": \"enim commodo occaecat\",\n \"iso6392Code\": \"ipsum r\",\n \"name\": \"in cillum\",\n \"attributes\": {},\n \"code\": \"esse culpa amet eu officia\",\n \"createdBy\": \"deserunt voluptate nulla Excepteur aliqua\",\n \"createdDate\": \"1959-07-28T15:15:50.631Z\",\n \"description\": \"deserunt minim sed in\",\n \"icon\": \"qui anim reprehenderit\",\n \"id\": 45663876,\n \"lastModifiedBy\": \"dolor ex officia\",\n \"lastModifiedDate\": \"1956-01-08T17:03:46.447Z\",\n \"orderPriority\": -52944084,\n \"status\": false\n },\n \"lastModifiedBy\": \"ex do et\",\n \"lastModifiedDate\": \"1967-09-15T11:02:02.467Z\",\n \"ownerId\": -29219763\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/CityDTO\"}],\"definitions\":{\"CityDTO\":{\"title\":\"CityDTO\",\"description\":\"Sehir tanimlarinin tutuldugu obje view - goruntu objesidir. @see GeographicBoundary @see GeographicBoundaryType @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"country\":{\"$ref\":\"#/definitions/CountryDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"stateAddress\":{\"$ref\":\"#/definitions/StateAddressDTO\"},\"translation\":{\"$ref\":\"#/definitions/CityLangDTO\"}}},\"CityLangDTO\":{\"title\":\"CityLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"LanguageCodeDTO\":{\"title\":\"LanguageCodeDTO\",\"description\":\"Programin destekledigi dillerin kodlarini icerir Languages codes are ISO_639-1 codes, see http: Codes for the Representation of Names of Languages Codes arranged alphabetically by alpha-3/ISO 639-2 Code Note: ISO 639-2 is the alpha-3 code in Codes for the representation of names of languages-- Part 2. There are 21 languages that have alternative codes for bibliographic or terminology purposes. In those cases, each is listed separately and they are designated as \\\"B\\\" (bibliographic) or \\\"T\\\" (terminology). In all other cases there is only one ISO 639-2 code. Multiple codes assigned to the same language are to be considered synonyms. ISO 639-1 is the alpha-2 code. @author Aurora Developer team.\",\"required\":[\"englishName\",\"iso6392Code\",\"name\"],\"type\":\"object\",\"properties\":{\"attributes\":{\"description\":\"organizasyon tipinin ek alanları.\",\"type\":\"object\",\"additionalProperties\":{\"type\":\"string\"}},\"code\":{\"description\":\"gobal dil kodu. tr, en, fr vb.. ISO 639-1 Code \\\"https:\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"englishName\":{\"description\":\"Dilin ingilizce ismi. kullanim kolayligi icin konulmustur.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"icon\":{\"description\":\"Dil icin icon bilgisi\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"iso6392Code\":{\"description\":\"ISO 639-2 dil kodlari. tur, eng vb.. ISO 639-2 Code \\\"https:\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"dilin original ismi. ENGLISH, TURKCE VS...\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}},\"StateAddressDTO\":{\"title\":\"StateAddressDTO\",\"description\":\"State - Eyalet bilgilerinin tanimlarinin yapildigi objedir. view - goruntu objesidir. @see GeographicBoundary @see GeographicBoundaryType @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"country\":{\"$ref\":\"#/definitions/CountryDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/StateAddressLangDTO\"}}},\"StateAddressLangDTO\":{\"title\":\"StateAddressLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"CountryDTO\":{\"title\":\"CountryDTO\",\"description\":\"Ulke tanimlari @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/CountryLangDTO\"}}},\"CountryLangDTO\":{\"title\":\"CountryLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CityDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"country\": {\n \"createdBy\": \"labore\",\n \"createdDate\": \"1942-08-12T17:48:14.298Z\",\n \"id\": -89606977,\n \"lastModifiedBy\": \"dolore amet pariatur id mollit\",\n \"lastModifiedDate\": \"1943-12-06T15:00:04.154Z\",\n \"translation\": {\n \"name\": \"velit in et commo\",\n \"createdBy\": \"esse ipsum Duis\",\n \"createdDate\": \"1981-12-02T15:41:54.937Z\",\n \"defaultLang\": false,\n \"description\": \"dolor do id\",\n \"id\": -52408361,\n \"lang\": {\n \"englishName\": \"ea id reprehenderit\",\n \"iso6392Code\": \"dolor\",\n \"name\": \"Excepteur Lorem id adipisicing\",\n \"attributes\": {},\n \"code\": \"comm\",\n \"createdBy\": \"amet elit eiusmo\",\n \"createdDate\": \"1942-02-14T19:58:47.696Z\",\n \"description\": \"elit\",\n \"icon\": \"ad\",\n \"id\": 81167839,\n \"lastModifiedBy\": \"occaec\",\n \"lastModifiedDate\": \"2019-09-10T22:39:34.499Z\",\n \"orderPriority\": -76973222,\n \"status\": false\n },\n \"lastModifiedBy\": \"in pariatur ea velit\",\n \"lastModifiedDate\": \"1982-04-16T08:31:45.219Z\",\n \"ownerId\": -34632438\n }\n },\n \"createdBy\": \"sunt officia\",\n \"createdDate\": \"1974-01-31T06:36:43.498Z\",\n \"id\": 19278600,\n \"lastModifiedBy\": \"enim laborum culpa commodo\",\n \"lastModifiedDate\": \"1955-02-21T04:44:33.685Z\",\n \"stateAddress\": {\n \"country\": {\n \"createdBy\": \"mollit\",\n \"createdDate\": \"2002-03-20T12:36:31.906Z\",\n \"id\": 57372610,\n \"lastModifiedBy\": \"consectetur Excepteur\",\n \"lastModifiedDate\": \"1971-08-21T19:03:21.063Z\",\n \"translation\": {\n \"name\": \"velit\",\n \"createdBy\": \"deserunt\",\n \"createdDate\": \"1944-06-27T19:02:12.541Z\",\n \"defaultLang\": true,\n \"description\": \"fugiat et mollit in\",\n \"id\": -29496885,\n \"lang\": {\n \"englishName\": \"Ut adipisicing consectet\",\n \"iso6392Code\": \"adipisicing est dolor \",\n \"name\": \"exercitation in\",\n \"attributes\": {},\n \"code\": \"ullamco pariatur dese\",\n \"createdBy\": \"officia amet\",\n \"createdDate\": \"1946-03-26T16:10:40.883Z\",\n \"description\": \"minim\",\n \"icon\": \"eiusmod proident amet dolore aute\",\n \"id\": -55183176,\n \"lastModifiedBy\": \"eu\",\n \"lastModifiedDate\": \"1948-06-26T03:58:32.195Z\",\n \"orderPriority\": -88817421,\n \"status\": false\n },\n \"lastModifiedBy\": \"dolore est aliqua\",\n \"lastModifiedDate\": \"1957-08-16T19:14:01.676Z\",\n \"ownerId\": 69536607\n }\n },\n \"createdBy\": \"nisi enim\",\n \"createdDate\": \"1948-09-19T17:21:25.514Z\",\n \"id\": 85122568,\n \"lastModifiedBy\": \"sunt labore in\",\n \"lastModifiedDate\": \"1948-02-13T03:14:44.070Z\",\n \"translation\": {\n \"name\": \"sunt Lorem nis\",\n \"createdBy\": \"anim nisi\",\n \"createdDate\": \"2005-03-17T08:58:00.047Z\",\n \"defaultLang\": true,\n \"description\": \"pariatur in dolore laborum sed\",\n \"id\": 91122634,\n \"lang\": {\n \"englishName\": \"mollit sed anim ullamco \",\n \"iso6392Code\": \"in dolor\",\n \"name\": \"nisi\",\n \"attributes\": {},\n \"code\": \"dolor\",\n \"createdBy\": \"amet sed labore velit\",\n \"createdDate\": \"2004-02-02T00:53:06.601Z\",\n \"description\": \"cupidatat in adipisicing incididunt\",\n \"icon\": \"occaecat\",\n \"id\": 89873823,\n \"lastModifiedBy\": \"anim et in voluptate amet\",\n \"lastModifiedDate\": \"1958-11-19T18:09:59.849Z\",\n \"orderPriority\": -25516319,\n \"status\": false\n },\n \"lastModifiedBy\": \"sit minim sed aute consequat\",\n \"lastModifiedDate\": \"2012-10-01T20:40:49.753Z\",\n \"ownerId\": -61378777\n }\n },\n \"translation\": {\n \"name\": \"aute enim irure\",\n \"createdBy\": \"p\",\n \"createdDate\": \"1978-10-04T03:23:34.705Z\",\n \"defaultLang\": false,\n \"description\": \"dolor amet cillum\",\n \"id\": 13453060,\n \"lang\": {\n \"englishName\": \"voluptate exercitation\",\n \"iso6392Code\": \"minim ut\",\n \"name\": \"minim mollit reprehenderit labori\",\n \"attributes\": {},\n \"code\": \"incididunt elit culpa ut\",\n \"createdBy\": \"Ut ullamco sed qui ex\",\n \"createdDate\": \"2011-12-11T18:04:36.317Z\",\n \"description\": \"occaecat aute\",\n \"icon\": \"ea\",\n \"id\": 79547318,\n \"lastModifiedBy\": \"deserunt\",\n \"lastModifiedDate\": \"1974-09-04T11:50:53.243Z\",\n \"orderPriority\": -22985007,\n \"status\": true\n },\n \"lastModifiedBy\": \"dolore eu esse officia\",\n \"lastModifiedDate\": \"1988-04-10T00:08:31.758Z\",\n \"ownerId\": 79352522\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/CityDTO\"}],\"definitions\":{\"CityDTO\":{\"title\":\"CityDTO\",\"description\":\"Sehir tanimlarinin tutuldugu obje view - goruntu objesidir. @see GeographicBoundary @see GeographicBoundaryType @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"country\":{\"$ref\":\"#/definitions/CountryDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"stateAddress\":{\"$ref\":\"#/definitions/StateAddressDTO\"},\"translation\":{\"$ref\":\"#/definitions/CityLangDTO\"}}},\"CityLangDTO\":{\"title\":\"CityLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"LanguageCodeDTO\":{\"title\":\"LanguageCodeDTO\",\"description\":\"Programin destekledigi dillerin kodlarini icerir Languages codes are ISO_639-1 codes, see http: Codes for the Representation of Names of Languages Codes arranged alphabetically by alpha-3/ISO 639-2 Code Note: ISO 639-2 is the alpha-3 code in Codes for the representation of names of languages-- Part 2. There are 21 languages that have alternative codes for bibliographic or terminology purposes. In those cases, each is listed separately and they are designated as \\\"B\\\" (bibliographic) or \\\"T\\\" (terminology). In all other cases there is only one ISO 639-2 code. Multiple codes assigned to the same language are to be considered synonyms. ISO 639-1 is the alpha-2 code. @author Aurora Developer team.\",\"required\":[\"englishName\",\"iso6392Code\",\"name\"],\"type\":\"object\",\"properties\":{\"attributes\":{\"description\":\"organizasyon tipinin ek alanları.\",\"type\":\"object\",\"additionalProperties\":{\"type\":\"string\"}},\"code\":{\"description\":\"gobal dil kodu. tr, en, fr vb.. ISO 639-1 Code \\\"https:\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"englishName\":{\"description\":\"Dilin ingilizce ismi. kullanim kolayligi icin konulmustur.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"icon\":{\"description\":\"Dil icin icon bilgisi\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"iso6392Code\":{\"description\":\"ISO 639-2 dil kodlari. tur, eng vb.. ISO 639-2 Code \\\"https:\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"dilin original ismi. ENGLISH, TURKCE VS...\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}},\"StateAddressDTO\":{\"title\":\"StateAddressDTO\",\"description\":\"State - Eyalet bilgilerinin tanimlarinin yapildigi objedir. view - goruntu objesidir. @see GeographicBoundary @see GeographicBoundaryType @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"country\":{\"$ref\":\"#/definitions/CountryDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/StateAddressLangDTO\"}}},\"StateAddressLangDTO\":{\"title\":\"StateAddressLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"CountryDTO\":{\"title\":\"CountryDTO\",\"description\":\"Ulke tanimlari @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/CountryLangDTO\"}}},\"CountryLangDTO\":{\"title\":\"CountryLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CityDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"country\": {\n \"createdBy\": \"veniam elit ut exercitation Duis\",\n \"createdDate\": \"1959-07-17T07:28:11.886Z\",\n \"id\": -84071643,\n \"lastModifiedBy\": \"in adipisicing\",\n \"lastModifiedDate\": \"2005-07-14T22:41:22.469Z\",\n \"translation\": {\n \"name\": \"dolor nisi do fugiat\",\n \"createdBy\": \"voluptate magna\",\n \"createdDate\": \"2016-09-27T00:51:47.049Z\",\n \"defaultLang\": false,\n \"description\": \"non anim irur\",\n \"id\": -78244087,\n \"lang\": {\n \"englishName\": \"aute adip\",\n \"iso6392Code\": \"Excepteur Dui\",\n \"name\": \"aute do dolor proident \",\n \"attributes\": {},\n \"code\": \"vol\",\n \"createdBy\": \"enim dolor\",\n \"createdDate\": \"1997-03-16T03:53:59.466Z\",\n \"description\": \"tempor laborum\",\n \"icon\": \"consectetur ex sint mollit\",\n \"id\": -26723254,\n \"lastModifiedBy\": \"veniam nisi do irure\",\n \"lastModifiedDate\": \"1954-07-31T01:55:19.778Z\",\n \"orderPriority\": -45538493,\n \"status\": false\n },\n \"lastModifiedBy\": \"aliqua nostrud\",\n \"lastModifiedDate\": \"2020-01-26T10:06:47.433Z\",\n \"ownerId\": -35872034\n }\n },\n \"createdBy\": \"reprehenderit dolor ut\",\n \"createdDate\": \"2002-08-07T23:03:25.109Z\",\n \"id\": -66818838,\n \"lastModifiedBy\": \"cupidatat anim\",\n \"lastModifiedDate\": \"1996-05-15T16:38:48.775Z\",\n \"stateAddress\": {\n \"country\": {\n \"createdBy\": \"non dolore\",\n \"createdDate\": \"2016-12-06T18:08:50.291Z\",\n \"id\": -72675168,\n \"lastModifiedBy\": \"minim aute exercitation dolore\",\n \"lastModifiedDate\": \"1962-02-23T23:31:36.585Z\",\n \"translation\": {\n \"name\": \"ad culpa \",\n \"createdBy\": \"dolore et exercitation\",\n \"createdDate\": \"1943-10-03T21:43:44.117Z\",\n \"defaultLang\": true,\n \"description\": \"eiusmod tempor\",\n \"id\": -58060402,\n \"lang\": {\n \"englishName\": \"occaecat cillum ad\",\n \"iso6392Code\": \"eu ut\",\n \"name\": \"laborum proide\",\n \"attributes\": {},\n \"code\": \"dolore ea cupi\",\n \"createdBy\": \"sit enim sed\",\n \"createdDate\": \"1980-04-11T00:25:53.597Z\",\n \"description\": \"cupidatat ea \",\n \"icon\": \"aliquip nisi\",\n \"id\": 13091560,\n \"lastModifiedBy\": \"cupidatat ad exercitation proident incididunt\",\n \"lastModifiedDate\": \"2001-03-07T09:49:39.455Z\",\n \"orderPriority\": -18482040,\n \"status\": true\n },\n \"lastModifiedBy\": \"amet\",\n \"lastModifiedDate\": \"1978-02-20T04:24:10.301Z\",\n \"ownerId\": 93583834\n }\n },\n \"createdBy\": \"nostrud velit\",\n \"createdDate\": \"1977-10-30T07:06:29.911Z\",\n \"id\": 20118530,\n \"lastModifiedBy\": \"sunt quis dolore commodo\",\n \"lastModifiedDate\": \"1992-08-09T19:51:28.271Z\",\n \"translation\": {\n \"name\": \"nisi tempor Duis commodo voluptate\",\n \"createdBy\": \"eu\",\n \"createdDate\": \"1944-02-15T17:11:22.233Z\",\n \"defaultLang\": false,\n \"description\": \"minim nostrud est Ut Lorem\",\n \"id\": -49788391,\n \"lang\": {\n \"englishName\": \"sint\",\n \"iso6392Code\": \"amet sunt Ut velit\",\n \"name\": \"et ut anim commodo \",\n \"attributes\": {},\n \"code\": \"in amet irure laboris exercitation\",\n \"createdBy\": \"Excepteur\",\n \"createdDate\": \"1960-09-29T12:07:53.667Z\",\n \"description\": \"Lorem voluptate\",\n \"icon\": \"magna nulla Duis\",\n \"id\": 97898725,\n \"lastModifiedBy\": \"sit officia ea ex in\",\n \"lastModifiedDate\": \"1962-09-04T11:38:25.205Z\",\n \"orderPriority\": -36544336,\n \"status\": true\n },\n \"lastModifiedBy\": \"laboris dolore ut commodo\",\n \"lastModifiedDate\": \"2018-07-04T23:20:12.302Z\",\n \"ownerId\": -34756622\n }\n },\n \"translation\": {\n \"name\": \"eu\",\n \"createdBy\": \"Lorem amet Excepteur proident in\",\n \"createdDate\": \"2005-12-07T04:57:16.747Z\",\n \"defaultLang\": true,\n \"description\": \"voluptate cupidatat\",\n \"id\": -34696761,\n \"lang\": {\n \"englishName\": \"pariatur cillum\",\n \"iso6392Code\": \"Excepteur ei\",\n \"name\": \"non\",\n \"attributes\": {},\n \"code\": \"magna cupidatat\",\n \"createdBy\": \"\",\n \"createdDate\": \"2006-06-23T19:48:47.867Z\",\n \"description\": \"est\",\n \"icon\": \"in exercitation culpa tempor nostrud\",\n \"id\": -41887770,\n \"lastModifiedBy\": \"est nostrud dolor voluptate Excepteur\",\n \"lastModifiedDate\": \"1958-02-22T14:01:03.434Z\",\n \"orderPriority\": -2894038,\n \"status\": true\n },\n \"lastModifiedBy\": \"commodo consequat labore reprehenderit esse\",\n \"lastModifiedDate\": \"1948-11-27T02:26:15.843Z\",\n \"ownerId\": 77267171\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/CityDTO\"}],\"definitions\":{\"CityDTO\":{\"title\":\"CityDTO\",\"description\":\"Sehir tanimlarinin tutuldugu obje view - goruntu objesidir. @see GeographicBoundary @see GeographicBoundaryType @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"country\":{\"$ref\":\"#/definitions/CountryDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"stateAddress\":{\"$ref\":\"#/definitions/StateAddressDTO\"},\"translation\":{\"$ref\":\"#/definitions/CityLangDTO\"}}},\"CityLangDTO\":{\"title\":\"CityLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"LanguageCodeDTO\":{\"title\":\"LanguageCodeDTO\",\"description\":\"Programin destekledigi dillerin kodlarini icerir Languages codes are ISO_639-1 codes, see http: Codes for the Representation of Names of Languages Codes arranged alphabetically by alpha-3/ISO 639-2 Code Note: ISO 639-2 is the alpha-3 code in Codes for the representation of names of languages-- Part 2. There are 21 languages that have alternative codes for bibliographic or terminology purposes. In those cases, each is listed separately and they are designated as \\\"B\\\" (bibliographic) or \\\"T\\\" (terminology). In all other cases there is only one ISO 639-2 code. Multiple codes assigned to the same language are to be considered synonyms. ISO 639-1 is the alpha-2 code. @author Aurora Developer team.\",\"required\":[\"englishName\",\"iso6392Code\",\"name\"],\"type\":\"object\",\"properties\":{\"attributes\":{\"description\":\"organizasyon tipinin ek alanları.\",\"type\":\"object\",\"additionalProperties\":{\"type\":\"string\"}},\"code\":{\"description\":\"gobal dil kodu. tr, en, fr vb.. ISO 639-1 Code \\\"https:\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"englishName\":{\"description\":\"Dilin ingilizce ismi. kullanim kolayligi icin konulmustur.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"icon\":{\"description\":\"Dil icin icon bilgisi\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"iso6392Code\":{\"description\":\"ISO 639-2 dil kodlari. tur, eng vb.. ISO 639-2 Code \\\"https:\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"dilin original ismi. ENGLISH, TURKCE VS...\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}},\"StateAddressDTO\":{\"title\":\"StateAddressDTO\",\"description\":\"State - Eyalet bilgilerinin tanimlarinin yapildigi objedir. view - goruntu objesidir. @see GeographicBoundary @see GeographicBoundaryType @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"country\":{\"$ref\":\"#/definitions/CountryDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/StateAddressLangDTO\"}}},\"StateAddressLangDTO\":{\"title\":\"StateAddressLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"CountryDTO\":{\"title\":\"CountryDTO\",\"description\":\"Ulke tanimlari @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/CountryLangDTO\"}}},\"CountryLangDTO\":{\"title\":\"CountryLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CityDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "createCity" + }, + "id": { + "element": "string", + "content": "createCityUsingPOST" + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"country\": {\n \"createdBy\": \"eu\",\n \"createdDate\": \"2009-01-18T13:48:12.372Z\",\n \"id\": 97396250,\n \"lastModifiedBy\": \"ut\",\n \"lastModifiedDate\": \"1999-11-01T12:39:01.916Z\",\n \"translation\": {\n \"name\": \"exercitation adipisi\",\n \"createdBy\": \"laborum\",\n \"createdDate\": \"2005-09-07T18:39:30.985Z\",\n \"defaultLang\": false,\n \"description\": \"consectetur\",\n \"id\": -66446520,\n \"lang\": {\n \"englishName\": \"Ut do\",\n \"iso6392Code\": \"Duis\",\n \"name\": \"culpa\",\n \"attributes\": {},\n \"code\": \"dolor\",\n \"createdBy\": \"et veniam dolore aliquip reprehenderit\",\n \"createdDate\": \"1990-03-03T05:03:05.409Z\",\n \"description\": \"aute voluptate cupidatat laborum\",\n \"icon\": \"sint dolore\",\n \"id\": -84123993,\n \"lastModifiedBy\": \"id\",\n \"lastModifiedDate\": \"1953-06-22T11:00:43.876Z\",\n \"orderPriority\": -86682187,\n \"status\": true\n },\n \"lastModifiedBy\": \"voluptate velit laborum\",\n \"lastModifiedDate\": \"1993-11-20T04:46:31.186Z\",\n \"ownerId\": -71030546\n }\n },\n \"createdBy\": \"tempor enim consequat dolor minim\",\n \"createdDate\": \"1972-11-02T15:29:24.394Z\",\n \"id\": 75915580,\n \"lastModifiedBy\": \"occaecat consequat cillum voluptate\",\n \"lastModifiedDate\": \"1958-05-19T06:52:15.672Z\",\n \"stateAddress\": {\n \"country\": {\n \"createdBy\": \"anim consectetur\",\n \"createdDate\": \"1955-07-20T13:30:59.053Z\",\n \"id\": -2578303,\n \"lastModifiedBy\": \"labore ut dolore ex ad\",\n \"lastModifiedDate\": \"2016-12-29T11:59:34.000Z\",\n \"translation\": {\n \"name\": \"minim do irure\",\n \"createdBy\": \"incididunt esse cupidatat\",\n \"createdDate\": \"1948-01-03T20:14:26.161Z\",\n \"defaultLang\": false,\n \"description\": \"ad Lorem laborum Ut\",\n \"id\": -72465956,\n \"lang\": {\n \"englishName\": \"anim \",\n \"iso6392Code\": \"labore ut deserunt Ut\",\n \"name\": \"ut aliquip\",\n \"attributes\": {},\n \"code\": \"deserunt\",\n \"createdBy\": \"deserunt sed adipisicing\",\n \"createdDate\": \"1975-06-13T14:50:40.028Z\",\n \"description\": \"Lorem occaecat dolor cupidatat\",\n \"icon\": \"laboris dolore\",\n \"id\": 13211074,\n \"lastModifiedBy\": \"dolor Lor\",\n \"lastModifiedDate\": \"1948-03-03T04:30:29.260Z\",\n \"orderPriority\": -72451642,\n \"status\": false\n },\n \"lastModifiedBy\": \"tempor non\",\n \"lastModifiedDate\": \"1950-03-31T18:13:14.776Z\",\n \"ownerId\": 73327075\n }\n },\n \"createdBy\": \"consequat\",\n \"createdDate\": \"1964-06-08T09:32:11.064Z\",\n \"id\": 38091336,\n \"lastModifiedBy\": \"pariatur in sit\",\n \"lastModifiedDate\": \"1997-06-22T21:11:54.797Z\",\n \"translation\": {\n \"name\": \"adipisicing proident\",\n \"createdBy\": \"reprehenderit\",\n \"createdDate\": \"1951-08-21T08:36:21.797Z\",\n \"defaultLang\": true,\n \"description\": \"nostrud sed adipisicing aliqua ad\",\n \"id\": -44768019,\n \"lang\": {\n \"englishName\": \"Excepteur\",\n \"iso6392Code\": \"nisi consectetu\",\n \"name\": \"adipisicing consequat ea magna\",\n \"attributes\": {},\n \"code\": \"ut \",\n \"createdBy\": \"sunt\",\n \"createdDate\": \"2005-12-27T00:33:04.035Z\",\n \"description\": \"ut Duis labore laborum in\",\n \"icon\": \"sed do ut\",\n \"id\": -16118365,\n \"lastModifiedBy\": \"deserunt do\",\n \"lastModifiedDate\": \"2010-05-09T21:39:01.455Z\",\n \"orderPriority\": -40789175,\n \"status\": false\n },\n \"lastModifiedBy\": \"occaecat minim\",\n \"lastModifiedDate\": \"1958-04-02T13:00:32.071Z\",\n \"ownerId\": -63327794\n }\n },\n \"translation\": {\n \"name\": \"dolore\",\n \"createdBy\": \"dolore mollit esse laborum sunt\",\n \"createdDate\": \"1975-02-25T11:05:56.596Z\",\n \"defaultLang\": true,\n \"description\": \"ipsum veniam commodo quis\",\n \"id\": -61321482,\n \"lang\": {\n \"englishName\": \"sit quis dolore non\",\n \"iso6392Code\": \"dolor in ipsum labore nulla\",\n \"name\": \"dolor\",\n \"attributes\": {},\n \"code\": \"ut est\",\n \"createdBy\": \"minim pariatur ut in Excepteur\",\n \"createdDate\": \"1949-05-23T10:43:47.543Z\",\n \"description\": \"veniam in pariatur labore\",\n \"icon\": \"ea sit amet cu\",\n \"id\": -16439663,\n \"lastModifiedBy\": \"minim\",\n \"lastModifiedDate\": \"2007-06-27T18:54:12.774Z\",\n \"orderPriority\": -45451987,\n \"status\": false\n },\n \"lastModifiedBy\": \"\",\n \"lastModifiedDate\": \"1942-06-12T15:50:12.805Z\",\n \"ownerId\": 913792\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/CityDTO\"}],\"definitions\":{\"CityDTO\":{\"title\":\"CityDTO\",\"description\":\"Sehir tanimlarinin tutuldugu obje view - goruntu objesidir. @see GeographicBoundary @see GeographicBoundaryType @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"country\":{\"$ref\":\"#/definitions/CountryDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"stateAddress\":{\"$ref\":\"#/definitions/StateAddressDTO\"},\"translation\":{\"$ref\":\"#/definitions/CityLangDTO\"}}},\"CityLangDTO\":{\"title\":\"CityLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"LanguageCodeDTO\":{\"title\":\"LanguageCodeDTO\",\"description\":\"Programin destekledigi dillerin kodlarini icerir Languages codes are ISO_639-1 codes, see http: Codes for the Representation of Names of Languages Codes arranged alphabetically by alpha-3/ISO 639-2 Code Note: ISO 639-2 is the alpha-3 code in Codes for the representation of names of languages-- Part 2. There are 21 languages that have alternative codes for bibliographic or terminology purposes. In those cases, each is listed separately and they are designated as \\\"B\\\" (bibliographic) or \\\"T\\\" (terminology). In all other cases there is only one ISO 639-2 code. Multiple codes assigned to the same language are to be considered synonyms. ISO 639-1 is the alpha-2 code. @author Aurora Developer team.\",\"required\":[\"englishName\",\"iso6392Code\",\"name\"],\"type\":\"object\",\"properties\":{\"attributes\":{\"description\":\"organizasyon tipinin ek alanları.\",\"type\":\"object\",\"additionalProperties\":{\"type\":\"string\"}},\"code\":{\"description\":\"gobal dil kodu. tr, en, fr vb.. ISO 639-1 Code \\\"https:\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"englishName\":{\"description\":\"Dilin ingilizce ismi. kullanim kolayligi icin konulmustur.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"icon\":{\"description\":\"Dil icin icon bilgisi\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"iso6392Code\":{\"description\":\"ISO 639-2 dil kodlari. tur, eng vb.. ISO 639-2 Code \\\"https:\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"dilin original ismi. ENGLISH, TURKCE VS...\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}},\"StateAddressDTO\":{\"title\":\"StateAddressDTO\",\"description\":\"State - Eyalet bilgilerinin tanimlarinin yapildigi objedir. view - goruntu objesidir. @see GeographicBoundary @see GeographicBoundaryType @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"country\":{\"$ref\":\"#/definitions/CountryDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/StateAddressLangDTO\"}}},\"StateAddressLangDTO\":{\"title\":\"StateAddressLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"CountryDTO\":{\"title\":\"CountryDTO\",\"description\":\"Ulke tanimlari @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/CountryLangDTO\"}}},\"CountryLangDTO\":{\"title\":\"CountryLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CityDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/CityDTO\"}],\"definitions\":{\"CityDTO\":{\"title\":\"CityDTO\",\"description\":\"Sehir tanimlarinin tutuldugu obje view - goruntu objesidir. @see GeographicBoundary @see GeographicBoundaryType @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"country\":{\"$ref\":\"#/definitions/CountryDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"stateAddress\":{\"$ref\":\"#/definitions/StateAddressDTO\"},\"translation\":{\"$ref\":\"#/definitions/CityLangDTO\"}}},\"CityLangDTO\":{\"title\":\"CityLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"LanguageCodeDTO\":{\"title\":\"LanguageCodeDTO\",\"description\":\"Programin destekledigi dillerin kodlarini icerir Languages codes are ISO_639-1 codes, see http: Codes for the Representation of Names of Languages Codes arranged alphabetically by alpha-3/ISO 639-2 Code Note: ISO 639-2 is the alpha-3 code in Codes for the representation of names of languages-- Part 2. There are 21 languages that have alternative codes for bibliographic or terminology purposes. In those cases, each is listed separately and they are designated as \\\"B\\\" (bibliographic) or \\\"T\\\" (terminology). In all other cases there is only one ISO 639-2 code. Multiple codes assigned to the same language are to be considered synonyms. ISO 639-1 is the alpha-2 code. @author Aurora Developer team.\",\"required\":[\"englishName\",\"iso6392Code\",\"name\"],\"type\":\"object\",\"properties\":{\"attributes\":{\"description\":\"organizasyon tipinin ek alanları.\",\"type\":\"object\",\"additionalProperties\":{\"type\":\"string\"}},\"code\":{\"description\":\"gobal dil kodu. tr, en, fr vb.. ISO 639-1 Code \\\"https:\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"englishName\":{\"description\":\"Dilin ingilizce ismi. kullanim kolayligi icin konulmustur.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"icon\":{\"description\":\"Dil icin icon bilgisi\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"iso6392Code\":{\"description\":\"ISO 639-2 dil kodlari. tur, eng vb.. ISO 639-2 Code \\\"https:\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"dilin original ismi. ENGLISH, TURKCE VS...\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}},\"StateAddressDTO\":{\"title\":\"StateAddressDTO\",\"description\":\"State - Eyalet bilgilerinin tanimlarinin yapildigi objedir. view - goruntu objesidir. @see GeographicBoundary @see GeographicBoundaryType @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"country\":{\"$ref\":\"#/definitions/CountryDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/StateAddressLangDTO\"}}},\"StateAddressLangDTO\":{\"title\":\"StateAddressLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"CountryDTO\":{\"title\":\"CountryDTO\",\"description\":\"Ulke tanimlari @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/CountryLangDTO\"}}},\"CountryLangDTO\":{\"title\":\"CountryLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CityDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"country\": {\n \"createdBy\": \"mollit culpa Ut cillum consectetur\",\n \"createdDate\": \"2013-04-22T18:07:04.404Z\",\n \"id\": 83469239,\n \"lastModifiedBy\": \"sed enim nulla in\",\n \"lastModifiedDate\": \"1957-11-03T06:04:01.181Z\",\n \"translation\": {\n \"name\": \"Lorem aliquip\",\n \"createdBy\": \"reprehenderit dolore\",\n \"createdDate\": \"1994-08-29T10:01:51.903Z\",\n \"defaultLang\": true,\n \"description\": \"ex\",\n \"id\": -85580505,\n \"lang\": {\n \"englishName\": \"mollit tempor\",\n \"iso6392Code\": \"esse volu\",\n \"name\": \"deserunt amet Excepteu\",\n \"attributes\": {},\n \"code\": \"consectetur deserunt elit dolor\",\n \"createdBy\": \"enim cillum dolore laboris\",\n \"createdDate\": \"2007-08-06T03:11:03.878Z\",\n \"description\": \"aliqua tempor elit sunt\",\n \"icon\": \"velit exercitation Ut non\",\n \"id\": -91485711,\n \"lastModifiedBy\": \"aute enim ad ut irure\",\n \"lastModifiedDate\": \"1955-09-17T02:12:31.927Z\",\n \"orderPriority\": -5461340,\n \"status\": true\n },\n \"lastModifiedBy\": \"aute aliquip reprehenderit nostrud nisi\",\n \"lastModifiedDate\": \"1944-01-08T14:03:36.870Z\",\n \"ownerId\": 60804678\n }\n },\n \"createdBy\": \"mollit\",\n \"createdDate\": \"1988-02-14T23:10:31.836Z\",\n \"id\": -23210694,\n \"lastModifiedBy\": \"id sed fugiat tempor eiusmod\",\n \"lastModifiedDate\": \"1999-06-04T10:21:55.579Z\",\n \"stateAddress\": {\n \"country\": {\n \"createdBy\": \"et esse sed\",\n \"createdDate\": \"2010-08-16T15:13:28.754Z\",\n \"id\": 29016719,\n \"lastModifiedBy\": \"eiusmod cillum sed laboris nulla\",\n \"lastModifiedDate\": \"2012-08-21T22:33:45.085Z\",\n \"translation\": {\n \"name\": \"id dolore veniam proident\",\n \"createdBy\": \"adipisicing\",\n \"createdDate\": \"1983-10-31T06:09:15.157Z\",\n \"defaultLang\": true,\n \"description\": \"voluptate esse nulla sunt\",\n \"id\": -36880473,\n \"lang\": {\n \"englishName\": \"ipsum dolor in \",\n \"iso6392Code\": \"velit do\",\n \"name\": \"id adipisi\",\n \"attributes\": {},\n \"code\": \"sunt ad ea veniam exercitation\",\n \"createdBy\": \"reprehenderit sint pariatur eiusmod magna\",\n \"createdDate\": \"1958-04-15T11:28:06.666Z\",\n \"description\": \"labore velit laboris tempor\",\n \"icon\": \"ut labore\",\n \"id\": 82017299,\n \"lastModifiedBy\": \"ex sed dolore enim\",\n \"lastModifiedDate\": \"1973-02-17T11:44:16.547Z\",\n \"orderPriority\": -93762353,\n \"status\": false\n },\n \"lastModifiedBy\": \"mollit\",\n \"lastModifiedDate\": \"2002-05-09T11:38:37.222Z\",\n \"ownerId\": -5559540\n }\n },\n \"createdBy\": \"\",\n \"createdDate\": \"2001-07-31T10:46:14.905Z\",\n \"id\": 25321733,\n \"lastModifiedBy\": \"dolor sed proident labore ut\",\n \"lastModifiedDate\": \"1983-11-29T05:28:46.367Z\",\n \"translation\": {\n \"name\": \"veniam \",\n \"createdBy\": \"consectetur deserunt aute\",\n \"createdDate\": \"1954-04-16T17:02:32.240Z\",\n \"defaultLang\": false,\n \"description\": \"sint\",\n \"id\": -43374609,\n \"lang\": {\n \"englishName\": \"dolor aute\",\n \"iso6392Code\": \"velit Excepteur quis vol\",\n \"name\": \"irure in tempor\",\n \"attributes\": {},\n \"code\": \"culpa occaecat Lorem laborum elit\",\n \"createdBy\": \"cillum officia aliquip enim\",\n \"createdDate\": \"1947-07-18T01:37:02.869Z\",\n \"description\": \"id veniam quis eiusmod aliqua\",\n \"icon\": \"dolore\",\n \"id\": 55598047,\n \"lastModifiedBy\": \"velit aliquip adipisic\",\n \"lastModifiedDate\": \"1963-01-24T23:41:59.725Z\",\n \"orderPriority\": -89173978,\n \"status\": true\n },\n \"lastModifiedBy\": \"officia dolor eiusmod\",\n \"lastModifiedDate\": \"1947-06-27T20:32:54.393Z\",\n \"ownerId\": -53988843\n }\n },\n \"translation\": {\n \"name\": \"aute reprehenderit Excepteur esse\",\n \"createdBy\": \"dolore minim veniam sunt Duis\",\n \"createdDate\": \"1953-10-01T10:52:57.477Z\",\n \"defaultLang\": false,\n \"description\": \"nulla\",\n \"id\": 48010657,\n \"lang\": {\n \"englishName\": \"in magna pari\",\n \"iso6392Code\": \"ullamco\",\n \"name\": \"consequat re\",\n \"attributes\": {},\n \"code\": \"cillum\",\n \"createdBy\": \"proident deserunt veniam Exc\",\n \"createdDate\": \"1961-07-19T03:52:12.194Z\",\n \"description\": \"voluptate non enim\",\n \"icon\": \"c\",\n \"id\": -72301865,\n \"lastModifiedBy\": \"adipisicing elit dolore qui anim\",\n \"lastModifiedDate\": \"1995-01-01T06:15:39.466Z\",\n \"orderPriority\": -95461359,\n \"status\": true\n },\n \"lastModifiedBy\": \"non Lorem anim\",\n \"lastModifiedDate\": \"1989-04-11T04:01:28.364Z\",\n \"ownerId\": -71088438\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/CityDTO\"}],\"definitions\":{\"CityDTO\":{\"title\":\"CityDTO\",\"description\":\"Sehir tanimlarinin tutuldugu obje view - goruntu objesidir. @see GeographicBoundary @see GeographicBoundaryType @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"country\":{\"$ref\":\"#/definitions/CountryDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"stateAddress\":{\"$ref\":\"#/definitions/StateAddressDTO\"},\"translation\":{\"$ref\":\"#/definitions/CityLangDTO\"}}},\"CityLangDTO\":{\"title\":\"CityLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"LanguageCodeDTO\":{\"title\":\"LanguageCodeDTO\",\"description\":\"Programin destekledigi dillerin kodlarini icerir Languages codes are ISO_639-1 codes, see http: Codes for the Representation of Names of Languages Codes arranged alphabetically by alpha-3/ISO 639-2 Code Note: ISO 639-2 is the alpha-3 code in Codes for the representation of names of languages-- Part 2. There are 21 languages that have alternative codes for bibliographic or terminology purposes. In those cases, each is listed separately and they are designated as \\\"B\\\" (bibliographic) or \\\"T\\\" (terminology). In all other cases there is only one ISO 639-2 code. Multiple codes assigned to the same language are to be considered synonyms. ISO 639-1 is the alpha-2 code. @author Aurora Developer team.\",\"required\":[\"englishName\",\"iso6392Code\",\"name\"],\"type\":\"object\",\"properties\":{\"attributes\":{\"description\":\"organizasyon tipinin ek alanları.\",\"type\":\"object\",\"additionalProperties\":{\"type\":\"string\"}},\"code\":{\"description\":\"gobal dil kodu. tr, en, fr vb.. ISO 639-1 Code \\\"https:\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"englishName\":{\"description\":\"Dilin ingilizce ismi. kullanim kolayligi icin konulmustur.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"icon\":{\"description\":\"Dil icin icon bilgisi\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"iso6392Code\":{\"description\":\"ISO 639-2 dil kodlari. tur, eng vb.. ISO 639-2 Code \\\"https:\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"dilin original ismi. ENGLISH, TURKCE VS...\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}},\"StateAddressDTO\":{\"title\":\"StateAddressDTO\",\"description\":\"State - Eyalet bilgilerinin tanimlarinin yapildigi objedir. view - goruntu objesidir. @see GeographicBoundary @see GeographicBoundaryType @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"country\":{\"$ref\":\"#/definitions/CountryDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/StateAddressLangDTO\"}}},\"StateAddressLangDTO\":{\"title\":\"StateAddressLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"CountryDTO\":{\"title\":\"CountryDTO\",\"description\":\"Ulke tanimlari @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/CountryLangDTO\"}}},\"CountryLangDTO\":{\"title\":\"CountryLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CityDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"country\": {\n \"createdBy\": \"ea dolor Lorem officia\",\n \"createdDate\": \"1992-07-10T23:09:21.570Z\",\n \"id\": 49793609,\n \"lastModifiedBy\": \"elit magna\",\n \"lastModifiedDate\": \"1964-10-31T20:38:41.544Z\",\n \"translation\": {\n \"name\": \"consequat ullamco dolor\",\n \"createdBy\": \"reprehenderit\",\n \"createdDate\": \"2007-06-14T06:45:12.098Z\",\n \"defaultLang\": false,\n \"description\": \"consequat in nostrud ea labore\",\n \"id\": 84222389,\n \"lang\": {\n \"englishName\": \"aliquip proident occaecat deserunt\",\n \"iso6392Code\": \"d\",\n \"name\": \"culpa ipsum eiusmod et\",\n \"attributes\": {},\n \"code\": \"qui sit\",\n \"createdBy\": \"tempor minim dolore\",\n \"createdDate\": \"1951-07-10T05:15:27.585Z\",\n \"description\": \"aliquip\",\n \"icon\": \"exercitation ex sed\",\n \"id\": -81547049,\n \"lastModifiedBy\": \"sint \",\n \"lastModifiedDate\": \"1949-01-30T10:13:03.819Z\",\n \"orderPriority\": -7182940,\n \"status\": true\n },\n \"lastModifiedBy\": \"ut\",\n \"lastModifiedDate\": \"1946-11-03T09:55:06.078Z\",\n \"ownerId\": -32076815\n }\n },\n \"createdBy\": \"ut\",\n \"createdDate\": \"2019-09-13T14:45:22.822Z\",\n \"id\": 84482058,\n \"lastModifiedBy\": \"reprehenderit\",\n \"lastModifiedDate\": \"2000-05-29T12:24:57.960Z\",\n \"stateAddress\": {\n \"country\": {\n \"createdBy\": \"anim pariatur\",\n \"createdDate\": \"1962-10-22T18:50:12.802Z\",\n \"id\": 49268695,\n \"lastModifiedBy\": \"laboris non\",\n \"lastModifiedDate\": \"1950-05-07T04:48:52.643Z\",\n \"translation\": {\n \"name\": \"amet mollit pariatur ut\",\n \"createdBy\": \"dolor non dolore qu\",\n \"createdDate\": \"2007-11-27T18:35:27.549Z\",\n \"defaultLang\": false,\n \"description\": \"sit commodo do nis\",\n \"id\": -84184518,\n \"lang\": {\n \"englishName\": \"do in dolor\",\n \"iso6392Code\": \"quis d\",\n \"name\": \"ullamco et\",\n \"attributes\": {},\n \"code\": \"laborum ullamco et\",\n \"createdBy\": \"dolore sint\",\n \"createdDate\": \"1963-04-20T22:07:40.326Z\",\n \"description\": \"quis qui\",\n \"icon\": \"enim\",\n \"id\": 65027005,\n \"lastModifiedBy\": \"dolore \",\n \"lastModifiedDate\": \"2015-08-13T15:29:36.414Z\",\n \"orderPriority\": -24604628,\n \"status\": false\n },\n \"lastModifiedBy\": \"pariatur voluptate reprehenderit enim\",\n \"lastModifiedDate\": \"1993-02-13T09:40:03.914Z\",\n \"ownerId\": 34253434\n }\n },\n \"createdBy\": \"sint dolore enim\",\n \"createdDate\": \"2000-07-18T14:41:51.173Z\",\n \"id\": -42017251,\n \"lastModifiedBy\": \"id consequat anim\",\n \"lastModifiedDate\": \"2013-08-04T02:46:40.645Z\",\n \"translation\": {\n \"name\": \"culpa fugiat velit\",\n \"createdBy\": \"ullamco adipisicing in consectetur\",\n \"createdDate\": \"2009-06-29T20:04:47.333Z\",\n \"defaultLang\": false,\n \"description\": \"elit labore in ea Lorem\",\n \"id\": 29683474,\n \"lang\": {\n \"englishName\": \"deserunt\",\n \"iso6392Code\": \"anim aute in\",\n \"name\": \"dolore\",\n \"attributes\": {},\n \"code\": \"aute cillum in offi\",\n \"createdBy\": \"ad fugiat et consectetur\",\n \"createdDate\": \"1969-01-06T15:09:48.082Z\",\n \"description\": \"ipsum cillum ex pariatur officia\",\n \"icon\": \"amet aute sunt cillum\",\n \"id\": 31272835,\n \"lastModifiedBy\": \"minim al\",\n \"lastModifiedDate\": \"2006-11-22T21:11:46.862Z\",\n \"orderPriority\": -72091294,\n \"status\": true\n },\n \"lastModifiedBy\": \"quis ex reprehenderit exercitation culpa\",\n \"lastModifiedDate\": \"2006-06-17T00:48:05.344Z\",\n \"ownerId\": -42924909\n }\n },\n \"translation\": {\n \"name\": \"qui\",\n \"createdBy\": \"non sunt\",\n \"createdDate\": \"1970-02-10T04:59:25.296Z\",\n \"defaultLang\": false,\n \"description\": \"nulla proident ad in\",\n \"id\": -79651816,\n \"lang\": {\n \"englishName\": \"ullamco in exercitation\",\n \"iso6392Code\": \"Ut\",\n \"name\": \"incididun\",\n \"attributes\": {},\n \"code\": \"cillum adipisicing qui\",\n \"createdBy\": \"amet ut\",\n \"createdDate\": \"2019-05-27T04:19:46.283Z\",\n \"description\": \"dolor\",\n \"icon\": \"elit est cillum cupidatat do\",\n \"id\": 67513086,\n \"lastModifiedBy\": \"aliqua\",\n \"lastModifiedDate\": \"1997-04-10T08:56:16.003Z\",\n \"orderPriority\": -19460100,\n \"status\": true\n },\n \"lastModifiedBy\": \"ad\",\n \"lastModifiedDate\": \"2011-10-02T11:18:05.471Z\",\n \"ownerId\": -27348531\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/CityDTO\"}],\"definitions\":{\"CityDTO\":{\"title\":\"CityDTO\",\"description\":\"Sehir tanimlarinin tutuldugu obje view - goruntu objesidir. @see GeographicBoundary @see GeographicBoundaryType @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"country\":{\"$ref\":\"#/definitions/CountryDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"stateAddress\":{\"$ref\":\"#/definitions/StateAddressDTO\"},\"translation\":{\"$ref\":\"#/definitions/CityLangDTO\"}}},\"CityLangDTO\":{\"title\":\"CityLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"LanguageCodeDTO\":{\"title\":\"LanguageCodeDTO\",\"description\":\"Programin destekledigi dillerin kodlarini icerir Languages codes are ISO_639-1 codes, see http: Codes for the Representation of Names of Languages Codes arranged alphabetically by alpha-3/ISO 639-2 Code Note: ISO 639-2 is the alpha-3 code in Codes for the representation of names of languages-- Part 2. There are 21 languages that have alternative codes for bibliographic or terminology purposes. In those cases, each is listed separately and they are designated as \\\"B\\\" (bibliographic) or \\\"T\\\" (terminology). In all other cases there is only one ISO 639-2 code. Multiple codes assigned to the same language are to be considered synonyms. ISO 639-1 is the alpha-2 code. @author Aurora Developer team.\",\"required\":[\"englishName\",\"iso6392Code\",\"name\"],\"type\":\"object\",\"properties\":{\"attributes\":{\"description\":\"organizasyon tipinin ek alanları.\",\"type\":\"object\",\"additionalProperties\":{\"type\":\"string\"}},\"code\":{\"description\":\"gobal dil kodu. tr, en, fr vb.. ISO 639-1 Code \\\"https:\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"englishName\":{\"description\":\"Dilin ingilizce ismi. kullanim kolayligi icin konulmustur.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"icon\":{\"description\":\"Dil icin icon bilgisi\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"iso6392Code\":{\"description\":\"ISO 639-2 dil kodlari. tur, eng vb.. ISO 639-2 Code \\\"https:\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"dilin original ismi. ENGLISH, TURKCE VS...\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}},\"StateAddressDTO\":{\"title\":\"StateAddressDTO\",\"description\":\"State - Eyalet bilgilerinin tanimlarinin yapildigi objedir. view - goruntu objesidir. @see GeographicBoundary @see GeographicBoundaryType @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"country\":{\"$ref\":\"#/definitions/CountryDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/StateAddressLangDTO\"}}},\"StateAddressLangDTO\":{\"title\":\"StateAddressLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"CountryDTO\":{\"title\":\"CountryDTO\",\"description\":\"Ulke tanimlari @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/CountryLangDTO\"}}},\"CountryLangDTO\":{\"title\":\"CountryLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CityDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"country\": {\n \"createdBy\": \"id amet quis in\",\n \"createdDate\": \"2002-05-23T00:08:47.025Z\",\n \"id\": 72872242,\n \"lastModifiedBy\": \"cupidatat qui officia laborum dolore\",\n \"lastModifiedDate\": \"1952-01-19T04:47:39.357Z\",\n \"translation\": {\n \"name\": \"enim irure tempor am\",\n \"createdBy\": \"consectetur deserunt ex anim consequat\",\n \"createdDate\": \"1940-09-12T18:20:27.044Z\",\n \"defaultLang\": false,\n \"description\": \"non\",\n \"id\": -73483592,\n \"lang\": {\n \"englishName\": \"in culpa velit\",\n \"iso6392Code\": \"ullamco non labore\",\n \"name\": \"irure Duis dolor\",\n \"attributes\": {},\n \"code\": \"eu consequat offici\",\n \"createdBy\": \"Excepteur dolor\",\n \"createdDate\": \"2006-12-01T03:11:31.748Z\",\n \"description\": \"quis\",\n \"icon\": \"consequat esse\",\n \"id\": 62690711,\n \"lastModifiedBy\": \"con\",\n \"lastModifiedDate\": \"1980-11-23T00:56:29.352Z\",\n \"orderPriority\": -13471084,\n \"status\": false\n },\n \"lastModifiedBy\": \"consectetur Excepteur \",\n \"lastModifiedDate\": \"1980-04-12T21:08:23.634Z\",\n \"ownerId\": 27733094\n }\n },\n \"createdBy\": \"et mollit non cupidatat do\",\n \"createdDate\": \"1967-11-30T11:18:15.363Z\",\n \"id\": 49710463,\n \"lastModifiedBy\": \"aliquip sint\",\n \"lastModifiedDate\": \"1942-01-01T16:58:56.689Z\",\n \"stateAddress\": {\n \"country\": {\n \"createdBy\": \"proident\",\n \"createdDate\": \"1979-08-18T18:38:30.938Z\",\n \"id\": -32892940,\n \"lastModifiedBy\": \"qui\",\n \"lastModifiedDate\": \"1959-03-23T21:40:12.316Z\",\n \"translation\": {\n \"name\": \"in sunt sed laborum\",\n \"createdBy\": \"dolore nostrud non nulla\",\n \"createdDate\": \"1968-02-09T09:03:33.603Z\",\n \"defaultLang\": false,\n \"description\": \"velit\",\n \"id\": -13573033,\n \"lang\": {\n \"englishName\": \"irure ad\",\n \"iso6392Code\": \"id enim d\",\n \"name\": \"aliquip in commod\",\n \"attributes\": {},\n \"code\": \"Lorem\",\n \"createdBy\": \"est\",\n \"createdDate\": \"1956-05-20T11:14:55.153Z\",\n \"description\": \"aliqua incididunt\",\n \"icon\": \"veniam dolore\",\n \"id\": 47501464,\n \"lastModifiedBy\": \"dolore ea sint non\",\n \"lastModifiedDate\": \"1979-05-23T14:46:05.914Z\",\n \"orderPriority\": -29625575,\n \"status\": true\n },\n \"lastModifiedBy\": \"voluptate dolor\",\n \"lastModifiedDate\": \"1981-09-26T23:08:22.129Z\",\n \"ownerId\": -25353753\n }\n },\n \"createdBy\": \"mollit\",\n \"createdDate\": \"2009-03-19T07:05:56.779Z\",\n \"id\": -3327686,\n \"lastModifiedBy\": \"ut dolor do ipsum\",\n \"lastModifiedDate\": \"1948-05-25T03:22:09.715Z\",\n \"translation\": {\n \"name\": \"occaecat\",\n \"createdBy\": \"irure\",\n \"createdDate\": \"1950-10-28T22:51:39.833Z\",\n \"defaultLang\": true,\n \"description\": \"sed proident in Ut\",\n \"id\": -28399571,\n \"lang\": {\n \"englishName\": \"do eiusmod sit\",\n \"iso6392Code\": \"cillum officia ad Lor\",\n \"name\": \"consectetur ullamco eu elit\",\n \"attributes\": {},\n \"code\": \"commodo ut aliqua sunt\",\n \"createdBy\": \"labore ea sint ve\",\n \"createdDate\": \"2000-08-27T15:57:52.615Z\",\n \"description\": \"qui ad\",\n \"icon\": \"qui\",\n \"id\": -87000522,\n \"lastModifiedBy\": \"consequat qui Duis\",\n \"lastModifiedDate\": \"2019-12-15T17:14:25.321Z\",\n \"orderPriority\": -2542483,\n \"status\": true\n },\n \"lastModifiedBy\": \"laborum non\",\n \"lastModifiedDate\": \"1941-09-13T16:57:14.091Z\",\n \"ownerId\": -3361526\n }\n },\n \"translation\": {\n \"name\": \"reprehenderit veniam e\",\n \"createdBy\": \"anim tempor esse\",\n \"createdDate\": \"2000-12-20T11:59:06.758Z\",\n \"defaultLang\": false,\n \"description\": \"in consequat velit\",\n \"id\": 70420822,\n \"lang\": {\n \"englishName\": \"en\",\n \"iso6392Code\": \"laboris dol\",\n \"name\": \"eiusmod\",\n \"attributes\": {},\n \"code\": \"adipisicing do\",\n \"createdBy\": \"Excepteur ullamco ut\",\n \"createdDate\": \"2005-11-12T08:42:33.183Z\",\n \"description\": \"fugiat laborum eu\",\n \"icon\": \"nisi magna culpa in fugiat\",\n \"id\": -16303059,\n \"lastModifiedBy\": \"esse\",\n \"lastModifiedDate\": \"1965-01-20T16:44:19.734Z\",\n \"orderPriority\": -92733788,\n \"status\": false\n },\n \"lastModifiedBy\": \"commodo Excepteur in\",\n \"lastModifiedDate\": \"1999-05-16T07:57:19.693Z\",\n \"ownerId\": -37481886\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/CityDTO\"}],\"definitions\":{\"CityDTO\":{\"title\":\"CityDTO\",\"description\":\"Sehir tanimlarinin tutuldugu obje view - goruntu objesidir. @see GeographicBoundary @see GeographicBoundaryType @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"country\":{\"$ref\":\"#/definitions/CountryDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"stateAddress\":{\"$ref\":\"#/definitions/StateAddressDTO\"},\"translation\":{\"$ref\":\"#/definitions/CityLangDTO\"}}},\"CityLangDTO\":{\"title\":\"CityLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"LanguageCodeDTO\":{\"title\":\"LanguageCodeDTO\",\"description\":\"Programin destekledigi dillerin kodlarini icerir Languages codes are ISO_639-1 codes, see http: Codes for the Representation of Names of Languages Codes arranged alphabetically by alpha-3/ISO 639-2 Code Note: ISO 639-2 is the alpha-3 code in Codes for the representation of names of languages-- Part 2. There are 21 languages that have alternative codes for bibliographic or terminology purposes. In those cases, each is listed separately and they are designated as \\\"B\\\" (bibliographic) or \\\"T\\\" (terminology). In all other cases there is only one ISO 639-2 code. Multiple codes assigned to the same language are to be considered synonyms. ISO 639-1 is the alpha-2 code. @author Aurora Developer team.\",\"required\":[\"englishName\",\"iso6392Code\",\"name\"],\"type\":\"object\",\"properties\":{\"attributes\":{\"description\":\"organizasyon tipinin ek alanları.\",\"type\":\"object\",\"additionalProperties\":{\"type\":\"string\"}},\"code\":{\"description\":\"gobal dil kodu. tr, en, fr vb.. ISO 639-1 Code \\\"https:\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"englishName\":{\"description\":\"Dilin ingilizce ismi. kullanim kolayligi icin konulmustur.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"icon\":{\"description\":\"Dil icin icon bilgisi\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"iso6392Code\":{\"description\":\"ISO 639-2 dil kodlari. tur, eng vb.. ISO 639-2 Code \\\"https:\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"dilin original ismi. ENGLISH, TURKCE VS...\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}},\"StateAddressDTO\":{\"title\":\"StateAddressDTO\",\"description\":\"State - Eyalet bilgilerinin tanimlarinin yapildigi objedir. view - goruntu objesidir. @see GeographicBoundary @see GeographicBoundaryType @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"country\":{\"$ref\":\"#/definitions/CountryDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/StateAddressLangDTO\"}}},\"StateAddressLangDTO\":{\"title\":\"StateAddressLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"CountryDTO\":{\"title\":\"CountryDTO\",\"description\":\"Ulke tanimlari @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/CountryLangDTO\"}}},\"CountryLangDTO\":{\"title\":\"CountryLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CityDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"country\": {\n \"createdBy\": \"minim laborum non\",\n \"createdDate\": \"1943-06-08T01:57:40.582Z\",\n \"id\": 42043496,\n \"lastModifiedBy\": \"et ullamco irure\",\n \"lastModifiedDate\": \"1946-11-11T19:58:50.480Z\",\n \"translation\": {\n \"name\": \"est Duis proident in ad\",\n \"createdBy\": \"commodo enim\",\n \"createdDate\": \"2016-06-19T17:52:45.593Z\",\n \"defaultLang\": true,\n \"description\": \"minim laboris\",\n \"id\": 78595114,\n \"lang\": {\n \"englishName\": \"veniam\",\n \"iso6392Code\": \"nostrud aute\",\n \"name\": \"in quis non laboris qui\",\n \"attributes\": {},\n \"code\": \"proident Lorem\",\n \"createdBy\": \"voluptate nulla dolore sint\",\n \"createdDate\": \"1948-11-05T21:37:30.041Z\",\n \"description\": \"ullamco\",\n \"icon\": \"voluptate\",\n \"id\": 83619305,\n \"lastModifiedBy\": \"nulla dol\",\n \"lastModifiedDate\": \"1985-04-27T04:47:48.945Z\",\n \"orderPriority\": -5711210,\n \"status\": true\n },\n \"lastModifiedBy\": \"adipisicing\",\n \"lastModifiedDate\": \"1993-11-27T13:43:47.344Z\",\n \"ownerId\": 56305289\n }\n },\n \"createdBy\": \"mollit amet Excepteur\",\n \"createdDate\": \"2001-10-05T05:07:31.123Z\",\n \"id\": -21367588,\n \"lastModifiedBy\": \"Ut ut\",\n \"lastModifiedDate\": \"2006-08-29T16:02:54.084Z\",\n \"stateAddress\": {\n \"country\": {\n \"createdBy\": \"mollit ea do quis\",\n \"createdDate\": \"2010-09-08T19:25:55.255Z\",\n \"id\": 91531025,\n \"lastModifiedBy\": \"nulla voluptate cillum nostrud\",\n \"lastModifiedDate\": \"1979-11-16T22:42:51.419Z\",\n \"translation\": {\n \"name\": \"velit ex Duis\",\n \"createdBy\": \"eiusmod ut dolor id nisi\",\n \"createdDate\": \"2014-03-09T21:16:16.920Z\",\n \"defaultLang\": false,\n \"description\": \"qui\",\n \"id\": -75859742,\n \"lang\": {\n \"englishName\": \"elit ea aliqua in\",\n \"iso6392Code\": \"anim pariatur\",\n \"name\": \"culpa ut officia laboris\",\n \"attributes\": {},\n \"code\": \"aliqu\",\n \"createdBy\": \"tempor\",\n \"createdDate\": \"2009-03-25T17:27:25.239Z\",\n \"description\": \"in incididunt officia voluptate\",\n \"icon\": \"officia laborum veniam\",\n \"id\": 37810820,\n \"lastModifiedBy\": \"quis\",\n \"lastModifiedDate\": \"1978-12-06T19:37:27.437Z\",\n \"orderPriority\": -95377727,\n \"status\": true\n },\n \"lastModifiedBy\": \"aute labore commodo\",\n \"lastModifiedDate\": \"1960-04-29T15:08:37.270Z\",\n \"ownerId\": -21493642\n }\n },\n \"createdBy\": \"Excepteur\",\n \"createdDate\": \"1989-07-18T03:17:32.622Z\",\n \"id\": -80649833,\n \"lastModifiedBy\": \"aute Duis qui\",\n \"lastModifiedDate\": \"1999-10-04T01:27:44.145Z\",\n \"translation\": {\n \"name\": \"laborum laboris non\",\n \"createdBy\": \"elit\",\n \"createdDate\": \"1990-06-22T04:13:09.072Z\",\n \"defaultLang\": true,\n \"description\": \"esse sunt consequat\",\n \"id\": -10287606,\n \"lang\": {\n \"englishName\": \"voluptate et de\",\n \"iso6392Code\": \"exercitation labore\",\n \"name\": \"sed id dolor ut culpa\",\n \"attributes\": {},\n \"code\": \"cillum do est\",\n \"createdBy\": \"Ut ut Lorem ad\",\n \"createdDate\": \"1989-11-18T17:59:21.709Z\",\n \"description\": \"aliqua Duis\",\n \"icon\": \"ipsum Excepteur quis\",\n \"id\": -9373692,\n \"lastModifiedBy\": \"ad ea cillum id\",\n \"lastModifiedDate\": \"1977-06-16T14:32:57.926Z\",\n \"orderPriority\": -5906434,\n \"status\": true\n },\n \"lastModifiedBy\": \"esse\",\n \"lastModifiedDate\": \"1960-05-14T01:53:18.982Z\",\n \"ownerId\": -9260491\n }\n },\n \"translation\": {\n \"name\": \"enim sunt culpa aute\",\n \"createdBy\": \"consectetur\",\n \"createdDate\": \"1979-05-29T08:06:09.470Z\",\n \"defaultLang\": true,\n \"description\": \"labore in\",\n \"id\": -52379820,\n \"lang\": {\n \"englishName\": \"aliquip irure voluptate\",\n \"iso6392Code\": \"commodo veniam dolor\",\n \"name\": \"ipsum in labore aliqua\",\n \"attributes\": {},\n \"code\": \"dolor\",\n \"createdBy\": \"ad irure cupidatat ut\",\n \"createdDate\": \"2002-07-20T16:59:42.061Z\",\n \"description\": \"ut\",\n \"icon\": \"aliqua deserunt\",\n \"id\": 24720105,\n \"lastModifiedBy\": \"est non Duis do\",\n \"lastModifiedDate\": \"2008-02-27T04:47:43.862Z\",\n \"orderPriority\": -56780211,\n \"status\": true\n },\n \"lastModifiedBy\": \"esse occaecat voluptate\",\n \"lastModifiedDate\": \"1961-10-31T07:39:44.062Z\",\n \"ownerId\": 95886371\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/CityDTO\"}],\"definitions\":{\"CityDTO\":{\"title\":\"CityDTO\",\"description\":\"Sehir tanimlarinin tutuldugu obje view - goruntu objesidir. @see GeographicBoundary @see GeographicBoundaryType @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"country\":{\"$ref\":\"#/definitions/CountryDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"stateAddress\":{\"$ref\":\"#/definitions/StateAddressDTO\"},\"translation\":{\"$ref\":\"#/definitions/CityLangDTO\"}}},\"CityLangDTO\":{\"title\":\"CityLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"LanguageCodeDTO\":{\"title\":\"LanguageCodeDTO\",\"description\":\"Programin destekledigi dillerin kodlarini icerir Languages codes are ISO_639-1 codes, see http: Codes for the Representation of Names of Languages Codes arranged alphabetically by alpha-3/ISO 639-2 Code Note: ISO 639-2 is the alpha-3 code in Codes for the representation of names of languages-- Part 2. There are 21 languages that have alternative codes for bibliographic or terminology purposes. In those cases, each is listed separately and they are designated as \\\"B\\\" (bibliographic) or \\\"T\\\" (terminology). In all other cases there is only one ISO 639-2 code. Multiple codes assigned to the same language are to be considered synonyms. ISO 639-1 is the alpha-2 code. @author Aurora Developer team.\",\"required\":[\"englishName\",\"iso6392Code\",\"name\"],\"type\":\"object\",\"properties\":{\"attributes\":{\"description\":\"organizasyon tipinin ek alanları.\",\"type\":\"object\",\"additionalProperties\":{\"type\":\"string\"}},\"code\":{\"description\":\"gobal dil kodu. tr, en, fr vb.. ISO 639-1 Code \\\"https:\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"englishName\":{\"description\":\"Dilin ingilizce ismi. kullanim kolayligi icin konulmustur.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"icon\":{\"description\":\"Dil icin icon bilgisi\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"iso6392Code\":{\"description\":\"ISO 639-2 dil kodlari. tur, eng vb.. ISO 639-2 Code \\\"https:\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"dilin original ismi. ENGLISH, TURKCE VS...\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}},\"StateAddressDTO\":{\"title\":\"StateAddressDTO\",\"description\":\"State - Eyalet bilgilerinin tanimlarinin yapildigi objedir. view - goruntu objesidir. @see GeographicBoundary @see GeographicBoundaryType @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"country\":{\"$ref\":\"#/definitions/CountryDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/StateAddressLangDTO\"}}},\"StateAddressLangDTO\":{\"title\":\"StateAddressLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"CountryDTO\":{\"title\":\"CountryDTO\",\"description\":\"Ulke tanimlari @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/CountryLangDTO\"}}},\"CountryLangDTO\":{\"title\":\"CountryLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CityDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/adr/cities/count" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "countCities" + }, + "id": { + "element": "string", + "content": "countCitiesUsingGET" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/adr/cities/count{?countryId%2eequals,countryId%2egreaterOrEqualThan,countryId%2egreaterThan,countryId%2ein*,countryId%2elessOrEqualThan,countryId%2elessThan,countryId%2especified,id%2eequals,id%2egreaterOrEqualThan,id%2egreaterThan,id%2ein*,id%2elessOrEqualThan,id%2elessThan,id%2especified,name%2econtains,name%2eequals,name%2ein*,name%2especified,stateAddressId%2eequals,stateAddressId%2egreaterOrEqualThan,stateAddressId%2egreaterThan,stateAddressId%2ein*,stateAddressId%2elessOrEqualThan,stateAddressId%2elessThan,stateAddressId%2especified,translationId%2eequals,translationId%2egreaterOrEqualThan,translationId%2egreaterThan,translationId%2ein*,translationId%2elessOrEqualThan,translationId%2elessThan,translationId%2especified}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "countryId.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "countryId.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "countryId.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "countryId.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "countryId.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "countryId.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "countryId.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "stateAddressId.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "stateAddressId.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "stateAddressId.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "stateAddressId.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "stateAddressId.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "stateAddressId.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "stateAddressId.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.specified" + }, + "value": { + "element": "boolean" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"format\":\"int64\",\"type\":\"integer\"}" + }, + { + "element": "dataStructure", + "content": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'int64'" + } + } + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/adr/cities/{id}" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getCity" + }, + "id": { + "element": "string", + "content": "getCityUsingGET" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "id" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/CityDTO\"}],\"definitions\":{\"CityDTO\":{\"title\":\"CityDTO\",\"description\":\"Sehir tanimlarinin tutuldugu obje view - goruntu objesidir. @see GeographicBoundary @see GeographicBoundaryType @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"country\":{\"$ref\":\"#/definitions/CountryDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"stateAddress\":{\"$ref\":\"#/definitions/StateAddressDTO\"},\"translation\":{\"$ref\":\"#/definitions/CityLangDTO\"}}},\"CityLangDTO\":{\"title\":\"CityLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"LanguageCodeDTO\":{\"title\":\"LanguageCodeDTO\",\"description\":\"Programin destekledigi dillerin kodlarini icerir Languages codes are ISO_639-1 codes, see http: Codes for the Representation of Names of Languages Codes arranged alphabetically by alpha-3/ISO 639-2 Code Note: ISO 639-2 is the alpha-3 code in Codes for the representation of names of languages-- Part 2. There are 21 languages that have alternative codes for bibliographic or terminology purposes. In those cases, each is listed separately and they are designated as \\\"B\\\" (bibliographic) or \\\"T\\\" (terminology). In all other cases there is only one ISO 639-2 code. Multiple codes assigned to the same language are to be considered synonyms. ISO 639-1 is the alpha-2 code. @author Aurora Developer team.\",\"required\":[\"englishName\",\"iso6392Code\",\"name\"],\"type\":\"object\",\"properties\":{\"attributes\":{\"description\":\"organizasyon tipinin ek alanları.\",\"type\":\"object\",\"additionalProperties\":{\"type\":\"string\"}},\"code\":{\"description\":\"gobal dil kodu. tr, en, fr vb.. ISO 639-1 Code \\\"https:\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"englishName\":{\"description\":\"Dilin ingilizce ismi. kullanim kolayligi icin konulmustur.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"icon\":{\"description\":\"Dil icin icon bilgisi\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"iso6392Code\":{\"description\":\"ISO 639-2 dil kodlari. tur, eng vb.. ISO 639-2 Code \\\"https:\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"dilin original ismi. ENGLISH, TURKCE VS...\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}},\"StateAddressDTO\":{\"title\":\"StateAddressDTO\",\"description\":\"State - Eyalet bilgilerinin tanimlarinin yapildigi objedir. view - goruntu objesidir. @see GeographicBoundary @see GeographicBoundaryType @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"country\":{\"$ref\":\"#/definitions/CountryDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/StateAddressLangDTO\"}}},\"StateAddressLangDTO\":{\"title\":\"StateAddressLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"CountryDTO\":{\"title\":\"CountryDTO\",\"description\":\"Ulke tanimlari @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/CountryLangDTO\"}}},\"CountryLangDTO\":{\"title\":\"CountryLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CityDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "deleteCity" + }, + "id": { + "element": "string", + "content": "deleteCityUsingDELETE" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "id" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "204" + } + }, + "content": [ + { + "element": "copy", + "content": "No Content" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "category", + "meta": { + "title": { + "element": "string", + "content": "country-resource" + }, + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "resourceGroup" + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Country Resource" + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/adr/countries" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getAllCountries" + }, + "id": { + "element": "string", + "content": "getAllCountriesUsingGET" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/adr/countries{?id%2eequals,id%2egreaterOrEqualThan,id%2egreaterThan,id%2ein*,id%2elessOrEqualThan,id%2elessThan,id%2especified,name%2econtains,name%2eequals,name%2ein*,name%2especified,page,size,sort*,translationId%2eequals,translationId%2egreaterOrEqualThan,translationId%2egreaterThan,translationId%2ein*,translationId%2elessOrEqualThan,translationId%2elessThan,translationId%2especified}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Page number of the requested page" + } + }, + "content": { + "key": { + "element": "string", + "content": "page" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Size of a page" + } + }, + "content": { + "key": { + "element": "string", + "content": "size" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported." + } + }, + "content": { + "key": { + "element": "string", + "content": "sort" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.specified" + }, + "value": { + "element": "boolean" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/CountryDTO\"},\"definitions\":{\"CountryDTO\":{\"title\":\"CountryDTO\",\"description\":\"Ulke tanimlari @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/CountryLangDTO\"}}},\"CountryLangDTO\":{\"title\":\"CountryLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"LanguageCodeDTO\":{\"title\":\"LanguageCodeDTO\",\"description\":\"Programin destekledigi dillerin kodlarini icerir Languages codes are ISO_639-1 codes, see http: Codes for the Representation of Names of Languages Codes arranged alphabetically by alpha-3/ISO 639-2 Code Note: ISO 639-2 is the alpha-3 code in Codes for the representation of names of languages-- Part 2. There are 21 languages that have alternative codes for bibliographic or terminology purposes. In those cases, each is listed separately and they are designated as \\\"B\\\" (bibliographic) or \\\"T\\\" (terminology). In all other cases there is only one ISO 639-2 code. Multiple codes assigned to the same language are to be considered synonyms. ISO 639-1 is the alpha-2 code. @author Aurora Developer team.\",\"required\":[\"englishName\",\"iso6392Code\",\"name\"],\"type\":\"object\",\"properties\":{\"attributes\":{\"description\":\"organizasyon tipinin ek alanları.\",\"type\":\"object\",\"additionalProperties\":{\"type\":\"string\"}},\"code\":{\"description\":\"gobal dil kodu. tr, en, fr vb.. ISO 639-1 Code \\\"https:\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"englishName\":{\"description\":\"Dilin ingilizce ismi. kullanim kolayligi icin konulmustur.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"icon\":{\"description\":\"Dil icin icon bilgisi\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"iso6392Code\":{\"description\":\"ISO 639-2 dil kodlari. tur, eng vb.. ISO 639-2 Code \\\"https:\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"dilin original ismi. ENGLISH, TURKCE VS...\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/CountryDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "updateCountry" + }, + "id": { + "element": "string", + "content": "updateCountryUsingPUT" + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"sed qui\",\n \"createdDate\": \"2007-10-28T06:32:57.640Z\",\n \"id\": 37354295,\n \"lastModifiedBy\": \"anim\",\n \"lastModifiedDate\": \"1963-04-04T13:12:36.457Z\",\n \"translation\": {\n \"name\": \"in ea quis fugiat tempo\",\n \"createdBy\": \"Lorem irure ad consequat\",\n \"createdDate\": \"1961-02-18T10:11:14.809Z\",\n \"defaultLang\": true,\n \"description\": \"mollit\",\n \"id\": -83651964,\n \"lang\": {\n \"englishName\": \"dol\",\n \"iso6392Code\": \"dolor\",\n \"name\": \"adipisicing nisi fugiat\",\n \"attributes\": {},\n \"code\": \"pariatur c\",\n \"createdBy\": \"mollit\",\n \"createdDate\": \"1978-02-09T04:15:32.588Z\",\n \"description\": \"ad elit adipisicing occaecat mollit\",\n \"icon\": \"deserunt\",\n \"id\": 59040670,\n \"lastModifiedBy\": \"aliqua\",\n \"lastModifiedDate\": \"2000-03-30T13:17:37.377Z\",\n \"orderPriority\": -91340696,\n \"status\": true\n },\n \"lastModifiedBy\": \"magna nisi ut eiusmod minim\",\n \"lastModifiedDate\": \"2015-07-08T13:31:01.695Z\",\n \"ownerId\": 39391610\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/CountryDTO\"}],\"definitions\":{\"CountryDTO\":{\"title\":\"CountryDTO\",\"description\":\"Ulke tanimlari @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/CountryLangDTO\"}}},\"CountryLangDTO\":{\"title\":\"CountryLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"LanguageCodeDTO\":{\"title\":\"LanguageCodeDTO\",\"description\":\"Programin destekledigi dillerin kodlarini icerir Languages codes are ISO_639-1 codes, see http: Codes for the Representation of Names of Languages Codes arranged alphabetically by alpha-3/ISO 639-2 Code Note: ISO 639-2 is the alpha-3 code in Codes for the representation of names of languages-- Part 2. There are 21 languages that have alternative codes for bibliographic or terminology purposes. In those cases, each is listed separately and they are designated as \\\"B\\\" (bibliographic) or \\\"T\\\" (terminology). In all other cases there is only one ISO 639-2 code. Multiple codes assigned to the same language are to be considered synonyms. ISO 639-1 is the alpha-2 code. @author Aurora Developer team.\",\"required\":[\"englishName\",\"iso6392Code\",\"name\"],\"type\":\"object\",\"properties\":{\"attributes\":{\"description\":\"organizasyon tipinin ek alanları.\",\"type\":\"object\",\"additionalProperties\":{\"type\":\"string\"}},\"code\":{\"description\":\"gobal dil kodu. tr, en, fr vb.. ISO 639-1 Code \\\"https:\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"englishName\":{\"description\":\"Dilin ingilizce ismi. kullanim kolayligi icin konulmustur.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"icon\":{\"description\":\"Dil icin icon bilgisi\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"iso6392Code\":{\"description\":\"ISO 639-2 dil kodlari. tur, eng vb.. ISO 639-2 Code \\\"https:\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"dilin original ismi. ENGLISH, TURKCE VS...\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CountryDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/CountryDTO\"}],\"definitions\":{\"CountryDTO\":{\"title\":\"CountryDTO\",\"description\":\"Ulke tanimlari @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/CountryLangDTO\"}}},\"CountryLangDTO\":{\"title\":\"CountryLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"LanguageCodeDTO\":{\"title\":\"LanguageCodeDTO\",\"description\":\"Programin destekledigi dillerin kodlarini icerir Languages codes are ISO_639-1 codes, see http: Codes for the Representation of Names of Languages Codes arranged alphabetically by alpha-3/ISO 639-2 Code Note: ISO 639-2 is the alpha-3 code in Codes for the representation of names of languages-- Part 2. There are 21 languages that have alternative codes for bibliographic or terminology purposes. In those cases, each is listed separately and they are designated as \\\"B\\\" (bibliographic) or \\\"T\\\" (terminology). In all other cases there is only one ISO 639-2 code. Multiple codes assigned to the same language are to be considered synonyms. ISO 639-1 is the alpha-2 code. @author Aurora Developer team.\",\"required\":[\"englishName\",\"iso6392Code\",\"name\"],\"type\":\"object\",\"properties\":{\"attributes\":{\"description\":\"organizasyon tipinin ek alanları.\",\"type\":\"object\",\"additionalProperties\":{\"type\":\"string\"}},\"code\":{\"description\":\"gobal dil kodu. tr, en, fr vb.. ISO 639-1 Code \\\"https:\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"englishName\":{\"description\":\"Dilin ingilizce ismi. kullanim kolayligi icin konulmustur.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"icon\":{\"description\":\"Dil icin icon bilgisi\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"iso6392Code\":{\"description\":\"ISO 639-2 dil kodlari. tur, eng vb.. ISO 639-2 Code \\\"https:\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"dilin original ismi. ENGLISH, TURKCE VS...\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CountryDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"par\",\n \"createdDate\": \"1981-03-11T07:49:54.508Z\",\n \"id\": 63666628,\n \"lastModifiedBy\": \"Duis\",\n \"lastModifiedDate\": \"1958-04-16T03:27:55.550Z\",\n \"translation\": {\n \"name\": \"eiusmod veniam est adipisicing amet\",\n \"createdBy\": \"minim ullamco culpa aute sunt\",\n \"createdDate\": \"2012-02-10T06:48:22.107Z\",\n \"defaultLang\": false,\n \"description\": \"ut Ut reprehenderit sunt anim\",\n \"id\": 56193119,\n \"lang\": {\n \"englishName\": \"est\",\n \"iso6392Code\": \"minim anim Duis dolore consectetur\",\n \"name\": \"adipisicing\",\n \"attributes\": {},\n \"code\": \"elit consequat proide\",\n \"createdBy\": \"laborum veniam dolor id sit\",\n \"createdDate\": \"1997-04-10T23:28:07.651Z\",\n \"description\": \"ad non enim\",\n \"icon\": \"nulla\",\n \"id\": -81931827,\n \"lastModifiedBy\": \"sit fugiat sunt tempor\",\n \"lastModifiedDate\": \"1979-12-16T21:06:49.944Z\",\n \"orderPriority\": -8900670,\n \"status\": false\n },\n \"lastModifiedBy\": \"qui ex\",\n \"lastModifiedDate\": \"1946-09-07T12:34:30.497Z\",\n \"ownerId\": -70590571\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/CountryDTO\"}],\"definitions\":{\"CountryDTO\":{\"title\":\"CountryDTO\",\"description\":\"Ulke tanimlari @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/CountryLangDTO\"}}},\"CountryLangDTO\":{\"title\":\"CountryLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"LanguageCodeDTO\":{\"title\":\"LanguageCodeDTO\",\"description\":\"Programin destekledigi dillerin kodlarini icerir Languages codes are ISO_639-1 codes, see http: Codes for the Representation of Names of Languages Codes arranged alphabetically by alpha-3/ISO 639-2 Code Note: ISO 639-2 is the alpha-3 code in Codes for the representation of names of languages-- Part 2. There are 21 languages that have alternative codes for bibliographic or terminology purposes. In those cases, each is listed separately and they are designated as \\\"B\\\" (bibliographic) or \\\"T\\\" (terminology). In all other cases there is only one ISO 639-2 code. Multiple codes assigned to the same language are to be considered synonyms. ISO 639-1 is the alpha-2 code. @author Aurora Developer team.\",\"required\":[\"englishName\",\"iso6392Code\",\"name\"],\"type\":\"object\",\"properties\":{\"attributes\":{\"description\":\"organizasyon tipinin ek alanları.\",\"type\":\"object\",\"additionalProperties\":{\"type\":\"string\"}},\"code\":{\"description\":\"gobal dil kodu. tr, en, fr vb.. ISO 639-1 Code \\\"https:\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"englishName\":{\"description\":\"Dilin ingilizce ismi. kullanim kolayligi icin konulmustur.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"icon\":{\"description\":\"Dil icin icon bilgisi\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"iso6392Code\":{\"description\":\"ISO 639-2 dil kodlari. tur, eng vb.. ISO 639-2 Code \\\"https:\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"dilin original ismi. ENGLISH, TURKCE VS...\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CountryDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"reprehenderit ut\",\n \"createdDate\": \"1988-10-28T23:18:55.273Z\",\n \"id\": -48471551,\n \"lastModifiedBy\": \"in Excepteur commodo\",\n \"lastModifiedDate\": \"1946-11-08T20:21:03.844Z\",\n \"translation\": {\n \"name\": \"fugia\",\n \"createdBy\": \"ut minim\",\n \"createdDate\": \"1989-09-12T13:22:42.313Z\",\n \"defaultLang\": false,\n \"description\": \"dolor amet nisi\",\n \"id\": 80011076,\n \"lang\": {\n \"englishName\": \"exercitation dolor sit\",\n \"iso6392Code\": \"cillum\",\n \"name\": \"aliqua non veniam consequ\",\n \"attributes\": {},\n \"code\": \"nostrud irure qui\",\n \"createdBy\": \"ad\",\n \"createdDate\": \"2009-03-25T20:28:36.816Z\",\n \"description\": \"irure id anim\",\n \"icon\": \"minim esse cupidatat sint\",\n \"id\": -64393495,\n \"lastModifiedBy\": \"elit cupidatat\",\n \"lastModifiedDate\": \"1957-05-08T23:15:29.472Z\",\n \"orderPriority\": -34699400,\n \"status\": false\n },\n \"lastModifiedBy\": \"dolore\",\n \"lastModifiedDate\": \"1996-11-18T03:52:03.425Z\",\n \"ownerId\": -69258928\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/CountryDTO\"}],\"definitions\":{\"CountryDTO\":{\"title\":\"CountryDTO\",\"description\":\"Ulke tanimlari @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/CountryLangDTO\"}}},\"CountryLangDTO\":{\"title\":\"CountryLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"LanguageCodeDTO\":{\"title\":\"LanguageCodeDTO\",\"description\":\"Programin destekledigi dillerin kodlarini icerir Languages codes are ISO_639-1 codes, see http: Codes for the Representation of Names of Languages Codes arranged alphabetically by alpha-3/ISO 639-2 Code Note: ISO 639-2 is the alpha-3 code in Codes for the representation of names of languages-- Part 2. There are 21 languages that have alternative codes for bibliographic or terminology purposes. In those cases, each is listed separately and they are designated as \\\"B\\\" (bibliographic) or \\\"T\\\" (terminology). In all other cases there is only one ISO 639-2 code. Multiple codes assigned to the same language are to be considered synonyms. ISO 639-1 is the alpha-2 code. @author Aurora Developer team.\",\"required\":[\"englishName\",\"iso6392Code\",\"name\"],\"type\":\"object\",\"properties\":{\"attributes\":{\"description\":\"organizasyon tipinin ek alanları.\",\"type\":\"object\",\"additionalProperties\":{\"type\":\"string\"}},\"code\":{\"description\":\"gobal dil kodu. tr, en, fr vb.. ISO 639-1 Code \\\"https:\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"englishName\":{\"description\":\"Dilin ingilizce ismi. kullanim kolayligi icin konulmustur.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"icon\":{\"description\":\"Dil icin icon bilgisi\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"iso6392Code\":{\"description\":\"ISO 639-2 dil kodlari. tur, eng vb.. ISO 639-2 Code \\\"https:\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"dilin original ismi. ENGLISH, TURKCE VS...\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CountryDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"consequat nisi ve\",\n \"createdDate\": \"1981-12-20T20:56:59.321Z\",\n \"id\": -11448398,\n \"lastModifiedBy\": \"adipisicing nostrud consequat\",\n \"lastModifiedDate\": \"1942-04-29T14:24:32.412Z\",\n \"translation\": {\n \"name\": \"nulla Lorem\",\n \"createdBy\": \"enim irure culpa eu\",\n \"createdDate\": \"1943-03-27T00:52:09.202Z\",\n \"defaultLang\": false,\n \"description\": \"ex veniam\",\n \"id\": 55426909,\n \"lang\": {\n \"englishName\": \"irure aute\",\n \"iso6392Code\": \"minim occaecat eu sed\",\n \"name\": \"aliquip eu ullamco dolor sed\",\n \"attributes\": {},\n \"code\": \"nisi labore dolor\",\n \"createdBy\": \"ut repr\",\n \"createdDate\": \"1975-06-28T06:48:15.441Z\",\n \"description\": \"id quis adipisicing\",\n \"icon\": \"id sunt aute\",\n \"id\": 49733665,\n \"lastModifiedBy\": \"nisi tempor\",\n \"lastModifiedDate\": \"2000-08-21T01:28:25.543Z\",\n \"orderPriority\": -56626970,\n \"status\": true\n },\n \"lastModifiedBy\": \"amet do\",\n \"lastModifiedDate\": \"2018-02-18T00:47:07.767Z\",\n \"ownerId\": 81322538\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/CountryDTO\"}],\"definitions\":{\"CountryDTO\":{\"title\":\"CountryDTO\",\"description\":\"Ulke tanimlari @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/CountryLangDTO\"}}},\"CountryLangDTO\":{\"title\":\"CountryLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"LanguageCodeDTO\":{\"title\":\"LanguageCodeDTO\",\"description\":\"Programin destekledigi dillerin kodlarini icerir Languages codes are ISO_639-1 codes, see http: Codes for the Representation of Names of Languages Codes arranged alphabetically by alpha-3/ISO 639-2 Code Note: ISO 639-2 is the alpha-3 code in Codes for the representation of names of languages-- Part 2. There are 21 languages that have alternative codes for bibliographic or terminology purposes. In those cases, each is listed separately and they are designated as \\\"B\\\" (bibliographic) or \\\"T\\\" (terminology). In all other cases there is only one ISO 639-2 code. Multiple codes assigned to the same language are to be considered synonyms. ISO 639-1 is the alpha-2 code. @author Aurora Developer team.\",\"required\":[\"englishName\",\"iso6392Code\",\"name\"],\"type\":\"object\",\"properties\":{\"attributes\":{\"description\":\"organizasyon tipinin ek alanları.\",\"type\":\"object\",\"additionalProperties\":{\"type\":\"string\"}},\"code\":{\"description\":\"gobal dil kodu. tr, en, fr vb.. ISO 639-1 Code \\\"https:\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"englishName\":{\"description\":\"Dilin ingilizce ismi. kullanim kolayligi icin konulmustur.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"icon\":{\"description\":\"Dil icin icon bilgisi\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"iso6392Code\":{\"description\":\"ISO 639-2 dil kodlari. tur, eng vb.. ISO 639-2 Code \\\"https:\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"dilin original ismi. ENGLISH, TURKCE VS...\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CountryDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"occaecat esse\",\n \"createdDate\": \"1958-10-01T23:41:56.421Z\",\n \"id\": -85422568,\n \"lastModifiedBy\": \"in nulla dolore\",\n \"lastModifiedDate\": \"1955-06-01T16:08:11.100Z\",\n \"translation\": {\n \"name\": \"dolor nostrud i\",\n \"createdBy\": \"ad culpa eiusmod velit cupidatat\",\n \"createdDate\": \"2009-08-16T06:02:57.627Z\",\n \"defaultLang\": false,\n \"description\": \"commodo minim ad officia consectetur\",\n \"id\": -3060369,\n \"lang\": {\n \"englishName\": \"incididunt laboris\",\n \"iso6392Code\": \"ut\",\n \"name\": \"commodo aliqua Duis\",\n \"attributes\": {},\n \"code\": \"aliqua cupidatat \",\n \"createdBy\": \"id ut\",\n \"createdDate\": \"1955-04-15T18:58:09.673Z\",\n \"description\": \"in irure in\",\n \"icon\": \"aliqua consequat enim cupidatat\",\n \"id\": 33214388,\n \"lastModifiedBy\": \"dolore est elit commodo \",\n \"lastModifiedDate\": \"1959-04-21T14:49:39.879Z\",\n \"orderPriority\": -6621979,\n \"status\": true\n },\n \"lastModifiedBy\": \"incididunt cupidatat veniam\",\n \"lastModifiedDate\": \"1954-09-21T04:35:50.928Z\",\n \"ownerId\": -60196476\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/CountryDTO\"}],\"definitions\":{\"CountryDTO\":{\"title\":\"CountryDTO\",\"description\":\"Ulke tanimlari @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/CountryLangDTO\"}}},\"CountryLangDTO\":{\"title\":\"CountryLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"LanguageCodeDTO\":{\"title\":\"LanguageCodeDTO\",\"description\":\"Programin destekledigi dillerin kodlarini icerir Languages codes are ISO_639-1 codes, see http: Codes for the Representation of Names of Languages Codes arranged alphabetically by alpha-3/ISO 639-2 Code Note: ISO 639-2 is the alpha-3 code in Codes for the representation of names of languages-- Part 2. There are 21 languages that have alternative codes for bibliographic or terminology purposes. In those cases, each is listed separately and they are designated as \\\"B\\\" (bibliographic) or \\\"T\\\" (terminology). In all other cases there is only one ISO 639-2 code. Multiple codes assigned to the same language are to be considered synonyms. ISO 639-1 is the alpha-2 code. @author Aurora Developer team.\",\"required\":[\"englishName\",\"iso6392Code\",\"name\"],\"type\":\"object\",\"properties\":{\"attributes\":{\"description\":\"organizasyon tipinin ek alanları.\",\"type\":\"object\",\"additionalProperties\":{\"type\":\"string\"}},\"code\":{\"description\":\"gobal dil kodu. tr, en, fr vb.. ISO 639-1 Code \\\"https:\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"englishName\":{\"description\":\"Dilin ingilizce ismi. kullanim kolayligi icin konulmustur.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"icon\":{\"description\":\"Dil icin icon bilgisi\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"iso6392Code\":{\"description\":\"ISO 639-2 dil kodlari. tur, eng vb.. ISO 639-2 Code \\\"https:\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"dilin original ismi. ENGLISH, TURKCE VS...\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CountryDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "createCountry" + }, + "id": { + "element": "string", + "content": "createCountryUsingPOST" + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"magna velit laborum\",\n \"createdDate\": \"2008-01-13T03:33:05.675Z\",\n \"id\": 65097853,\n \"lastModifiedBy\": \"consequat aliqua proident fugiat exercitation\",\n \"lastModifiedDate\": \"1964-03-10T14:00:42.760Z\",\n \"translation\": {\n \"name\": \"laboris\",\n \"createdBy\": \"dolor officia aute amet\",\n \"createdDate\": \"2015-02-10T21:57:01.494Z\",\n \"defaultLang\": false,\n \"description\": \"consequat Lorem in Ut\",\n \"id\": -70436659,\n \"lang\": {\n \"englishName\": \"labore tempor sit sint\",\n \"iso6392Code\": \"laboris non\",\n \"name\": \"sit in ut cillum ad\",\n \"attributes\": {},\n \"code\": \"amet labore ut cillum\",\n \"createdBy\": \"anim Duis\",\n \"createdDate\": \"1999-10-24T21:38:14.048Z\",\n \"description\": \"fugiat incididunt\",\n \"icon\": \"dolore cillum proident\",\n \"id\": -58661471,\n \"lastModifiedBy\": \"tempor\",\n \"lastModifiedDate\": \"2017-09-19T13:47:24.929Z\",\n \"orderPriority\": -88004949,\n \"status\": false\n },\n \"lastModifiedBy\": \"cupidatat ex sunt ei\",\n \"lastModifiedDate\": \"1998-07-26T18:07:52.127Z\",\n \"ownerId\": -74407238\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/CountryDTO\"}],\"definitions\":{\"CountryDTO\":{\"title\":\"CountryDTO\",\"description\":\"Ulke tanimlari @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/CountryLangDTO\"}}},\"CountryLangDTO\":{\"title\":\"CountryLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"LanguageCodeDTO\":{\"title\":\"LanguageCodeDTO\",\"description\":\"Programin destekledigi dillerin kodlarini icerir Languages codes are ISO_639-1 codes, see http: Codes for the Representation of Names of Languages Codes arranged alphabetically by alpha-3/ISO 639-2 Code Note: ISO 639-2 is the alpha-3 code in Codes for the representation of names of languages-- Part 2. There are 21 languages that have alternative codes for bibliographic or terminology purposes. In those cases, each is listed separately and they are designated as \\\"B\\\" (bibliographic) or \\\"T\\\" (terminology). In all other cases there is only one ISO 639-2 code. Multiple codes assigned to the same language are to be considered synonyms. ISO 639-1 is the alpha-2 code. @author Aurora Developer team.\",\"required\":[\"englishName\",\"iso6392Code\",\"name\"],\"type\":\"object\",\"properties\":{\"attributes\":{\"description\":\"organizasyon tipinin ek alanları.\",\"type\":\"object\",\"additionalProperties\":{\"type\":\"string\"}},\"code\":{\"description\":\"gobal dil kodu. tr, en, fr vb.. ISO 639-1 Code \\\"https:\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"englishName\":{\"description\":\"Dilin ingilizce ismi. kullanim kolayligi icin konulmustur.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"icon\":{\"description\":\"Dil icin icon bilgisi\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"iso6392Code\":{\"description\":\"ISO 639-2 dil kodlari. tur, eng vb.. ISO 639-2 Code \\\"https:\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"dilin original ismi. ENGLISH, TURKCE VS...\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CountryDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/CountryDTO\"}],\"definitions\":{\"CountryDTO\":{\"title\":\"CountryDTO\",\"description\":\"Ulke tanimlari @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/CountryLangDTO\"}}},\"CountryLangDTO\":{\"title\":\"CountryLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"LanguageCodeDTO\":{\"title\":\"LanguageCodeDTO\",\"description\":\"Programin destekledigi dillerin kodlarini icerir Languages codes are ISO_639-1 codes, see http: Codes for the Representation of Names of Languages Codes arranged alphabetically by alpha-3/ISO 639-2 Code Note: ISO 639-2 is the alpha-3 code in Codes for the representation of names of languages-- Part 2. There are 21 languages that have alternative codes for bibliographic or terminology purposes. In those cases, each is listed separately and they are designated as \\\"B\\\" (bibliographic) or \\\"T\\\" (terminology). In all other cases there is only one ISO 639-2 code. Multiple codes assigned to the same language are to be considered synonyms. ISO 639-1 is the alpha-2 code. @author Aurora Developer team.\",\"required\":[\"englishName\",\"iso6392Code\",\"name\"],\"type\":\"object\",\"properties\":{\"attributes\":{\"description\":\"organizasyon tipinin ek alanları.\",\"type\":\"object\",\"additionalProperties\":{\"type\":\"string\"}},\"code\":{\"description\":\"gobal dil kodu. tr, en, fr vb.. ISO 639-1 Code \\\"https:\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"englishName\":{\"description\":\"Dilin ingilizce ismi. kullanim kolayligi icin konulmustur.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"icon\":{\"description\":\"Dil icin icon bilgisi\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"iso6392Code\":{\"description\":\"ISO 639-2 dil kodlari. tur, eng vb.. ISO 639-2 Code \\\"https:\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"dilin original ismi. ENGLISH, TURKCE VS...\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CountryDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"elit dolore ipsum\",\n \"createdDate\": \"1944-01-08T10:39:25.455Z\",\n \"id\": -10633692,\n \"lastModifiedBy\": \"anim do incididunt et deserunt\",\n \"lastModifiedDate\": \"1944-03-03T07:44:58.869Z\",\n \"translation\": {\n \"name\": \"voluptate\",\n \"createdBy\": \"magna do ipsum mollit eiusmod\",\n \"createdDate\": \"1986-01-23T02:52:49.290Z\",\n \"defaultLang\": false,\n \"description\": \"irure incididunt cillum ea\",\n \"id\": -76500967,\n \"lang\": {\n \"englishName\": \"in aliqu\",\n \"iso6392Code\": \"aliqua dolore in\",\n \"name\": \"sunt dolor elit\",\n \"attributes\": {},\n \"code\": \"ullamco nulla\",\n \"createdBy\": \"Ut consequat in reprehenderit\",\n \"createdDate\": \"1993-04-18T11:57:32.293Z\",\n \"description\": \"irure dolore aute\",\n \"icon\": \"occaecat labore pariatur ut quis\",\n \"id\": 90426954,\n \"lastModifiedBy\": \"eiusmod\",\n \"lastModifiedDate\": \"1972-10-12T23:55:05.580Z\",\n \"orderPriority\": -59944680,\n \"status\": true\n },\n \"lastModifiedBy\": \"ullamco ex aute dolor veniam\",\n \"lastModifiedDate\": \"1953-03-02T02:12:49.856Z\",\n \"ownerId\": -75607142\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/CountryDTO\"}],\"definitions\":{\"CountryDTO\":{\"title\":\"CountryDTO\",\"description\":\"Ulke tanimlari @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/CountryLangDTO\"}}},\"CountryLangDTO\":{\"title\":\"CountryLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"LanguageCodeDTO\":{\"title\":\"LanguageCodeDTO\",\"description\":\"Programin destekledigi dillerin kodlarini icerir Languages codes are ISO_639-1 codes, see http: Codes for the Representation of Names of Languages Codes arranged alphabetically by alpha-3/ISO 639-2 Code Note: ISO 639-2 is the alpha-3 code in Codes for the representation of names of languages-- Part 2. There are 21 languages that have alternative codes for bibliographic or terminology purposes. In those cases, each is listed separately and they are designated as \\\"B\\\" (bibliographic) or \\\"T\\\" (terminology). In all other cases there is only one ISO 639-2 code. Multiple codes assigned to the same language are to be considered synonyms. ISO 639-1 is the alpha-2 code. @author Aurora Developer team.\",\"required\":[\"englishName\",\"iso6392Code\",\"name\"],\"type\":\"object\",\"properties\":{\"attributes\":{\"description\":\"organizasyon tipinin ek alanları.\",\"type\":\"object\",\"additionalProperties\":{\"type\":\"string\"}},\"code\":{\"description\":\"gobal dil kodu. tr, en, fr vb.. ISO 639-1 Code \\\"https:\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"englishName\":{\"description\":\"Dilin ingilizce ismi. kullanim kolayligi icin konulmustur.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"icon\":{\"description\":\"Dil icin icon bilgisi\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"iso6392Code\":{\"description\":\"ISO 639-2 dil kodlari. tur, eng vb.. ISO 639-2 Code \\\"https:\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"dilin original ismi. ENGLISH, TURKCE VS...\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CountryDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"Duis in quis exercitation proident\",\n \"createdDate\": \"1963-03-20T23:10:01.055Z\",\n \"id\": 89865409,\n \"lastModifiedBy\": \"i\",\n \"lastModifiedDate\": \"1954-07-31T13:28:07.619Z\",\n \"translation\": {\n \"name\": \"ex\",\n \"createdBy\": \"adipisicing pariatur reprehenderit\",\n \"createdDate\": \"1992-12-06T13:12:01.830Z\",\n \"defaultLang\": true,\n \"description\": \"Excepteu\",\n \"id\": 53496469,\n \"lang\": {\n \"englishName\": \"in laborum\",\n \"iso6392Code\": \"la\",\n \"name\": \"enim\",\n \"attributes\": {},\n \"code\": \"ut sint\",\n \"createdBy\": \"tempor Lorem Excepteur\",\n \"createdDate\": \"1985-06-17T05:35:25.607Z\",\n \"description\": \"commodo laboris ea\",\n \"icon\": \"magna in in\",\n \"id\": -81418155,\n \"lastModifiedBy\": \"consequat esse\",\n \"lastModifiedDate\": \"1944-03-29T04:44:36.618Z\",\n \"orderPriority\": -66451861,\n \"status\": false\n },\n \"lastModifiedBy\": \"est amet et sit\",\n \"lastModifiedDate\": \"1961-10-24T01:08:11.627Z\",\n \"ownerId\": 96315842\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/CountryDTO\"}],\"definitions\":{\"CountryDTO\":{\"title\":\"CountryDTO\",\"description\":\"Ulke tanimlari @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/CountryLangDTO\"}}},\"CountryLangDTO\":{\"title\":\"CountryLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"LanguageCodeDTO\":{\"title\":\"LanguageCodeDTO\",\"description\":\"Programin destekledigi dillerin kodlarini icerir Languages codes are ISO_639-1 codes, see http: Codes for the Representation of Names of Languages Codes arranged alphabetically by alpha-3/ISO 639-2 Code Note: ISO 639-2 is the alpha-3 code in Codes for the representation of names of languages-- Part 2. There are 21 languages that have alternative codes for bibliographic or terminology purposes. In those cases, each is listed separately and they are designated as \\\"B\\\" (bibliographic) or \\\"T\\\" (terminology). In all other cases there is only one ISO 639-2 code. Multiple codes assigned to the same language are to be considered synonyms. ISO 639-1 is the alpha-2 code. @author Aurora Developer team.\",\"required\":[\"englishName\",\"iso6392Code\",\"name\"],\"type\":\"object\",\"properties\":{\"attributes\":{\"description\":\"organizasyon tipinin ek alanları.\",\"type\":\"object\",\"additionalProperties\":{\"type\":\"string\"}},\"code\":{\"description\":\"gobal dil kodu. tr, en, fr vb.. ISO 639-1 Code \\\"https:\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"englishName\":{\"description\":\"Dilin ingilizce ismi. kullanim kolayligi icin konulmustur.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"icon\":{\"description\":\"Dil icin icon bilgisi\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"iso6392Code\":{\"description\":\"ISO 639-2 dil kodlari. tur, eng vb.. ISO 639-2 Code \\\"https:\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"dilin original ismi. ENGLISH, TURKCE VS...\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CountryDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"eu tempor ad ea Ut\",\n \"createdDate\": \"2000-05-10T00:02:35.011Z\",\n \"id\": -47511404,\n \"lastModifiedBy\": \"deserunt sint fugiat magna dolor\",\n \"lastModifiedDate\": \"1970-12-04T09:16:52.751Z\",\n \"translation\": {\n \"name\": \"laborum culpa nostrud\",\n \"createdBy\": \"occaecat culpa Duis sint\",\n \"createdDate\": \"2008-09-29T21:56:51.847Z\",\n \"defaultLang\": true,\n \"description\": \"sunt\",\n \"id\": 68424746,\n \"lang\": {\n \"englishName\": \"veni\",\n \"iso6392Code\": \"officia\",\n \"name\": \"exercitation mollit\",\n \"attributes\": {},\n \"code\": \"quis ullam\",\n \"createdBy\": \"su\",\n \"createdDate\": \"1941-03-01T14:52:56.316Z\",\n \"description\": \"ut sit in irure laborum\",\n \"icon\": \"dolore aliquip Excepteur cillum pariatur\",\n \"id\": 40773522,\n \"lastModifiedBy\": \"dolore ea\",\n \"lastModifiedDate\": \"1942-11-23T09:30:06.859Z\",\n \"orderPriority\": -40744157,\n \"status\": false\n },\n \"lastModifiedBy\": \"ullamco aliquip\",\n \"lastModifiedDate\": \"1942-09-03T15:22:33.332Z\",\n \"ownerId\": -54832562\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/CountryDTO\"}],\"definitions\":{\"CountryDTO\":{\"title\":\"CountryDTO\",\"description\":\"Ulke tanimlari @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/CountryLangDTO\"}}},\"CountryLangDTO\":{\"title\":\"CountryLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"LanguageCodeDTO\":{\"title\":\"LanguageCodeDTO\",\"description\":\"Programin destekledigi dillerin kodlarini icerir Languages codes are ISO_639-1 codes, see http: Codes for the Representation of Names of Languages Codes arranged alphabetically by alpha-3/ISO 639-2 Code Note: ISO 639-2 is the alpha-3 code in Codes for the representation of names of languages-- Part 2. There are 21 languages that have alternative codes for bibliographic or terminology purposes. In those cases, each is listed separately and they are designated as \\\"B\\\" (bibliographic) or \\\"T\\\" (terminology). In all other cases there is only one ISO 639-2 code. Multiple codes assigned to the same language are to be considered synonyms. ISO 639-1 is the alpha-2 code. @author Aurora Developer team.\",\"required\":[\"englishName\",\"iso6392Code\",\"name\"],\"type\":\"object\",\"properties\":{\"attributes\":{\"description\":\"organizasyon tipinin ek alanları.\",\"type\":\"object\",\"additionalProperties\":{\"type\":\"string\"}},\"code\":{\"description\":\"gobal dil kodu. tr, en, fr vb.. ISO 639-1 Code \\\"https:\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"englishName\":{\"description\":\"Dilin ingilizce ismi. kullanim kolayligi icin konulmustur.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"icon\":{\"description\":\"Dil icin icon bilgisi\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"iso6392Code\":{\"description\":\"ISO 639-2 dil kodlari. tur, eng vb.. ISO 639-2 Code \\\"https:\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"dilin original ismi. ENGLISH, TURKCE VS...\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CountryDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"proident consequat voluptate Excepteur\",\n \"createdDate\": \"1956-06-13T23:11:10.495Z\",\n \"id\": -64391704,\n \"lastModifiedBy\": \"mollit\",\n \"lastModifiedDate\": \"1982-04-29T21:43:30.850Z\",\n \"translation\": {\n \"name\": \"labore ipsum\",\n \"createdBy\": \"ut\",\n \"createdDate\": \"1942-09-16T23:12:36.252Z\",\n \"defaultLang\": false,\n \"description\": \"fugiat minim consect\",\n \"id\": -20368697,\n \"lang\": {\n \"englishName\": \"fugiat\",\n \"iso6392Code\": \"sed sunt\",\n \"name\": \"dolore culpa\",\n \"attributes\": {},\n \"code\": \"adipisicing ex irure\",\n \"createdBy\": \"deserunt fugiat\",\n \"createdDate\": \"2013-11-22T03:51:33.286Z\",\n \"description\": \"officia dolore consectetur amet tempor\",\n \"icon\": \"cupidatat laboris\",\n \"id\": -83223783,\n \"lastModifiedBy\": \"anim culpa quis ea\",\n \"lastModifiedDate\": \"1952-07-10T23:19:06.448Z\",\n \"orderPriority\": -85275467,\n \"status\": false\n },\n \"lastModifiedBy\": \"nisi ea dolore irure sit\",\n \"lastModifiedDate\": \"1989-03-08T07:07:31.647Z\",\n \"ownerId\": -92923053\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/CountryDTO\"}],\"definitions\":{\"CountryDTO\":{\"title\":\"CountryDTO\",\"description\":\"Ulke tanimlari @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/CountryLangDTO\"}}},\"CountryLangDTO\":{\"title\":\"CountryLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"LanguageCodeDTO\":{\"title\":\"LanguageCodeDTO\",\"description\":\"Programin destekledigi dillerin kodlarini icerir Languages codes are ISO_639-1 codes, see http: Codes for the Representation of Names of Languages Codes arranged alphabetically by alpha-3/ISO 639-2 Code Note: ISO 639-2 is the alpha-3 code in Codes for the representation of names of languages-- Part 2. There are 21 languages that have alternative codes for bibliographic or terminology purposes. In those cases, each is listed separately and they are designated as \\\"B\\\" (bibliographic) or \\\"T\\\" (terminology). In all other cases there is only one ISO 639-2 code. Multiple codes assigned to the same language are to be considered synonyms. ISO 639-1 is the alpha-2 code. @author Aurora Developer team.\",\"required\":[\"englishName\",\"iso6392Code\",\"name\"],\"type\":\"object\",\"properties\":{\"attributes\":{\"description\":\"organizasyon tipinin ek alanları.\",\"type\":\"object\",\"additionalProperties\":{\"type\":\"string\"}},\"code\":{\"description\":\"gobal dil kodu. tr, en, fr vb.. ISO 639-1 Code \\\"https:\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"englishName\":{\"description\":\"Dilin ingilizce ismi. kullanim kolayligi icin konulmustur.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"icon\":{\"description\":\"Dil icin icon bilgisi\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"iso6392Code\":{\"description\":\"ISO 639-2 dil kodlari. tur, eng vb.. ISO 639-2 Code \\\"https:\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"dilin original ismi. ENGLISH, TURKCE VS...\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CountryDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/adr/countries/count" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "countCountries" + }, + "id": { + "element": "string", + "content": "countCountriesUsingGET" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/adr/countries/count{?id%2eequals,id%2egreaterOrEqualThan,id%2egreaterThan,id%2ein*,id%2elessOrEqualThan,id%2elessThan,id%2especified,name%2econtains,name%2eequals,name%2ein*,name%2especified,translationId%2eequals,translationId%2egreaterOrEqualThan,translationId%2egreaterThan,translationId%2ein*,translationId%2elessOrEqualThan,translationId%2elessThan,translationId%2especified}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.specified" + }, + "value": { + "element": "boolean" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"format\":\"int64\",\"type\":\"integer\"}" + }, + { + "element": "dataStructure", + "content": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'int64'" + } + } + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/adr/countries/{id}" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getCountry" + }, + "id": { + "element": "string", + "content": "getCountryUsingGET" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "id" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/CountryDTO\"}],\"definitions\":{\"CountryDTO\":{\"title\":\"CountryDTO\",\"description\":\"Ulke tanimlari @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/CountryLangDTO\"}}},\"CountryLangDTO\":{\"title\":\"CountryLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"LanguageCodeDTO\":{\"title\":\"LanguageCodeDTO\",\"description\":\"Programin destekledigi dillerin kodlarini icerir Languages codes are ISO_639-1 codes, see http: Codes for the Representation of Names of Languages Codes arranged alphabetically by alpha-3/ISO 639-2 Code Note: ISO 639-2 is the alpha-3 code in Codes for the representation of names of languages-- Part 2. There are 21 languages that have alternative codes for bibliographic or terminology purposes. In those cases, each is listed separately and they are designated as \\\"B\\\" (bibliographic) or \\\"T\\\" (terminology). In all other cases there is only one ISO 639-2 code. Multiple codes assigned to the same language are to be considered synonyms. ISO 639-1 is the alpha-2 code. @author Aurora Developer team.\",\"required\":[\"englishName\",\"iso6392Code\",\"name\"],\"type\":\"object\",\"properties\":{\"attributes\":{\"description\":\"organizasyon tipinin ek alanları.\",\"type\":\"object\",\"additionalProperties\":{\"type\":\"string\"}},\"code\":{\"description\":\"gobal dil kodu. tr, en, fr vb.. ISO 639-1 Code \\\"https:\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"englishName\":{\"description\":\"Dilin ingilizce ismi. kullanim kolayligi icin konulmustur.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"icon\":{\"description\":\"Dil icin icon bilgisi\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"iso6392Code\":{\"description\":\"ISO 639-2 dil kodlari. tur, eng vb.. ISO 639-2 Code \\\"https:\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"dilin original ismi. ENGLISH, TURKCE VS...\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CountryDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "deleteCountry" + }, + "id": { + "element": "string", + "content": "deleteCountryUsingDELETE" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "id" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "204" + } + }, + "content": [ + { + "element": "copy", + "content": "No Content" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "category", + "meta": { + "title": { + "element": "string", + "content": "district-resource" + }, + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "resourceGroup" + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "District Resource" + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/adr/districts" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getAllDistricts" + }, + "id": { + "element": "string", + "content": "getAllDistrictsUsingGET" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/adr/districts{?cityId%2eequals,cityId%2egreaterOrEqualThan,cityId%2egreaterThan,cityId%2ein*,cityId%2elessOrEqualThan,cityId%2elessThan,cityId%2especified,id%2eequals,id%2egreaterOrEqualThan,id%2egreaterThan,id%2ein*,id%2elessOrEqualThan,id%2elessThan,id%2especified,page,size,sort*,translationId%2eequals,translationId%2egreaterOrEqualThan,translationId%2egreaterThan,translationId%2ein*,translationId%2elessOrEqualThan,translationId%2elessThan,translationId%2especified}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "cityId.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "cityId.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "cityId.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "cityId.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "cityId.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "cityId.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "cityId.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Page number of the requested page" + } + }, + "content": { + "key": { + "element": "string", + "content": "page" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Size of a page" + } + }, + "content": { + "key": { + "element": "string", + "content": "size" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported." + } + }, + "content": { + "key": { + "element": "string", + "content": "sort" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.specified" + }, + "value": { + "element": "boolean" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/DistrictDTO\"},\"definitions\":{\"DistrictDTO\":{\"title\":\"DistrictDTO\",\"description\":\"Ilce tanimlarinin tutuldugu obje @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"city\":{\"$ref\":\"#/definitions/CityDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/DistrictLangDTO\"}}},\"DistrictLangDTO\":{\"title\":\"DistrictLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"LanguageCodeDTO\":{\"title\":\"LanguageCodeDTO\",\"description\":\"Programin destekledigi dillerin kodlarini icerir Languages codes are ISO_639-1 codes, see http: Codes for the Representation of Names of Languages Codes arranged alphabetically by alpha-3/ISO 639-2 Code Note: ISO 639-2 is the alpha-3 code in Codes for the representation of names of languages-- Part 2. There are 21 languages that have alternative codes for bibliographic or terminology purposes. In those cases, each is listed separately and they are designated as \\\"B\\\" (bibliographic) or \\\"T\\\" (terminology). In all other cases there is only one ISO 639-2 code. Multiple codes assigned to the same language are to be considered synonyms. ISO 639-1 is the alpha-2 code. @author Aurora Developer team.\",\"required\":[\"englishName\",\"iso6392Code\",\"name\"],\"type\":\"object\",\"properties\":{\"attributes\":{\"description\":\"organizasyon tipinin ek alanları.\",\"type\":\"object\",\"additionalProperties\":{\"type\":\"string\"}},\"code\":{\"description\":\"gobal dil kodu. tr, en, fr vb.. ISO 639-1 Code \\\"https:\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"englishName\":{\"description\":\"Dilin ingilizce ismi. kullanim kolayligi icin konulmustur.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"icon\":{\"description\":\"Dil icin icon bilgisi\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"iso6392Code\":{\"description\":\"ISO 639-2 dil kodlari. tur, eng vb.. ISO 639-2 Code \\\"https:\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"dilin original ismi. ENGLISH, TURKCE VS...\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}},\"CityDTO\":{\"title\":\"CityDTO\",\"description\":\"Sehir tanimlarinin tutuldugu obje view - goruntu objesidir. @see GeographicBoundary @see GeographicBoundaryType @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"country\":{\"$ref\":\"#/definitions/CountryDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"stateAddress\":{\"$ref\":\"#/definitions/StateAddressDTO\"},\"translation\":{\"$ref\":\"#/definitions/CityLangDTO\"}}},\"CityLangDTO\":{\"title\":\"CityLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"StateAddressDTO\":{\"title\":\"StateAddressDTO\",\"description\":\"State - Eyalet bilgilerinin tanimlarinin yapildigi objedir. view - goruntu objesidir. @see GeographicBoundary @see GeographicBoundaryType @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"country\":{\"$ref\":\"#/definitions/CountryDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/StateAddressLangDTO\"}}},\"StateAddressLangDTO\":{\"title\":\"StateAddressLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"CountryDTO\":{\"title\":\"CountryDTO\",\"description\":\"Ulke tanimlari @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/CountryLangDTO\"}}},\"CountryLangDTO\":{\"title\":\"CountryLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/DistrictDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "updateDistrict" + }, + "id": { + "element": "string", + "content": "updateDistrictUsingPUT" + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"city\": {\n \"country\": {\n \"createdBy\": \"la\",\n \"createdDate\": \"1988-01-15T12:03:17.946Z\",\n \"id\": -64611562,\n \"lastModifiedBy\": \"et nostrud\",\n \"lastModifiedDate\": \"1976-08-28T12:40:23.045Z\",\n \"translation\": {\n \"name\": \"voluptate\",\n \"createdBy\": \"ad Ut elit\",\n \"createdDate\": \"1956-06-01T13:37:29.891Z\",\n \"defaultLang\": true,\n \"description\": \"elit veniam\",\n \"id\": -75111748,\n \"lang\": {\n \"englishName\": \"velit m\",\n \"iso6392Code\": \"ex nulla in\",\n \"name\": \"laborum id laboris ipsum\",\n \"attributes\": {},\n \"code\": \"in\",\n \"createdBy\": \"ex\",\n \"createdDate\": \"2015-10-20T01:22:36.253Z\",\n \"description\": \"qui do sunt laboris amet\",\n \"icon\": \"enim sunt consequat veniam non\",\n \"id\": -34633358,\n \"lastModifiedBy\": \"culpa\",\n \"lastModifiedDate\": \"1986-02-06T01:15:47.581Z\",\n \"orderPriority\": -47711637,\n \"status\": true\n },\n \"lastModifiedBy\": \"in Excepteur proident Lorem in\",\n \"lastModifiedDate\": \"1988-04-23T05:17:03.259Z\",\n \"ownerId\": 91656332\n }\n },\n \"createdBy\": \"ut est\",\n \"createdDate\": \"1982-10-20T08:37:36.467Z\",\n \"id\": 68487282,\n \"lastModifiedBy\": \"labore ut non elit\",\n \"lastModifiedDate\": \"1970-11-26T06:43:37.663Z\",\n \"stateAddress\": {\n \"country\": {\n \"createdBy\": \"qui voluptate aute\",\n \"createdDate\": \"1983-10-02T11:32:39.735Z\",\n \"id\": 71662138,\n \"lastModifiedBy\": \"amet ea do\",\n \"lastModifiedDate\": \"1945-08-22T01:13:43.576Z\",\n \"translation\": {\n \"name\": \"occaecat mollit in\",\n \"createdBy\": \"cillum\",\n \"createdDate\": \"1975-07-05T08:36:54.706Z\",\n \"defaultLang\": true,\n \"description\": \"ut dolore\",\n \"id\": -60292574,\n \"lang\": {\n \"englishName\": \"cupidatat eu est enim\",\n \"iso6392Code\": \"cupidatat\",\n \"name\": \"mollit\",\n \"attributes\": {},\n \"code\": \"culpa eu\",\n \"createdBy\": \"culpa tempor magna\",\n \"createdDate\": \"1970-08-21T01:44:41.129Z\",\n \"description\": \"irure ut fugiat\",\n \"icon\": \"volupta\",\n \"id\": -46805606,\n \"lastModifiedBy\": \"te\",\n \"lastModifiedDate\": \"1961-12-05T18:02:53.265Z\",\n \"orderPriority\": -70663495,\n \"status\": false\n },\n \"lastModifiedBy\": \"magna ullamco dolor ipsum nulla\",\n \"lastModifiedDate\": \"2010-06-05T07:47:06.032Z\",\n \"ownerId\": -13349325\n }\n },\n \"createdBy\": \"cupidatat in Lorem laboris dolore\",\n \"createdDate\": \"1991-03-26T16:52:47.411Z\",\n \"id\": 81550402,\n \"lastModifiedBy\": \"par\",\n \"lastModifiedDate\": \"1975-09-05T21:34:34.954Z\",\n \"translation\": {\n \"name\": \"cillum\",\n \"createdBy\": \"dolore dolor aute est\",\n \"createdDate\": \"1949-10-01T09:57:11.237Z\",\n \"defaultLang\": true,\n \"description\": \"laboris consequat\",\n \"id\": -33901107,\n \"lang\": {\n \"englishName\": \"esse velit exercita\",\n \"iso6392Code\": \"ex qui Duis\",\n \"name\": \"in tempor sed\",\n \"attributes\": {},\n \"code\": \"nostrud es\",\n \"createdBy\": \"voluptate est\",\n \"createdDate\": \"1954-04-20T11:29:23.586Z\",\n \"description\": \"reprehenderit officia\",\n \"icon\": \"Ut nulla\",\n \"id\": 52152639,\n \"lastModifiedBy\": \"id eiusmod exercitation\",\n \"lastModifiedDate\": \"2004-07-23T00:50:21.889Z\",\n \"orderPriority\": -82659328,\n \"status\": false\n },\n \"lastModifiedBy\": \"in esse magna et ex\",\n \"lastModifiedDate\": \"1982-06-04T15:19:26.375Z\",\n \"ownerId\": 10552741\n }\n },\n \"translation\": {\n \"name\": \"proident \",\n \"createdBy\": \"est \",\n \"createdDate\": \"2002-07-15T21:33:45.438Z\",\n \"defaultLang\": false,\n \"description\": \"et laborum ullamco veniam nostrud\",\n \"id\": -21757151,\n \"lang\": {\n \"englishName\": \"nisi ipsum in\",\n \"iso6392Code\": \"officia id non\",\n \"name\": \"ullamco incididunt\",\n \"attributes\": {},\n \"code\": \"magna \",\n \"createdBy\": \"ex minim\",\n \"createdDate\": \"1996-12-24T08:42:45.376Z\",\n \"description\": \"ullamco adipisicing\",\n \"icon\": \"aute quis elit nulla\",\n \"id\": -48841487,\n \"lastModifiedBy\": \"officia laboris mollit\",\n \"lastModifiedDate\": \"1977-12-01T11:59:00.738Z\",\n \"orderPriority\": -21829836,\n \"status\": true\n },\n \"lastModifiedBy\": \"et enim\",\n \"lastModifiedDate\": \"1988-08-15T07:37:06.894Z\",\n \"ownerId\": 52174896\n }\n },\n \"createdBy\": \"occae\",\n \"createdDate\": \"1964-10-06T07:04:40.976Z\",\n \"id\": -22499387,\n \"lastModifiedBy\": \"officia velit pariatur proident ut\",\n \"lastModifiedDate\": \"1984-09-11T20:04:13.211Z\",\n \"translation\": {\n \"name\": \"consequat velit eiusmod ex\",\n \"createdBy\": \"commodo ut id magna consequat\",\n \"createdDate\": \"1994-05-29T02:09:27.658Z\",\n \"defaultLang\": false,\n \"description\": \"enim\",\n \"id\": 24966579,\n \"lang\": {\n \"englishName\": \"laborum\",\n \"iso6392Code\": \"nisi\",\n \"name\": \"ea id commodo mollit\",\n \"attributes\": {},\n \"code\": \"sit quis laborum voluptate dolor\",\n \"createdBy\": \"exercitation elit dolor cupidatat id\",\n \"createdDate\": \"2002-10-22T06:06:16.622Z\",\n \"description\": \"et non eiusmod veniam pariatur\",\n \"icon\": \"ea tempor do aute elit\",\n \"id\": 68846632,\n \"lastModifiedBy\": \"do laboris\",\n \"lastModifiedDate\": \"1964-05-25T22:26:38.303Z\",\n \"orderPriority\": -75716298,\n \"status\": true\n },\n \"lastModifiedBy\": \"adipisicing ut\",\n \"lastModifiedDate\": \"2016-03-18T04:54:16.147Z\",\n \"ownerId\": -42603449\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/DistrictDTO\"}],\"definitions\":{\"DistrictDTO\":{\"title\":\"DistrictDTO\",\"description\":\"Ilce tanimlarinin tutuldugu obje @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"city\":{\"$ref\":\"#/definitions/CityDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/DistrictLangDTO\"}}},\"DistrictLangDTO\":{\"title\":\"DistrictLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"LanguageCodeDTO\":{\"title\":\"LanguageCodeDTO\",\"description\":\"Programin destekledigi dillerin kodlarini icerir Languages codes are ISO_639-1 codes, see http: Codes for the Representation of Names of Languages Codes arranged alphabetically by alpha-3/ISO 639-2 Code Note: ISO 639-2 is the alpha-3 code in Codes for the representation of names of languages-- Part 2. There are 21 languages that have alternative codes for bibliographic or terminology purposes. In those cases, each is listed separately and they are designated as \\\"B\\\" (bibliographic) or \\\"T\\\" (terminology). In all other cases there is only one ISO 639-2 code. Multiple codes assigned to the same language are to be considered synonyms. ISO 639-1 is the alpha-2 code. @author Aurora Developer team.\",\"required\":[\"englishName\",\"iso6392Code\",\"name\"],\"type\":\"object\",\"properties\":{\"attributes\":{\"description\":\"organizasyon tipinin ek alanları.\",\"type\":\"object\",\"additionalProperties\":{\"type\":\"string\"}},\"code\":{\"description\":\"gobal dil kodu. tr, en, fr vb.. ISO 639-1 Code \\\"https:\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"englishName\":{\"description\":\"Dilin ingilizce ismi. kullanim kolayligi icin konulmustur.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"icon\":{\"description\":\"Dil icin icon bilgisi\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"iso6392Code\":{\"description\":\"ISO 639-2 dil kodlari. tur, eng vb.. ISO 639-2 Code \\\"https:\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"dilin original ismi. ENGLISH, TURKCE VS...\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}},\"CityDTO\":{\"title\":\"CityDTO\",\"description\":\"Sehir tanimlarinin tutuldugu obje view - goruntu objesidir. @see GeographicBoundary @see GeographicBoundaryType @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"country\":{\"$ref\":\"#/definitions/CountryDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"stateAddress\":{\"$ref\":\"#/definitions/StateAddressDTO\"},\"translation\":{\"$ref\":\"#/definitions/CityLangDTO\"}}},\"CityLangDTO\":{\"title\":\"CityLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"StateAddressDTO\":{\"title\":\"StateAddressDTO\",\"description\":\"State - Eyalet bilgilerinin tanimlarinin yapildigi objedir. view - goruntu objesidir. @see GeographicBoundary @see GeographicBoundaryType @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"country\":{\"$ref\":\"#/definitions/CountryDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/StateAddressLangDTO\"}}},\"StateAddressLangDTO\":{\"title\":\"StateAddressLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"CountryDTO\":{\"title\":\"CountryDTO\",\"description\":\"Ulke tanimlari @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/CountryLangDTO\"}}},\"CountryLangDTO\":{\"title\":\"CountryLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/DistrictDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/DistrictDTO\"}],\"definitions\":{\"DistrictDTO\":{\"title\":\"DistrictDTO\",\"description\":\"Ilce tanimlarinin tutuldugu obje @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"city\":{\"$ref\":\"#/definitions/CityDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/DistrictLangDTO\"}}},\"DistrictLangDTO\":{\"title\":\"DistrictLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"LanguageCodeDTO\":{\"title\":\"LanguageCodeDTO\",\"description\":\"Programin destekledigi dillerin kodlarini icerir Languages codes are ISO_639-1 codes, see http: Codes for the Representation of Names of Languages Codes arranged alphabetically by alpha-3/ISO 639-2 Code Note: ISO 639-2 is the alpha-3 code in Codes for the representation of names of languages-- Part 2. There are 21 languages that have alternative codes for bibliographic or terminology purposes. In those cases, each is listed separately and they are designated as \\\"B\\\" (bibliographic) or \\\"T\\\" (terminology). In all other cases there is only one ISO 639-2 code. Multiple codes assigned to the same language are to be considered synonyms. ISO 639-1 is the alpha-2 code. @author Aurora Developer team.\",\"required\":[\"englishName\",\"iso6392Code\",\"name\"],\"type\":\"object\",\"properties\":{\"attributes\":{\"description\":\"organizasyon tipinin ek alanları.\",\"type\":\"object\",\"additionalProperties\":{\"type\":\"string\"}},\"code\":{\"description\":\"gobal dil kodu. tr, en, fr vb.. ISO 639-1 Code \\\"https:\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"englishName\":{\"description\":\"Dilin ingilizce ismi. kullanim kolayligi icin konulmustur.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"icon\":{\"description\":\"Dil icin icon bilgisi\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"iso6392Code\":{\"description\":\"ISO 639-2 dil kodlari. tur, eng vb.. ISO 639-2 Code \\\"https:\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"dilin original ismi. ENGLISH, TURKCE VS...\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}},\"CityDTO\":{\"title\":\"CityDTO\",\"description\":\"Sehir tanimlarinin tutuldugu obje view - goruntu objesidir. @see GeographicBoundary @see GeographicBoundaryType @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"country\":{\"$ref\":\"#/definitions/CountryDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"stateAddress\":{\"$ref\":\"#/definitions/StateAddressDTO\"},\"translation\":{\"$ref\":\"#/definitions/CityLangDTO\"}}},\"CityLangDTO\":{\"title\":\"CityLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"StateAddressDTO\":{\"title\":\"StateAddressDTO\",\"description\":\"State - Eyalet bilgilerinin tanimlarinin yapildigi objedir. view - goruntu objesidir. @see GeographicBoundary @see GeographicBoundaryType @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"country\":{\"$ref\":\"#/definitions/CountryDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/StateAddressLangDTO\"}}},\"StateAddressLangDTO\":{\"title\":\"StateAddressLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"CountryDTO\":{\"title\":\"CountryDTO\",\"description\":\"Ulke tanimlari @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/CountryLangDTO\"}}},\"CountryLangDTO\":{\"title\":\"CountryLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/DistrictDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"city\": {\n \"country\": {\n \"createdBy\": \"\",\n \"createdDate\": \"2003-07-21T01:43:42.613Z\",\n \"id\": 97902460,\n \"lastModifiedBy\": \"laborum off\",\n \"lastModifiedDate\": \"1946-07-12T12:41:07.021Z\",\n \"translation\": {\n \"name\": \"fugiat\",\n \"createdBy\": \"labore\",\n \"createdDate\": \"1994-01-18T21:36:55.890Z\",\n \"defaultLang\": true,\n \"description\": \"velit id\",\n \"id\": 53127077,\n \"lang\": {\n \"englishName\": \"in id ad\",\n \"iso6392Code\": \"laboris dolor \",\n \"name\": \"dolore aliqua\",\n \"attributes\": {},\n \"code\": \"incididunt minim aute ame\",\n \"createdBy\": \"enim nulla\",\n \"createdDate\": \"1998-04-07T00:05:59.748Z\",\n \"description\": \"anim exercitation\",\n \"icon\": \"laborum ex officia in\",\n \"id\": -77360717,\n \"lastModifiedBy\": \"sint laboris sunt irure aliqua\",\n \"lastModifiedDate\": \"1969-06-24T16:26:19.734Z\",\n \"orderPriority\": -3705636,\n \"status\": true\n },\n \"lastModifiedBy\": \"labore id officia ad\",\n \"lastModifiedDate\": \"1996-03-10T03:23:35.285Z\",\n \"ownerId\": -80880966\n }\n },\n \"createdBy\": \"proident ullamco in in voluptate\",\n \"createdDate\": \"1986-05-17T15:42:56.882Z\",\n \"id\": -66766418,\n \"lastModifiedBy\": \"magna\",\n \"lastModifiedDate\": \"1940-11-07T20:56:22.080Z\",\n \"stateAddress\": {\n \"country\": {\n \"createdBy\": \"dolore ex proident voluptate cillum\",\n \"createdDate\": \"2017-11-30T04:39:39.270Z\",\n \"id\": -74849890,\n \"lastModifiedBy\": \"cupidatat ipsum Ut\",\n \"lastModifiedDate\": \"2002-10-15T07:12:32.091Z\",\n \"translation\": {\n \"name\": \"consect\",\n \"createdBy\": \"magna ut proi\",\n \"createdDate\": \"1992-06-09T11:48:08.688Z\",\n \"defaultLang\": false,\n \"description\": \"qui dolor in aute adipisicing\",\n \"id\": -21599309,\n \"lang\": {\n \"englishName\": \"adipisici\",\n \"iso6392Code\": \"aliquip irure eiusmod pariatur\",\n \"name\": \"officia consequat dolore\",\n \"attributes\": {},\n \"code\": \"culpa\",\n \"createdBy\": \"a\",\n \"createdDate\": \"1984-06-20T15:56:54.966Z\",\n \"description\": \"Ut\",\n \"icon\": \"nisi aliquip proident elit\",\n \"id\": -70922533,\n \"lastModifiedBy\": \"eu tempor\",\n \"lastModifiedDate\": \"1966-09-05T13:09:04.920Z\",\n \"orderPriority\": -40871587,\n \"status\": false\n },\n \"lastModifiedBy\": \"est consectetur dolore\",\n \"lastModifiedDate\": \"1980-05-13T09:44:47.684Z\",\n \"ownerId\": -80697568\n }\n },\n \"createdBy\": \"eiusmod do ad velit commodo\",\n \"createdDate\": \"1954-11-27T00:17:15.225Z\",\n \"id\": 50222225,\n \"lastModifiedBy\": \"est cupidatat voluptate\",\n \"lastModifiedDate\": \"1963-08-08T01:11:35.821Z\",\n \"translation\": {\n \"name\": \"adipisicing\",\n \"createdBy\": \"dolore mollit ipsum in sed\",\n \"createdDate\": \"1949-04-15T08:06:32.022Z\",\n \"defaultLang\": true,\n \"description\": \"cupidatat Ut irure ea\",\n \"id\": -29447558,\n \"lang\": {\n \"englishName\": \"dolor et\",\n \"iso6392Code\": \"mollit\",\n \"name\": \"ullamco non\",\n \"attributes\": {},\n \"code\": \"labore\",\n \"createdBy\": \"non enim\",\n \"createdDate\": \"1940-08-20T12:32:00.949Z\",\n \"description\": \"pariatur Duis\",\n \"icon\": \"nulla ad do id sint\",\n \"id\": -38417689,\n \"lastModifiedBy\": \"cillu\",\n \"lastModifiedDate\": \"2018-11-12T11:15:32.881Z\",\n \"orderPriority\": -19280506,\n \"status\": false\n },\n \"lastModifiedBy\": \"exercitation nisi tempor\",\n \"lastModifiedDate\": \"1989-07-31T19:23:07.869Z\",\n \"ownerId\": -80384437\n }\n },\n \"translation\": {\n \"name\": \"enim ipsum\",\n \"createdBy\": \"ex Excepteur dolore in occaecat\",\n \"createdDate\": \"1999-10-15T04:41:19.656Z\",\n \"defaultLang\": false,\n \"description\": \"consequat\",\n \"id\": -92651158,\n \"lang\": {\n \"englishName\": \"eu dolore dolor mollit\",\n \"iso6392Code\": \"in sit offici\",\n \"name\": \"dolor\",\n \"attributes\": {},\n \"code\": \"nisi\",\n \"createdBy\": \"id enim minim\",\n \"createdDate\": \"2016-01-13T20:22:39.099Z\",\n \"description\": \"Excepteur\",\n \"icon\": \"occaecat laborum aliquip mollit culpa\",\n \"id\": -73266532,\n \"lastModifiedBy\": \"dolore in elit ut ullamco\",\n \"lastModifiedDate\": \"1946-12-10T13:39:54.013Z\",\n \"orderPriority\": -72275645,\n \"status\": true\n },\n \"lastModifiedBy\": \"dolor eiusmod dolore magna labore\",\n \"lastModifiedDate\": \"2008-12-20T14:56:48.389Z\",\n \"ownerId\": 78379543\n }\n },\n \"createdBy\": \"irure anim\",\n \"createdDate\": \"2015-01-04T08:05:41.847Z\",\n \"id\": -16859601,\n \"lastModifiedBy\": \"Ut laboris ut velit\",\n \"lastModifiedDate\": \"1947-04-26T20:20:18.425Z\",\n \"translation\": {\n \"name\": \"mollit sint dolor amet\",\n \"createdBy\": \"et nostrud\",\n \"createdDate\": \"2017-04-04T22:43:30.742Z\",\n \"defaultLang\": false,\n \"description\": \"eiusmod\",\n \"id\": -26018141,\n \"lang\": {\n \"englishName\": \"dolor fugiat de\",\n \"iso6392Code\": \"consectetur\",\n \"name\": \"ut sunt aliquip do Excepteur\",\n \"attributes\": {},\n \"code\": \"officia enim ullamco irure et\",\n \"createdBy\": \"quis\",\n \"createdDate\": \"1981-04-01T15:50:38.935Z\",\n \"description\": \"ut Duis\",\n \"icon\": \"dolor cupidatat ad\",\n \"id\": -93490066,\n \"lastModifiedBy\": \"laboris cillum\",\n \"lastModifiedDate\": \"2016-06-20T09:07:47.118Z\",\n \"orderPriority\": -82280835,\n \"status\": false\n },\n \"lastModifiedBy\": \"in ma\",\n \"lastModifiedDate\": \"1963-03-15T16:57:39.292Z\",\n \"ownerId\": 610510\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/DistrictDTO\"}],\"definitions\":{\"DistrictDTO\":{\"title\":\"DistrictDTO\",\"description\":\"Ilce tanimlarinin tutuldugu obje @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"city\":{\"$ref\":\"#/definitions/CityDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/DistrictLangDTO\"}}},\"DistrictLangDTO\":{\"title\":\"DistrictLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"LanguageCodeDTO\":{\"title\":\"LanguageCodeDTO\",\"description\":\"Programin destekledigi dillerin kodlarini icerir Languages codes are ISO_639-1 codes, see http: Codes for the Representation of Names of Languages Codes arranged alphabetically by alpha-3/ISO 639-2 Code Note: ISO 639-2 is the alpha-3 code in Codes for the representation of names of languages-- Part 2. There are 21 languages that have alternative codes for bibliographic or terminology purposes. In those cases, each is listed separately and they are designated as \\\"B\\\" (bibliographic) or \\\"T\\\" (terminology). In all other cases there is only one ISO 639-2 code. Multiple codes assigned to the same language are to be considered synonyms. ISO 639-1 is the alpha-2 code. @author Aurora Developer team.\",\"required\":[\"englishName\",\"iso6392Code\",\"name\"],\"type\":\"object\",\"properties\":{\"attributes\":{\"description\":\"organizasyon tipinin ek alanları.\",\"type\":\"object\",\"additionalProperties\":{\"type\":\"string\"}},\"code\":{\"description\":\"gobal dil kodu. tr, en, fr vb.. ISO 639-1 Code \\\"https:\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"englishName\":{\"description\":\"Dilin ingilizce ismi. kullanim kolayligi icin konulmustur.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"icon\":{\"description\":\"Dil icin icon bilgisi\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"iso6392Code\":{\"description\":\"ISO 639-2 dil kodlari. tur, eng vb.. ISO 639-2 Code \\\"https:\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"dilin original ismi. ENGLISH, TURKCE VS...\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}},\"CityDTO\":{\"title\":\"CityDTO\",\"description\":\"Sehir tanimlarinin tutuldugu obje view - goruntu objesidir. @see GeographicBoundary @see GeographicBoundaryType @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"country\":{\"$ref\":\"#/definitions/CountryDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"stateAddress\":{\"$ref\":\"#/definitions/StateAddressDTO\"},\"translation\":{\"$ref\":\"#/definitions/CityLangDTO\"}}},\"CityLangDTO\":{\"title\":\"CityLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"StateAddressDTO\":{\"title\":\"StateAddressDTO\",\"description\":\"State - Eyalet bilgilerinin tanimlarinin yapildigi objedir. view - goruntu objesidir. @see GeographicBoundary @see GeographicBoundaryType @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"country\":{\"$ref\":\"#/definitions/CountryDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/StateAddressLangDTO\"}}},\"StateAddressLangDTO\":{\"title\":\"StateAddressLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"CountryDTO\":{\"title\":\"CountryDTO\",\"description\":\"Ulke tanimlari @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/CountryLangDTO\"}}},\"CountryLangDTO\":{\"title\":\"CountryLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/DistrictDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"city\": {\n \"country\": {\n \"createdBy\": \"des\",\n \"createdDate\": \"2004-08-22T23:06:55.061Z\",\n \"id\": -33056271,\n \"lastModifiedBy\": \"adipisicing\",\n \"lastModifiedDate\": \"1996-02-14T05:01:48.954Z\",\n \"translation\": {\n \"name\": \"pariatur\",\n \"createdBy\": \"Ut in consectetur\",\n \"createdDate\": \"2004-12-02T07:15:49.504Z\",\n \"defaultLang\": false,\n \"description\": \"eu Lorem nostrud\",\n \"id\": 6208066,\n \"lang\": {\n \"englishName\": \"nul\",\n \"iso6392Code\": \"est do in\",\n \"name\": \"ullamco reprehenderit\",\n \"attributes\": {},\n \"code\": \"Excepte\",\n \"createdBy\": \"sunt dolor\",\n \"createdDate\": \"1977-04-27T17:44:33.878Z\",\n \"description\": \"qui\",\n \"icon\": \"dolor laborum nostrud proident\",\n \"id\": 24314468,\n \"lastModifiedBy\": \"magna veniam occaecat tempor sit\",\n \"lastModifiedDate\": \"1949-08-03T15:19:35.383Z\",\n \"orderPriority\": -51523387,\n \"status\": true\n },\n \"lastModifiedBy\": \"non ipsum pariatur\",\n \"lastModifiedDate\": \"1947-02-18T06:55:22.594Z\",\n \"ownerId\": 86387905\n }\n },\n \"createdBy\": \"pariatur ullamco\",\n \"createdDate\": \"1983-09-14T22:18:14.385Z\",\n \"id\": -95772455,\n \"lastModifiedBy\": \"temp\",\n \"lastModifiedDate\": \"1986-09-28T06:48:13.304Z\",\n \"stateAddress\": {\n \"country\": {\n \"createdBy\": \"adipisicing ullamco ut ea\",\n \"createdDate\": \"2014-10-15T04:04:29.322Z\",\n \"id\": -81230481,\n \"lastModifiedBy\": \"non\",\n \"lastModifiedDate\": \"1982-12-05T07:29:41.213Z\",\n \"translation\": {\n \"name\": \"exercitation i\",\n \"createdBy\": \"nisi\",\n \"createdDate\": \"2005-07-22T20:01:33.080Z\",\n \"defaultLang\": true,\n \"description\": \"et pariatur\",\n \"id\": -69277789,\n \"lang\": {\n \"englishName\": \"eiusmod \",\n \"iso6392Code\": \"ea \",\n \"name\": \"nostrud ipsum Duis\",\n \"attributes\": {},\n \"code\": \"labor\",\n \"createdBy\": \"in est\",\n \"createdDate\": \"1942-02-01T23:59:59.427Z\",\n \"description\": \"ea magna culpa est dolor\",\n \"icon\": \"proident enim dolor culpa eiusmod\",\n \"id\": -60348019,\n \"lastModifiedBy\": \"fugiat voluptate dolore ex pariatur\",\n \"lastModifiedDate\": \"1949-11-24T12:17:27.987Z\",\n \"orderPriority\": -20999854,\n \"status\": false\n },\n \"lastModifiedBy\": \"anim\",\n \"lastModifiedDate\": \"2005-05-21T22:35:15.444Z\",\n \"ownerId\": 66720676\n }\n },\n \"createdBy\": \"voluptate\",\n \"createdDate\": \"1972-01-14T19:43:20.555Z\",\n \"id\": -40570163,\n \"lastModifiedBy\": \"in commodo in nisi eiusmod\",\n \"lastModifiedDate\": \"2002-01-26T23:41:38.731Z\",\n \"translation\": {\n \"name\": \"aliquip in eiusmod\",\n \"createdBy\": \"voluptate\",\n \"createdDate\": \"2017-07-23T01:25:08.447Z\",\n \"defaultLang\": false,\n \"description\": \"tempor aute incididunt\",\n \"id\": -53336629,\n \"lang\": {\n \"englishName\": \"volupt\",\n \"iso6392Code\": \"Duis\",\n \"name\": \"tempor labore\",\n \"attributes\": {},\n \"code\": \"Excepteur anim Lorem \",\n \"createdBy\": \"fugiat dolor\",\n \"createdDate\": \"1954-04-13T21:35:28.021Z\",\n \"description\": \"id ipsum sit magna occaecat\",\n \"icon\": \"ut ad\",\n \"id\": 7110664,\n \"lastModifiedBy\": \"id ad\",\n \"lastModifiedDate\": \"1997-11-07T04:28:42.191Z\",\n \"orderPriority\": 835947,\n \"status\": false\n },\n \"lastModifiedBy\": \"nisi exercitation aute pariatur magna\",\n \"lastModifiedDate\": \"1950-08-03T15:14:20.732Z\",\n \"ownerId\": 51372318\n }\n },\n \"translation\": {\n \"name\": \"non n\",\n \"createdBy\": \"laborum cillum sunt\",\n \"createdDate\": \"1963-07-09T16:24:02.205Z\",\n \"defaultLang\": true,\n \"description\": \"veniam\",\n \"id\": -41537147,\n \"lang\": {\n \"englishName\": \"c\",\n \"iso6392Code\": \"ut aute velit\",\n \"name\": \"sit sed exercitation\",\n \"attributes\": {},\n \"code\": \"eiusm\",\n \"createdBy\": \"dolor\",\n \"createdDate\": \"1942-06-07T11:58:11.938Z\",\n \"description\": \"cillum irure velit commodo ex\",\n \"icon\": \"eu non\",\n \"id\": -48971202,\n \"lastModifiedBy\": \"exercitation amet ut\",\n \"lastModifiedDate\": \"1958-01-07T13:18:50.543Z\",\n \"orderPriority\": -93003658,\n \"status\": false\n },\n \"lastModifiedBy\": \"consectetur in fugiat\",\n \"lastModifiedDate\": \"1947-03-21T01:37:37.871Z\",\n \"ownerId\": 55216786\n }\n },\n \"createdBy\": \"deserunt\",\n \"createdDate\": \"1974-05-05T10:38:13.377Z\",\n \"id\": 7114048,\n \"lastModifiedBy\": \"deserunt aute cillum\",\n \"lastModifiedDate\": \"1944-06-09T14:08:31.892Z\",\n \"translation\": {\n \"name\": \"cillum est labore\",\n \"createdBy\": \"officia anim\",\n \"createdDate\": \"1994-01-26T20:34:17.685Z\",\n \"defaultLang\": true,\n \"description\": \"incididunt amet sit\",\n \"id\": -45146652,\n \"lang\": {\n \"englishName\": \"occaecat\",\n \"iso6392Code\": \"elit nulla\",\n \"name\": \"e\",\n \"attributes\": {},\n \"code\": \"non\",\n \"createdBy\": \"in enim deserunt veniam Duis\",\n \"createdDate\": \"1994-05-14T05:15:29.070Z\",\n \"description\": \"Lorem consequat sint reprehenderit\",\n \"icon\": \"in est consectetur do incididunt\",\n \"id\": 55890717,\n \"lastModifiedBy\": \"in magna eiusmod\",\n \"lastModifiedDate\": \"1986-11-11T06:01:10.871Z\",\n \"orderPriority\": -53174109,\n \"status\": false\n },\n \"lastModifiedBy\": \"veniam aute\",\n \"lastModifiedDate\": \"1952-08-27T12:41:08.432Z\",\n \"ownerId\": 24903059\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/DistrictDTO\"}],\"definitions\":{\"DistrictDTO\":{\"title\":\"DistrictDTO\",\"description\":\"Ilce tanimlarinin tutuldugu obje @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"city\":{\"$ref\":\"#/definitions/CityDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/DistrictLangDTO\"}}},\"DistrictLangDTO\":{\"title\":\"DistrictLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"LanguageCodeDTO\":{\"title\":\"LanguageCodeDTO\",\"description\":\"Programin destekledigi dillerin kodlarini icerir Languages codes are ISO_639-1 codes, see http: Codes for the Representation of Names of Languages Codes arranged alphabetically by alpha-3/ISO 639-2 Code Note: ISO 639-2 is the alpha-3 code in Codes for the representation of names of languages-- Part 2. There are 21 languages that have alternative codes for bibliographic or terminology purposes. In those cases, each is listed separately and they are designated as \\\"B\\\" (bibliographic) or \\\"T\\\" (terminology). In all other cases there is only one ISO 639-2 code. Multiple codes assigned to the same language are to be considered synonyms. ISO 639-1 is the alpha-2 code. @author Aurora Developer team.\",\"required\":[\"englishName\",\"iso6392Code\",\"name\"],\"type\":\"object\",\"properties\":{\"attributes\":{\"description\":\"organizasyon tipinin ek alanları.\",\"type\":\"object\",\"additionalProperties\":{\"type\":\"string\"}},\"code\":{\"description\":\"gobal dil kodu. tr, en, fr vb.. ISO 639-1 Code \\\"https:\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"englishName\":{\"description\":\"Dilin ingilizce ismi. kullanim kolayligi icin konulmustur.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"icon\":{\"description\":\"Dil icin icon bilgisi\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"iso6392Code\":{\"description\":\"ISO 639-2 dil kodlari. tur, eng vb.. ISO 639-2 Code \\\"https:\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"dilin original ismi. ENGLISH, TURKCE VS...\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}},\"CityDTO\":{\"title\":\"CityDTO\",\"description\":\"Sehir tanimlarinin tutuldugu obje view - goruntu objesidir. @see GeographicBoundary @see GeographicBoundaryType @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"country\":{\"$ref\":\"#/definitions/CountryDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"stateAddress\":{\"$ref\":\"#/definitions/StateAddressDTO\"},\"translation\":{\"$ref\":\"#/definitions/CityLangDTO\"}}},\"CityLangDTO\":{\"title\":\"CityLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"StateAddressDTO\":{\"title\":\"StateAddressDTO\",\"description\":\"State - Eyalet bilgilerinin tanimlarinin yapildigi objedir. view - goruntu objesidir. @see GeographicBoundary @see GeographicBoundaryType @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"country\":{\"$ref\":\"#/definitions/CountryDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/StateAddressLangDTO\"}}},\"StateAddressLangDTO\":{\"title\":\"StateAddressLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"CountryDTO\":{\"title\":\"CountryDTO\",\"description\":\"Ulke tanimlari @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/CountryLangDTO\"}}},\"CountryLangDTO\":{\"title\":\"CountryLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/DistrictDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"city\": {\n \"country\": {\n \"createdBy\": \"ut fugiat laborum dolor\",\n \"createdDate\": \"1968-03-07T09:52:54.698Z\",\n \"id\": -42760415,\n \"lastModifiedBy\": \"ullamco Duis dolore\",\n \"lastModifiedDate\": \"1971-05-29T13:00:49.430Z\",\n \"translation\": {\n \"name\": \"tempor\",\n \"createdBy\": \"in in est pariatur\",\n \"createdDate\": \"1995-03-17T16:42:56.210Z\",\n \"defaultLang\": true,\n \"description\": \"Duis\",\n \"id\": 28051702,\n \"lang\": {\n \"englishName\": \"consectetur\",\n \"iso6392Code\": \"et occaecat consectetur minim e\",\n \"name\": \"reprehenderit in volup\",\n \"attributes\": {},\n \"code\": \"dol\",\n \"createdBy\": \"dolore deseru\",\n \"createdDate\": \"1996-04-06T07:56:01.728Z\",\n \"description\": \"est ut dolore do sunt\",\n \"icon\": \"eu occaecat sunt amet mollit\",\n \"id\": 82964962,\n \"lastModifiedBy\": \"in\",\n \"lastModifiedDate\": \"2015-09-16T02:10:53.999Z\",\n \"orderPriority\": -53980995,\n \"status\": false\n },\n \"lastModifiedBy\": \"reprehenderit culpa\",\n \"lastModifiedDate\": \"1941-12-04T09:25:17.175Z\",\n \"ownerId\": 48490980\n }\n },\n \"createdBy\": \"laboris\",\n \"createdDate\": \"2011-11-09T02:01:50.288Z\",\n \"id\": -39569185,\n \"lastModifiedBy\": \"amet aliqua\",\n \"lastModifiedDate\": \"1965-04-19T02:24:22.764Z\",\n \"stateAddress\": {\n \"country\": {\n \"createdBy\": \"aute do cillum\",\n \"createdDate\": \"1964-02-13T19:54:29.863Z\",\n \"id\": 92969543,\n \"lastModifiedBy\": \"veniam est sed\",\n \"lastModifiedDate\": \"1997-11-25T20:59:01.764Z\",\n \"translation\": {\n \"name\": \"aliqua dolor\",\n \"createdBy\": \"Lorem officia est ea proident\",\n \"createdDate\": \"1961-11-21T02:46:51.016Z\",\n \"defaultLang\": true,\n \"description\": \"minim laborum\",\n \"id\": 46329296,\n \"lang\": {\n \"englishName\": \"ut\",\n \"iso6392Code\": \"Duis commodo fugiat\",\n \"name\": \"cillum et do cupidatat\",\n \"attributes\": {},\n \"code\": \"eiusmod velit\",\n \"createdBy\": \"ad\",\n \"createdDate\": \"1973-08-08T03:17:44.575Z\",\n \"description\": \"dolor sit qui\",\n \"icon\": \"incididunt quis\",\n \"id\": -69614782,\n \"lastModifiedBy\": \"minim\",\n \"lastModifiedDate\": \"2017-01-05T10:28:18.772Z\",\n \"orderPriority\": -50050759,\n \"status\": false\n },\n \"lastModifiedBy\": \"ea dolor in ad reprehenderit\",\n \"lastModifiedDate\": \"1988-10-26T21:38:35.908Z\",\n \"ownerId\": 99068960\n }\n },\n \"createdBy\": \"tempor ullamco eu\",\n \"createdDate\": \"1989-07-11T17:31:07.976Z\",\n \"id\": 36194673,\n \"lastModifiedBy\": \"laborum enim sunt nisi qui\",\n \"lastModifiedDate\": \"1976-06-22T18:53:02.289Z\",\n \"translation\": {\n \"name\": \"i\",\n \"createdBy\": \"nost\",\n \"createdDate\": \"1986-11-30T20:28:26.350Z\",\n \"defaultLang\": true,\n \"description\": \"eiusmod sunt ad sint\",\n \"id\": -62234310,\n \"lang\": {\n \"englishName\": \"do Excepteur velit\",\n \"iso6392Code\": \"exercitation pariatur amet cupidatat\",\n \"name\": \"amet nulla\",\n \"attributes\": {},\n \"code\": \"cupidatat\",\n \"createdBy\": \"et voluptate consequat veniam Except\",\n \"createdDate\": \"1964-05-06T16:31:54.315Z\",\n \"description\": \"ad consectetur et\",\n \"icon\": \"id\",\n \"id\": 6383586,\n \"lastModifiedBy\": \"velit qui nulla consequat\",\n \"lastModifiedDate\": \"2009-04-04T02:30:24.343Z\",\n \"orderPriority\": -40593578,\n \"status\": true\n },\n \"lastModifiedBy\": \"deserunt consequat labore ea officia\",\n \"lastModifiedDate\": \"1954-12-03T03:04:29.500Z\",\n \"ownerId\": 73580129\n }\n },\n \"translation\": {\n \"name\": \"exercitati\",\n \"createdBy\": \"do nisi\",\n \"createdDate\": \"2011-07-20T10:20:03.128Z\",\n \"defaultLang\": true,\n \"description\": \"veniam cillum\",\n \"id\": -58741764,\n \"lang\": {\n \"englishName\": \"tempor Lorem et magna\",\n \"iso6392Code\": \"pariatur\",\n \"name\": \"eiu\",\n \"attributes\": {},\n \"code\": \"magna\",\n \"createdBy\": \"Ut eiusmod ex in\",\n \"createdDate\": \"2016-05-21T23:57:13.664Z\",\n \"description\": \"irure aliquip officia\",\n \"icon\": \"in Ut et exercitation\",\n \"id\": -76068320,\n \"lastModifiedBy\": \"pariatur consectetur ex\",\n \"lastModifiedDate\": \"1952-10-15T23:26:40.867Z\",\n \"orderPriority\": -7085523,\n \"status\": false\n },\n \"lastModifiedBy\": \"irure in\",\n \"lastModifiedDate\": \"1942-09-06T12:20:52.012Z\",\n \"ownerId\": 42845463\n }\n },\n \"createdBy\": \"Excepteur enim\",\n \"createdDate\": \"1978-08-24T10:43:59.357Z\",\n \"id\": 41139102,\n \"lastModifiedBy\": \"ad ut dolor irure in\",\n \"lastModifiedDate\": \"1955-10-07T01:05:28.946Z\",\n \"translation\": {\n \"name\": \"consequat mollit ullamc\",\n \"createdBy\": \"cillum laborum dolor ex\",\n \"createdDate\": \"2011-08-30T08:39:23.170Z\",\n \"defaultLang\": true,\n \"description\": \"pariatur Lorem\",\n \"id\": -71699976,\n \"lang\": {\n \"englishName\": \"velit eu ut \",\n \"iso6392Code\": \"in \",\n \"name\": \"tempor\",\n \"attributes\": {},\n \"code\": \"dolor ex eiu\",\n \"createdBy\": \"amet labore aute\",\n \"createdDate\": \"1991-01-10T09:48:50.346Z\",\n \"description\": \"Excepteur amet\",\n \"icon\": \"sed\",\n \"id\": -82887864,\n \"lastModifiedBy\": \"enim ad culpa nisi\",\n \"lastModifiedDate\": \"1974-07-30T22:41:34.263Z\",\n \"orderPriority\": -27554475,\n \"status\": false\n },\n \"lastModifiedBy\": \"elit irure magna quis\",\n \"lastModifiedDate\": \"2002-01-08T15:43:57.662Z\",\n \"ownerId\": 35173487\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/DistrictDTO\"}],\"definitions\":{\"DistrictDTO\":{\"title\":\"DistrictDTO\",\"description\":\"Ilce tanimlarinin tutuldugu obje @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"city\":{\"$ref\":\"#/definitions/CityDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/DistrictLangDTO\"}}},\"DistrictLangDTO\":{\"title\":\"DistrictLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"LanguageCodeDTO\":{\"title\":\"LanguageCodeDTO\",\"description\":\"Programin destekledigi dillerin kodlarini icerir Languages codes are ISO_639-1 codes, see http: Codes for the Representation of Names of Languages Codes arranged alphabetically by alpha-3/ISO 639-2 Code Note: ISO 639-2 is the alpha-3 code in Codes for the representation of names of languages-- Part 2. There are 21 languages that have alternative codes for bibliographic or terminology purposes. In those cases, each is listed separately and they are designated as \\\"B\\\" (bibliographic) or \\\"T\\\" (terminology). In all other cases there is only one ISO 639-2 code. Multiple codes assigned to the same language are to be considered synonyms. ISO 639-1 is the alpha-2 code. @author Aurora Developer team.\",\"required\":[\"englishName\",\"iso6392Code\",\"name\"],\"type\":\"object\",\"properties\":{\"attributes\":{\"description\":\"organizasyon tipinin ek alanları.\",\"type\":\"object\",\"additionalProperties\":{\"type\":\"string\"}},\"code\":{\"description\":\"gobal dil kodu. tr, en, fr vb.. ISO 639-1 Code \\\"https:\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"englishName\":{\"description\":\"Dilin ingilizce ismi. kullanim kolayligi icin konulmustur.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"icon\":{\"description\":\"Dil icin icon bilgisi\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"iso6392Code\":{\"description\":\"ISO 639-2 dil kodlari. tur, eng vb.. ISO 639-2 Code \\\"https:\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"dilin original ismi. ENGLISH, TURKCE VS...\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}},\"CityDTO\":{\"title\":\"CityDTO\",\"description\":\"Sehir tanimlarinin tutuldugu obje view - goruntu objesidir. @see GeographicBoundary @see GeographicBoundaryType @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"country\":{\"$ref\":\"#/definitions/CountryDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"stateAddress\":{\"$ref\":\"#/definitions/StateAddressDTO\"},\"translation\":{\"$ref\":\"#/definitions/CityLangDTO\"}}},\"CityLangDTO\":{\"title\":\"CityLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"StateAddressDTO\":{\"title\":\"StateAddressDTO\",\"description\":\"State - Eyalet bilgilerinin tanimlarinin yapildigi objedir. view - goruntu objesidir. @see GeographicBoundary @see GeographicBoundaryType @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"country\":{\"$ref\":\"#/definitions/CountryDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/StateAddressLangDTO\"}}},\"StateAddressLangDTO\":{\"title\":\"StateAddressLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"CountryDTO\":{\"title\":\"CountryDTO\",\"description\":\"Ulke tanimlari @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/CountryLangDTO\"}}},\"CountryLangDTO\":{\"title\":\"CountryLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/DistrictDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"city\": {\n \"country\": {\n \"createdBy\": \"cillum\",\n \"createdDate\": \"2007-12-08T15:06:43.274Z\",\n \"id\": 54939403,\n \"lastModifiedBy\": \"officia\",\n \"lastModifiedDate\": \"1968-05-03T19:22:57.866Z\",\n \"translation\": {\n \"name\": \"Duis\",\n \"createdBy\": \"aliquip dolor commodo\",\n \"createdDate\": \"1945-07-22T12:57:09.181Z\",\n \"defaultLang\": true,\n \"description\": \"officia quis tempor\",\n \"id\": -91474256,\n \"lang\": {\n \"englishName\": \"consequat exercitation laboris e\",\n \"iso6392Code\": \"Lorem exercitation\",\n \"name\": \"anim\",\n \"attributes\": {},\n \"code\": \"sint\",\n \"createdBy\": \"ipsum\",\n \"createdDate\": \"1957-04-21T20:04:03.840Z\",\n \"description\": \"tempor elit\",\n \"icon\": \"elit enim ad\",\n \"id\": 44083600,\n \"lastModifiedBy\": \"\",\n \"lastModifiedDate\": \"1998-09-04T01:12:55.604Z\",\n \"orderPriority\": -53609367,\n \"status\": false\n },\n \"lastModifiedBy\": \"dolor elit\",\n \"lastModifiedDate\": \"1997-08-17T05:45:03.933Z\",\n \"ownerId\": 30653014\n }\n },\n \"createdBy\": \"do dolor exercitation labore\",\n \"createdDate\": \"1963-08-16T12:52:16.052Z\",\n \"id\": -10023196,\n \"lastModifiedBy\": \"dolor\",\n \"lastModifiedDate\": \"1940-09-28T07:26:14.536Z\",\n \"stateAddress\": {\n \"country\": {\n \"createdBy\": \"fugiat est nulla cillum et\",\n \"createdDate\": \"1987-08-14T08:21:14.179Z\",\n \"id\": -27938577,\n \"lastModifiedBy\": \"cillum\",\n \"lastModifiedDate\": \"1988-08-22T04:36:01.043Z\",\n \"translation\": {\n \"name\": \"laborum sed qui mollit\",\n \"createdBy\": \"amet esse reprehenderit consequat in\",\n \"createdDate\": \"2005-02-24T08:55:17.038Z\",\n \"defaultLang\": true,\n \"description\": \"velit ad\",\n \"id\": 13829300,\n \"lang\": {\n \"englishName\": \"tempor labore sit aute\",\n \"iso6392Code\": \"sit non irure ea\",\n \"name\": \"dolore amet est\",\n \"attributes\": {},\n \"code\": \"in in\",\n \"createdBy\": \"ut\",\n \"createdDate\": \"1964-02-18T21:47:06.727Z\",\n \"description\": \"consequat dolore\",\n \"icon\": \"elit ea mollit n\",\n \"id\": 36437603,\n \"lastModifiedBy\": \"ipsum sed\",\n \"lastModifiedDate\": \"1992-09-20T04:21:02.319Z\",\n \"orderPriority\": -95826367,\n \"status\": true\n },\n \"lastModifiedBy\": \"dolor\",\n \"lastModifiedDate\": \"1978-06-19T09:55:42.950Z\",\n \"ownerId\": 47145329\n }\n },\n \"createdBy\": \"magna proident\",\n \"createdDate\": \"2003-12-29T10:47:12.397Z\",\n \"id\": 94001370,\n \"lastModifiedBy\": \"cillum \",\n \"lastModifiedDate\": \"1963-02-23T17:40:25.797Z\",\n \"translation\": {\n \"name\": \"et consequat eu enim magna\",\n \"createdBy\": \"ullamco pariatur amet\",\n \"createdDate\": \"1979-08-16T19:12:43.788Z\",\n \"defaultLang\": false,\n \"description\": \"nostrud sunt\",\n \"id\": -24583369,\n \"lang\": {\n \"englishName\": \"sint magna et\",\n \"iso6392Code\": \"et est occa\",\n \"name\": \"quis aute esse\",\n \"attributes\": {},\n \"code\": \"deserunt tempor nostrud nulla\",\n \"createdBy\": \"id ullamco Lorem\",\n \"createdDate\": \"2002-11-16T13:48:35.456Z\",\n \"description\": \"ea deserunt occaecat laborum voluptate\",\n \"icon\": \"labor\",\n \"id\": -37808550,\n \"lastModifiedBy\": \"amet ut\",\n \"lastModifiedDate\": \"1949-04-16T08:36:42.545Z\",\n \"orderPriority\": -51158495,\n \"status\": false\n },\n \"lastModifiedBy\": \"inc\",\n \"lastModifiedDate\": \"1962-12-06T05:56:32.295Z\",\n \"ownerId\": -49145064\n }\n },\n \"translation\": {\n \"name\": \"consectetur sed veniam dolor exercitation\",\n \"createdBy\": \"aliqua esse\",\n \"createdDate\": \"1953-10-22T03:22:00.836Z\",\n \"defaultLang\": true,\n \"description\": \"elit eiusmod\",\n \"id\": -5665011,\n \"lang\": {\n \"englishName\": \"id\",\n \"iso6392Code\": \"eiusmod incididunt minim\",\n \"name\": \"laborum\",\n \"attributes\": {},\n \"code\": \"in\",\n \"createdBy\": \"Duis pariatur\",\n \"createdDate\": \"1969-11-15T07:26:53.181Z\",\n \"description\": \"culpa quis anim eu\",\n \"icon\": \"incididunt nostrud\",\n \"id\": 22577538,\n \"lastModifiedBy\": \"nulla\",\n \"lastModifiedDate\": \"1962-12-24T17:13:44.167Z\",\n \"orderPriority\": -33554350,\n \"status\": false\n },\n \"lastModifiedBy\": \"reprehenderit sunt laboris\",\n \"lastModifiedDate\": \"1957-11-18T06:35:01.181Z\",\n \"ownerId\": 36103121\n }\n },\n \"createdBy\": \"laborum reprehenderit\",\n \"createdDate\": \"1953-10-21T05:54:32.223Z\",\n \"id\": -82775441,\n \"lastModifiedBy\": \"laborum minim veniam qui incididunt\",\n \"lastModifiedDate\": \"1979-10-03T19:29:13.662Z\",\n \"translation\": {\n \"name\": \"adipisicing\",\n \"createdBy\": \"cupidatat labore\",\n \"createdDate\": \"2007-05-05T23:51:18.744Z\",\n \"defaultLang\": true,\n \"description\": \"ea exercitation ipsum mollit proident\",\n \"id\": -47509142,\n \"lang\": {\n \"englishName\": \"dolor quis aute fugiat\",\n \"iso6392Code\": \"cillum ut culpa non\",\n \"name\": \"labore aliqua consectetur\",\n \"attributes\": {},\n \"code\": \"ad Lorem\",\n \"createdBy\": \"ex mollit in aute aliquip\",\n \"createdDate\": \"2004-10-28T09:09:26.715Z\",\n \"description\": \"ipsum esse commodo cillum\",\n \"icon\": \"proident\",\n \"id\": 30286516,\n \"lastModifiedBy\": \"deserunt Dui\",\n \"lastModifiedDate\": \"1986-09-23T18:43:38.585Z\",\n \"orderPriority\": -45914461,\n \"status\": false\n },\n \"lastModifiedBy\": \"exercitation et sit\",\n \"lastModifiedDate\": \"1972-05-20T16:46:24.266Z\",\n \"ownerId\": 24015871\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/DistrictDTO\"}],\"definitions\":{\"DistrictDTO\":{\"title\":\"DistrictDTO\",\"description\":\"Ilce tanimlarinin tutuldugu obje @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"city\":{\"$ref\":\"#/definitions/CityDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/DistrictLangDTO\"}}},\"DistrictLangDTO\":{\"title\":\"DistrictLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"LanguageCodeDTO\":{\"title\":\"LanguageCodeDTO\",\"description\":\"Programin destekledigi dillerin kodlarini icerir Languages codes are ISO_639-1 codes, see http: Codes for the Representation of Names of Languages Codes arranged alphabetically by alpha-3/ISO 639-2 Code Note: ISO 639-2 is the alpha-3 code in Codes for the representation of names of languages-- Part 2. There are 21 languages that have alternative codes for bibliographic or terminology purposes. In those cases, each is listed separately and they are designated as \\\"B\\\" (bibliographic) or \\\"T\\\" (terminology). In all other cases there is only one ISO 639-2 code. Multiple codes assigned to the same language are to be considered synonyms. ISO 639-1 is the alpha-2 code. @author Aurora Developer team.\",\"required\":[\"englishName\",\"iso6392Code\",\"name\"],\"type\":\"object\",\"properties\":{\"attributes\":{\"description\":\"organizasyon tipinin ek alanları.\",\"type\":\"object\",\"additionalProperties\":{\"type\":\"string\"}},\"code\":{\"description\":\"gobal dil kodu. tr, en, fr vb.. ISO 639-1 Code \\\"https:\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"englishName\":{\"description\":\"Dilin ingilizce ismi. kullanim kolayligi icin konulmustur.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"icon\":{\"description\":\"Dil icin icon bilgisi\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"iso6392Code\":{\"description\":\"ISO 639-2 dil kodlari. tur, eng vb.. ISO 639-2 Code \\\"https:\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"dilin original ismi. ENGLISH, TURKCE VS...\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}},\"CityDTO\":{\"title\":\"CityDTO\",\"description\":\"Sehir tanimlarinin tutuldugu obje view - goruntu objesidir. @see GeographicBoundary @see GeographicBoundaryType @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"country\":{\"$ref\":\"#/definitions/CountryDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"stateAddress\":{\"$ref\":\"#/definitions/StateAddressDTO\"},\"translation\":{\"$ref\":\"#/definitions/CityLangDTO\"}}},\"CityLangDTO\":{\"title\":\"CityLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"StateAddressDTO\":{\"title\":\"StateAddressDTO\",\"description\":\"State - Eyalet bilgilerinin tanimlarinin yapildigi objedir. view - goruntu objesidir. @see GeographicBoundary @see GeographicBoundaryType @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"country\":{\"$ref\":\"#/definitions/CountryDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/StateAddressLangDTO\"}}},\"StateAddressLangDTO\":{\"title\":\"StateAddressLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"CountryDTO\":{\"title\":\"CountryDTO\",\"description\":\"Ulke tanimlari @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/CountryLangDTO\"}}},\"CountryLangDTO\":{\"title\":\"CountryLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/DistrictDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "createDistrict" + }, + "id": { + "element": "string", + "content": "createDistrictUsingPOST" + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"city\": {\n \"country\": {\n \"createdBy\": \"labore commodo aute\",\n \"createdDate\": \"1988-02-26T21:06:50.388Z\",\n \"id\": 36499707,\n \"lastModifiedBy\": \"elit non sed do laborum\",\n \"lastModifiedDate\": \"1966-12-20T18:36:41.797Z\",\n \"translation\": {\n \"name\": \"in l\",\n \"createdBy\": \"enim commodo in et aliqua\",\n \"createdDate\": \"1944-08-16T08:31:53.329Z\",\n \"defaultLang\": true,\n \"description\": \"commodo magna\",\n \"id\": -61359397,\n \"lang\": {\n \"englishName\": \"reprehenderit veniam\",\n \"iso6392Code\": \"non offic\",\n \"name\": \"in\",\n \"attributes\": {},\n \"code\": \"eiusmod laboris qui\",\n \"createdBy\": \"minim ut consectetur\",\n \"createdDate\": \"1948-04-28T07:23:48.788Z\",\n \"description\": \"dolore qui id\",\n \"icon\": \"id\",\n \"id\": 6173893,\n \"lastModifiedBy\": \"aliqua\",\n \"lastModifiedDate\": \"1959-12-16T17:18:33.065Z\",\n \"orderPriority\": -92563686,\n \"status\": true\n },\n \"lastModifiedBy\": \"fugiat pariatur consequat tem\",\n \"lastModifiedDate\": \"2007-02-18T09:52:35.470Z\",\n \"ownerId\": 27554914\n }\n },\n \"createdBy\": \"laborum quis sit\",\n \"createdDate\": \"1994-04-19T09:30:23.257Z\",\n \"id\": -19249478,\n \"lastModifiedBy\": \"anim sed\",\n \"lastModifiedDate\": \"1951-05-19T08:26:00.462Z\",\n \"stateAddress\": {\n \"country\": {\n \"createdBy\": \"consectet\",\n \"createdDate\": \"1956-09-02T15:18:51.466Z\",\n \"id\": -44115290,\n \"lastModifiedBy\": \"labore id sed cupidatat\",\n \"lastModifiedDate\": \"1988-06-02T23:20:13.386Z\",\n \"translation\": {\n \"name\": \"do consectetur deserunt quis\",\n \"createdBy\": \"exercitation\",\n \"createdDate\": \"1994-05-11T05:03:08.397Z\",\n \"defaultLang\": false,\n \"description\": \"aliqua\",\n \"id\": -484012,\n \"lang\": {\n \"englishName\": \"pariatur\",\n \"iso6392Code\": \"cillum veniam\",\n \"name\": \"fugiat laboris Ut\",\n \"attributes\": {},\n \"code\": \"culpa velit\",\n \"createdBy\": \"laboris cil\",\n \"createdDate\": \"1970-08-29T18:01:22.912Z\",\n \"description\": \"\",\n \"icon\": \"ea sint\",\n \"id\": -50388618,\n \"lastModifiedBy\": \"veniam aute minim\",\n \"lastModifiedDate\": \"1941-12-22T17:46:59.595Z\",\n \"orderPriority\": -7104118,\n \"status\": true\n },\n \"lastModifiedBy\": \"Excepteur est do ad\",\n \"lastModifiedDate\": \"1979-02-21T14:36:53.105Z\",\n \"ownerId\": -80099100\n }\n },\n \"createdBy\": \"ad ea sunt Lorem\",\n \"createdDate\": \"1992-08-19T20:51:00.063Z\",\n \"id\": 91296441,\n \"lastModifiedBy\": \"Excepteur\",\n \"lastModifiedDate\": \"1966-09-24T09:31:55.442Z\",\n \"translation\": {\n \"name\": \"officia magna te\",\n \"createdBy\": \"Lorem quis ut in\",\n \"createdDate\": \"1999-11-02T18:05:37.683Z\",\n \"defaultLang\": false,\n \"description\": \"ut minim esse\",\n \"id\": -2108961,\n \"lang\": {\n \"englishName\": \"a\",\n \"iso6392Code\": \"commodo\",\n \"name\": \"voluptate\",\n \"attributes\": {},\n \"code\": \"m\",\n \"createdBy\": \"proident dolor nisi\",\n \"createdDate\": \"1948-02-29T08:26:25.642Z\",\n \"description\": \"velit do nulla fugiat\",\n \"icon\": \"mollit fugiat\",\n \"id\": -44911344,\n \"lastModifiedBy\": \"dolor consequat ullamco\",\n \"lastModifiedDate\": \"1947-08-11T03:06:41.820Z\",\n \"orderPriority\": -193292,\n \"status\": false\n },\n \"lastModifiedBy\": \"eiusmod dolor ut velit in\",\n \"lastModifiedDate\": \"1940-09-01T00:46:39.386Z\",\n \"ownerId\": -62204782\n }\n },\n \"translation\": {\n \"name\": \"quis do incididunt irure nostr\",\n \"createdBy\": \"dolor\",\n \"createdDate\": \"1997-06-04T19:06:21.887Z\",\n \"defaultLang\": true,\n \"description\": \"ex amet in commodo in\",\n \"id\": 880213,\n \"lang\": {\n \"englishName\": \"dolor minim\",\n \"iso6392Code\": \"sint ea\",\n \"name\": \"la\",\n \"attributes\": {},\n \"code\": \"\",\n \"createdBy\": \"amet labore\",\n \"createdDate\": \"1948-12-14T11:37:07.198Z\",\n \"description\": \"est fugiat Excepteur\",\n \"icon\": \"sint commodo pariatur\",\n \"id\": 6718878,\n \"lastModifiedBy\": \"et\",\n \"lastModifiedDate\": \"1996-06-16T03:42:11.046Z\",\n \"orderPriority\": -4804361,\n \"status\": false\n },\n \"lastModifiedBy\": \"est sunt\",\n \"lastModifiedDate\": \"1992-06-04T22:29:55.401Z\",\n \"ownerId\": -56123388\n }\n },\n \"createdBy\": \"ex enim\",\n \"createdDate\": \"1983-05-04T18:27:05.011Z\",\n \"id\": -63330298,\n \"lastModifiedBy\": \"aute\",\n \"lastModifiedDate\": \"1960-05-31T15:00:51.772Z\",\n \"translation\": {\n \"name\": \"ulla\",\n \"createdBy\": \"est amet \",\n \"createdDate\": \"1992-04-28T11:35:53.461Z\",\n \"defaultLang\": true,\n \"description\": \"aute nostrud Lorem eiusmod id\",\n \"id\": -3986003,\n \"lang\": {\n \"englishName\": \"incididunt Excepteur magna consequat\",\n \"iso6392Code\": \"laboru\",\n \"name\": \"minim est irur\",\n \"attributes\": {},\n \"code\": \"dolore officia ipsum sunt non\",\n \"createdBy\": \"veniam\",\n \"createdDate\": \"2003-11-23T15:44:37.054Z\",\n \"description\": \"Duis nostrud quis pariatur officia\",\n \"icon\": \"\",\n \"id\": -16762368,\n \"lastModifiedBy\": \"nulla cupida\",\n \"lastModifiedDate\": \"2011-11-04T15:55:37.657Z\",\n \"orderPriority\": -51030063,\n \"status\": true\n },\n \"lastModifiedBy\": \"exercitation\",\n \"lastModifiedDate\": \"1952-01-23T20:30:57.525Z\",\n \"ownerId\": -42503347\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/DistrictDTO\"}],\"definitions\":{\"DistrictDTO\":{\"title\":\"DistrictDTO\",\"description\":\"Ilce tanimlarinin tutuldugu obje @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"city\":{\"$ref\":\"#/definitions/CityDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/DistrictLangDTO\"}}},\"DistrictLangDTO\":{\"title\":\"DistrictLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"LanguageCodeDTO\":{\"title\":\"LanguageCodeDTO\",\"description\":\"Programin destekledigi dillerin kodlarini icerir Languages codes are ISO_639-1 codes, see http: Codes for the Representation of Names of Languages Codes arranged alphabetically by alpha-3/ISO 639-2 Code Note: ISO 639-2 is the alpha-3 code in Codes for the representation of names of languages-- Part 2. There are 21 languages that have alternative codes for bibliographic or terminology purposes. In those cases, each is listed separately and they are designated as \\\"B\\\" (bibliographic) or \\\"T\\\" (terminology). In all other cases there is only one ISO 639-2 code. Multiple codes assigned to the same language are to be considered synonyms. ISO 639-1 is the alpha-2 code. @author Aurora Developer team.\",\"required\":[\"englishName\",\"iso6392Code\",\"name\"],\"type\":\"object\",\"properties\":{\"attributes\":{\"description\":\"organizasyon tipinin ek alanları.\",\"type\":\"object\",\"additionalProperties\":{\"type\":\"string\"}},\"code\":{\"description\":\"gobal dil kodu. tr, en, fr vb.. ISO 639-1 Code \\\"https:\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"englishName\":{\"description\":\"Dilin ingilizce ismi. kullanim kolayligi icin konulmustur.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"icon\":{\"description\":\"Dil icin icon bilgisi\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"iso6392Code\":{\"description\":\"ISO 639-2 dil kodlari. tur, eng vb.. ISO 639-2 Code \\\"https:\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"dilin original ismi. ENGLISH, TURKCE VS...\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}},\"CityDTO\":{\"title\":\"CityDTO\",\"description\":\"Sehir tanimlarinin tutuldugu obje view - goruntu objesidir. @see GeographicBoundary @see GeographicBoundaryType @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"country\":{\"$ref\":\"#/definitions/CountryDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"stateAddress\":{\"$ref\":\"#/definitions/StateAddressDTO\"},\"translation\":{\"$ref\":\"#/definitions/CityLangDTO\"}}},\"CityLangDTO\":{\"title\":\"CityLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"StateAddressDTO\":{\"title\":\"StateAddressDTO\",\"description\":\"State - Eyalet bilgilerinin tanimlarinin yapildigi objedir. view - goruntu objesidir. @see GeographicBoundary @see GeographicBoundaryType @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"country\":{\"$ref\":\"#/definitions/CountryDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/StateAddressLangDTO\"}}},\"StateAddressLangDTO\":{\"title\":\"StateAddressLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"CountryDTO\":{\"title\":\"CountryDTO\",\"description\":\"Ulke tanimlari @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/CountryLangDTO\"}}},\"CountryLangDTO\":{\"title\":\"CountryLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/DistrictDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/DistrictDTO\"}],\"definitions\":{\"DistrictDTO\":{\"title\":\"DistrictDTO\",\"description\":\"Ilce tanimlarinin tutuldugu obje @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"city\":{\"$ref\":\"#/definitions/CityDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/DistrictLangDTO\"}}},\"DistrictLangDTO\":{\"title\":\"DistrictLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"LanguageCodeDTO\":{\"title\":\"LanguageCodeDTO\",\"description\":\"Programin destekledigi dillerin kodlarini icerir Languages codes are ISO_639-1 codes, see http: Codes for the Representation of Names of Languages Codes arranged alphabetically by alpha-3/ISO 639-2 Code Note: ISO 639-2 is the alpha-3 code in Codes for the representation of names of languages-- Part 2. There are 21 languages that have alternative codes for bibliographic or terminology purposes. In those cases, each is listed separately and they are designated as \\\"B\\\" (bibliographic) or \\\"T\\\" (terminology). In all other cases there is only one ISO 639-2 code. Multiple codes assigned to the same language are to be considered synonyms. ISO 639-1 is the alpha-2 code. @author Aurora Developer team.\",\"required\":[\"englishName\",\"iso6392Code\",\"name\"],\"type\":\"object\",\"properties\":{\"attributes\":{\"description\":\"organizasyon tipinin ek alanları.\",\"type\":\"object\",\"additionalProperties\":{\"type\":\"string\"}},\"code\":{\"description\":\"gobal dil kodu. tr, en, fr vb.. ISO 639-1 Code \\\"https:\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"englishName\":{\"description\":\"Dilin ingilizce ismi. kullanim kolayligi icin konulmustur.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"icon\":{\"description\":\"Dil icin icon bilgisi\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"iso6392Code\":{\"description\":\"ISO 639-2 dil kodlari. tur, eng vb.. ISO 639-2 Code \\\"https:\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"dilin original ismi. ENGLISH, TURKCE VS...\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}},\"CityDTO\":{\"title\":\"CityDTO\",\"description\":\"Sehir tanimlarinin tutuldugu obje view - goruntu objesidir. @see GeographicBoundary @see GeographicBoundaryType @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"country\":{\"$ref\":\"#/definitions/CountryDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"stateAddress\":{\"$ref\":\"#/definitions/StateAddressDTO\"},\"translation\":{\"$ref\":\"#/definitions/CityLangDTO\"}}},\"CityLangDTO\":{\"title\":\"CityLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"StateAddressDTO\":{\"title\":\"StateAddressDTO\",\"description\":\"State - Eyalet bilgilerinin tanimlarinin yapildigi objedir. view - goruntu objesidir. @see GeographicBoundary @see GeographicBoundaryType @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"country\":{\"$ref\":\"#/definitions/CountryDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/StateAddressLangDTO\"}}},\"StateAddressLangDTO\":{\"title\":\"StateAddressLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"CountryDTO\":{\"title\":\"CountryDTO\",\"description\":\"Ulke tanimlari @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/CountryLangDTO\"}}},\"CountryLangDTO\":{\"title\":\"CountryLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/DistrictDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"city\": {\n \"country\": {\n \"createdBy\": \"incididunt\",\n \"createdDate\": \"1957-07-07T23:22:01.610Z\",\n \"id\": 14493570,\n \"lastModifiedBy\": \"cillum sed officia eiusmod enim\",\n \"lastModifiedDate\": \"1993-03-24T11:57:11.709Z\",\n \"translation\": {\n \"name\": \"ex exercitatio\",\n \"createdBy\": \"cillum labore non in\",\n \"createdDate\": \"1961-11-28T07:43:22.158Z\",\n \"defaultLang\": false,\n \"description\": \"Excepteur consectetur tempor occaecat\",\n \"id\": -26500527,\n \"lang\": {\n \"englishName\": \"voluptate\",\n \"iso6392Code\": \"Excepteur dolor\",\n \"name\": \"nisi Ex\",\n \"attributes\": {},\n \"code\": \"nostrud mollit cupidatat anim\",\n \"createdBy\": \"enim\",\n \"createdDate\": \"2008-01-19T12:27:15.240Z\",\n \"description\": \"officia voluptate laborum esse sit\",\n \"icon\": \"consequat\",\n \"id\": 5856480,\n \"lastModifiedBy\": \"id dolore\",\n \"lastModifiedDate\": \"1968-02-20T20:14:18.227Z\",\n \"orderPriority\": -3311664,\n \"status\": true\n },\n \"lastModifiedBy\": \"pariatur dolore aliq\",\n \"lastModifiedDate\": \"1945-11-14T12:16:02.437Z\",\n \"ownerId\": -53387927\n }\n },\n \"createdBy\": \"cillum\",\n \"createdDate\": \"1968-03-20T23:57:35.826Z\",\n \"id\": 60946565,\n \"lastModifiedBy\": \"exercitation Ut reprehenderit do\",\n \"lastModifiedDate\": \"1988-04-05T07:03:03.779Z\",\n \"stateAddress\": {\n \"country\": {\n \"createdBy\": \"et nisi quis dolore in\",\n \"createdDate\": \"1979-11-03T14:00:22.011Z\",\n \"id\": -71696974,\n \"lastModifiedBy\": \"elit laboris sint\",\n \"lastModifiedDate\": \"1948-06-15T00:35:31.890Z\",\n \"translation\": {\n \"name\": \"cillum\",\n \"createdBy\": \"quis nulla tempor\",\n \"createdDate\": \"2011-03-17T22:31:08.661Z\",\n \"defaultLang\": false,\n \"description\": \"deserunt\",\n \"id\": 35221204,\n \"lang\": {\n \"englishName\": \"dolor\",\n \"iso6392Code\": \"Lorem esse ad\",\n \"name\": \"commodo reprehenderit\",\n \"attributes\": {},\n \"code\": \"velit\",\n \"createdBy\": \"dolor dolore commodo cillum ut\",\n \"createdDate\": \"1965-04-13T19:04:53.900Z\",\n \"description\": \"in commodo eu elit consequat\",\n \"icon\": \"cupidatat ut mollit voluptate\",\n \"id\": -31909396,\n \"lastModifiedBy\": \"occaecat cillum nostrud\",\n \"lastModifiedDate\": \"2014-06-16T17:00:49.982Z\",\n \"orderPriority\": -57812137,\n \"status\": false\n },\n \"lastModifiedBy\": \"eu deserunt occaecat\",\n \"lastModifiedDate\": \"2019-02-23T02:41:34.516Z\",\n \"ownerId\": -39286780\n }\n },\n \"createdBy\": \"nisi sit eiusmod laboris exercitation\",\n \"createdDate\": \"2002-10-08T21:16:59.113Z\",\n \"id\": 50182090,\n \"lastModifiedBy\": \"ad\",\n \"lastModifiedDate\": \"1994-12-28T02:32:05.607Z\",\n \"translation\": {\n \"name\": \"laboris i\",\n \"createdBy\": \"do qui\",\n \"createdDate\": \"2004-12-30T02:04:19.639Z\",\n \"defaultLang\": false,\n \"description\": \"ea irure eiusmod\",\n \"id\": 13652750,\n \"lang\": {\n \"englishName\": \"consequat\",\n \"iso6392Code\": \"mollit cons\",\n \"name\": \"elit ea Duis cons\",\n \"attributes\": {},\n \"code\": \"Ut culpa\",\n \"createdBy\": \"commodo ut ex sunt esse\",\n \"createdDate\": \"2000-06-14T05:45:15.157Z\",\n \"description\": \"sit\",\n \"icon\": \"dolor\",\n \"id\": 78477405,\n \"lastModifiedBy\": \"mollit sunt voluptate magna officia\",\n \"lastModifiedDate\": \"2006-06-19T12:46:35.990Z\",\n \"orderPriority\": -13306305,\n \"status\": true\n },\n \"lastModifiedBy\": \"veniam et fugiat oc\",\n \"lastModifiedDate\": \"2012-08-14T02:43:16.707Z\",\n \"ownerId\": -24190780\n }\n },\n \"translation\": {\n \"name\": \"ipsum\",\n \"createdBy\": \"in\",\n \"createdDate\": \"1959-03-06T17:32:00.301Z\",\n \"defaultLang\": false,\n \"description\": \"consequat\",\n \"id\": -97824371,\n \"lang\": {\n \"englishName\": \"reprehenderit voluptate id anim\",\n \"iso6392Code\": \"proident conseq\",\n \"name\": \"ipsum\",\n \"attributes\": {},\n \"code\": \"iru\",\n \"createdBy\": \"culpa\",\n \"createdDate\": \"1970-11-15T18:44:34.418Z\",\n \"description\": \"consectetur in enim\",\n \"icon\": \"tempor\",\n \"id\": 1874368,\n \"lastModifiedBy\": \"voluptate elit officia ea\",\n \"lastModifiedDate\": \"2005-11-29T16:28:16.910Z\",\n \"orderPriority\": -436087,\n \"status\": false\n },\n \"lastModifiedBy\": \"irure occaecat cupidatat\",\n \"lastModifiedDate\": \"1999-04-04T13:52:48.889Z\",\n \"ownerId\": -83155035\n }\n },\n \"createdBy\": \"enim ad\",\n \"createdDate\": \"1994-07-10T06:37:07.745Z\",\n \"id\": 46325981,\n \"lastModifiedBy\": \"adipisicing do\",\n \"lastModifiedDate\": \"1951-01-16T09:59:20.415Z\",\n \"translation\": {\n \"name\": \"magna qui sunt eiusmod\",\n \"createdBy\": \"tempor consequat\",\n \"createdDate\": \"1972-06-22T07:38:51.171Z\",\n \"defaultLang\": false,\n \"description\": \"eiusmod\",\n \"id\": 97012685,\n \"lang\": {\n \"englishName\": \"qui consectetur dolor\",\n \"iso6392Code\": \"volu\",\n \"name\": \"nulla id v\",\n \"attributes\": {},\n \"code\": \"laboris ad pariatur dolor\",\n \"createdBy\": \"laborum\",\n \"createdDate\": \"2007-10-19T09:50:27.714Z\",\n \"description\": \"dolore dolor est\",\n \"icon\": \"reprehenderit occaecat\",\n \"id\": 87375927,\n \"lastModifiedBy\": \"nisi eu\",\n \"lastModifiedDate\": \"1954-08-24T07:42:59.432Z\",\n \"orderPriority\": -11864224,\n \"status\": false\n },\n \"lastModifiedBy\": \"in veniam incididunt est\",\n \"lastModifiedDate\": \"1965-01-07T08:48:04.699Z\",\n \"ownerId\": -10102143\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/DistrictDTO\"}],\"definitions\":{\"DistrictDTO\":{\"title\":\"DistrictDTO\",\"description\":\"Ilce tanimlarinin tutuldugu obje @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"city\":{\"$ref\":\"#/definitions/CityDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/DistrictLangDTO\"}}},\"DistrictLangDTO\":{\"title\":\"DistrictLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"LanguageCodeDTO\":{\"title\":\"LanguageCodeDTO\",\"description\":\"Programin destekledigi dillerin kodlarini icerir Languages codes are ISO_639-1 codes, see http: Codes for the Representation of Names of Languages Codes arranged alphabetically by alpha-3/ISO 639-2 Code Note: ISO 639-2 is the alpha-3 code in Codes for the representation of names of languages-- Part 2. There are 21 languages that have alternative codes for bibliographic or terminology purposes. In those cases, each is listed separately and they are designated as \\\"B\\\" (bibliographic) or \\\"T\\\" (terminology). In all other cases there is only one ISO 639-2 code. Multiple codes assigned to the same language are to be considered synonyms. ISO 639-1 is the alpha-2 code. @author Aurora Developer team.\",\"required\":[\"englishName\",\"iso6392Code\",\"name\"],\"type\":\"object\",\"properties\":{\"attributes\":{\"description\":\"organizasyon tipinin ek alanları.\",\"type\":\"object\",\"additionalProperties\":{\"type\":\"string\"}},\"code\":{\"description\":\"gobal dil kodu. tr, en, fr vb.. ISO 639-1 Code \\\"https:\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"englishName\":{\"description\":\"Dilin ingilizce ismi. kullanim kolayligi icin konulmustur.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"icon\":{\"description\":\"Dil icin icon bilgisi\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"iso6392Code\":{\"description\":\"ISO 639-2 dil kodlari. tur, eng vb.. ISO 639-2 Code \\\"https:\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"dilin original ismi. ENGLISH, TURKCE VS...\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}},\"CityDTO\":{\"title\":\"CityDTO\",\"description\":\"Sehir tanimlarinin tutuldugu obje view - goruntu objesidir. @see GeographicBoundary @see GeographicBoundaryType @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"country\":{\"$ref\":\"#/definitions/CountryDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"stateAddress\":{\"$ref\":\"#/definitions/StateAddressDTO\"},\"translation\":{\"$ref\":\"#/definitions/CityLangDTO\"}}},\"CityLangDTO\":{\"title\":\"CityLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"StateAddressDTO\":{\"title\":\"StateAddressDTO\",\"description\":\"State - Eyalet bilgilerinin tanimlarinin yapildigi objedir. view - goruntu objesidir. @see GeographicBoundary @see GeographicBoundaryType @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"country\":{\"$ref\":\"#/definitions/CountryDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/StateAddressLangDTO\"}}},\"StateAddressLangDTO\":{\"title\":\"StateAddressLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"CountryDTO\":{\"title\":\"CountryDTO\",\"description\":\"Ulke tanimlari @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/CountryLangDTO\"}}},\"CountryLangDTO\":{\"title\":\"CountryLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/DistrictDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"city\": {\n \"country\": {\n \"createdBy\": \"adipisicing laborum nisi voluptate Duis\",\n \"createdDate\": \"2005-05-31T21:31:30.806Z\",\n \"id\": 19042339,\n \"lastModifiedBy\": \"enim exercitation dolore\",\n \"lastModifiedDate\": \"2001-10-11T07:47:23.965Z\",\n \"translation\": {\n \"name\": \"culpa sint mollit reprehenderit\",\n \"createdBy\": \"pariatur minim\",\n \"createdDate\": \"1962-03-12T23:25:36.080Z\",\n \"defaultLang\": false,\n \"description\": \"cupidatat dolor ut\",\n \"id\": 31591064,\n \"lang\": {\n \"englishName\": \"aute anim occaecat eu\",\n \"iso6392Code\": \"voluptate\",\n \"name\": \"mollit sed dolore\",\n \"attributes\": {},\n \"code\": \"elit ad consectetur\",\n \"createdBy\": \"sed ip\",\n \"createdDate\": \"1963-11-04T10:52:48.940Z\",\n \"description\": \"qui n\",\n \"icon\": \"proident\",\n \"id\": -14553517,\n \"lastModifiedBy\": \"minim exercitation qui tempor\",\n \"lastModifiedDate\": \"1965-05-31T18:09:53.225Z\",\n \"orderPriority\": -7112039,\n \"status\": true\n },\n \"lastModifiedBy\": \"elit fugiat\",\n \"lastModifiedDate\": \"2002-12-21T19:28:52.136Z\",\n \"ownerId\": -41887073\n }\n },\n \"createdBy\": \"et ut\",\n \"createdDate\": \"1977-08-19T01:42:36.485Z\",\n \"id\": 83164429,\n \"lastModifiedBy\": \"laborum voluptate proident \",\n \"lastModifiedDate\": \"1958-05-21T04:06:34.214Z\",\n \"stateAddress\": {\n \"country\": {\n \"createdBy\": \"occaecat eu dolor ad\",\n \"createdDate\": \"2001-05-14T14:29:38.221Z\",\n \"id\": -71569015,\n \"lastModifiedBy\": \"elit incididunt sint esse\",\n \"lastModifiedDate\": \"1946-01-08T01:31:14.080Z\",\n \"translation\": {\n \"name\": \"enim laboris culpa consectetur e\",\n \"createdBy\": \"aliqua ea in\",\n \"createdDate\": \"1948-10-16T02:06:09.961Z\",\n \"defaultLang\": true,\n \"description\": \"occaecat\",\n \"id\": -44618766,\n \"lang\": {\n \"englishName\": \"sint occaecat ut dolore do\",\n \"iso6392Code\": \"sit eu\",\n \"name\": \"sed \",\n \"attributes\": {},\n \"code\": \"sed occaecat aliquip\",\n \"createdBy\": \"proident\",\n \"createdDate\": \"1994-07-03T01:48:49.616Z\",\n \"description\": \"fugiat dolore\",\n \"icon\": \"nostrud tempor esse velit\",\n \"id\": -63702177,\n \"lastModifiedBy\": \"l\",\n \"lastModifiedDate\": \"1956-09-02T10:48:09.318Z\",\n \"orderPriority\": -83950595,\n \"status\": false\n },\n \"lastModifiedBy\": \"Lorem\",\n \"lastModifiedDate\": \"1963-04-13T23:33:03.244Z\",\n \"ownerId\": 33755224\n }\n },\n \"createdBy\": \"minim aute eiusmod\",\n \"createdDate\": \"1943-10-12T05:02:52.384Z\",\n \"id\": -4837733,\n \"lastModifiedBy\": \"eiusmod ad proident non\",\n \"lastModifiedDate\": \"2010-03-23T18:49:58.129Z\",\n \"translation\": {\n \"name\": \"Ut\",\n \"createdBy\": \"laboris anim ipsum occaecat cillum\",\n \"createdDate\": \"2014-12-11T15:05:47.691Z\",\n \"defaultLang\": true,\n \"description\": \"commodo\",\n \"id\": 30339861,\n \"lang\": {\n \"englishName\": \"occaecat \",\n \"iso6392Code\": \"elit cupidatat enim dolore\",\n \"name\": \"occaecat ali\",\n \"attributes\": {},\n \"code\": \"quis\",\n \"createdBy\": \"irure\",\n \"createdDate\": \"1985-08-22T14:21:56.394Z\",\n \"description\": \"et irure minim cillum deserunt\",\n \"icon\": \"sed\",\n \"id\": 86789168,\n \"lastModifiedBy\": \"consectetur aliquip in Excepteur\",\n \"lastModifiedDate\": \"2012-04-08T22:48:40.663Z\",\n \"orderPriority\": -80738064,\n \"status\": false\n },\n \"lastModifiedBy\": \"cillum consequat a\",\n \"lastModifiedDate\": \"1979-11-07T06:18:36.852Z\",\n \"ownerId\": 4307996\n }\n },\n \"translation\": {\n \"name\": \"exercitation\",\n \"createdBy\": \"pariatur a\",\n \"createdDate\": \"1975-08-06T01:09:27.172Z\",\n \"defaultLang\": true,\n \"description\": \"mollit ipsum minim eu Lorem\",\n \"id\": -47978653,\n \"lang\": {\n \"englishName\": \"ipsum mollit laborum consequat\",\n \"iso6392Code\": \"ut elit Excepteur pariatur esse\",\n \"name\": \"ut elit non\",\n \"attributes\": {},\n \"code\": \"nostrud\",\n \"createdBy\": \"et ipsum magna reprehenderit fugiat\",\n \"createdDate\": \"1970-04-25T10:51:19.138Z\",\n \"description\": \"laboris\",\n \"icon\": \"Excepteur consectetur\",\n \"id\": 78746971,\n \"lastModifiedBy\": \"ullamco esse nulla consequ\",\n \"lastModifiedDate\": \"1976-03-23T17:21:56.165Z\",\n \"orderPriority\": -95707768,\n \"status\": false\n },\n \"lastModifiedBy\": \"sunt\",\n \"lastModifiedDate\": \"2012-01-27T20:38:14.018Z\",\n \"ownerId\": -66533624\n }\n },\n \"createdBy\": \"qui\",\n \"createdDate\": \"2000-02-24T19:56:39.897Z\",\n \"id\": -45334132,\n \"lastModifiedBy\": \"deserunt elit labore laboris\",\n \"lastModifiedDate\": \"1956-09-24T01:25:10.339Z\",\n \"translation\": {\n \"name\": \"in anim dolore\",\n \"createdBy\": \"consectetur sit ullamco dolor\",\n \"createdDate\": \"1992-05-16T22:29:02.325Z\",\n \"defaultLang\": true,\n \"description\": \"\",\n \"id\": 2041272,\n \"lang\": {\n \"englishName\": \"sint s\",\n \"iso6392Code\": \"sit fug\",\n \"name\": \"reprehende\",\n \"attributes\": {},\n \"code\": \"nostrud\",\n \"createdBy\": \"nostrud sed Excepteur in\",\n \"createdDate\": \"1963-11-19T08:21:38.464Z\",\n \"description\": \"est proident sit Excepteur cillum\",\n \"icon\": \"elit cillum\",\n \"id\": -83394058,\n \"lastModifiedBy\": \"incididunt enim ipsum\",\n \"lastModifiedDate\": \"2007-12-25T14:50:05.148Z\",\n \"orderPriority\": -34618354,\n \"status\": false\n },\n \"lastModifiedBy\": \"sunt dolore non minim enim\",\n \"lastModifiedDate\": \"1984-06-07T14:58:46.467Z\",\n \"ownerId\": 91264511\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/DistrictDTO\"}],\"definitions\":{\"DistrictDTO\":{\"title\":\"DistrictDTO\",\"description\":\"Ilce tanimlarinin tutuldugu obje @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"city\":{\"$ref\":\"#/definitions/CityDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/DistrictLangDTO\"}}},\"DistrictLangDTO\":{\"title\":\"DistrictLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"LanguageCodeDTO\":{\"title\":\"LanguageCodeDTO\",\"description\":\"Programin destekledigi dillerin kodlarini icerir Languages codes are ISO_639-1 codes, see http: Codes for the Representation of Names of Languages Codes arranged alphabetically by alpha-3/ISO 639-2 Code Note: ISO 639-2 is the alpha-3 code in Codes for the representation of names of languages-- Part 2. There are 21 languages that have alternative codes for bibliographic or terminology purposes. In those cases, each is listed separately and they are designated as \\\"B\\\" (bibliographic) or \\\"T\\\" (terminology). In all other cases there is only one ISO 639-2 code. Multiple codes assigned to the same language are to be considered synonyms. ISO 639-1 is the alpha-2 code. @author Aurora Developer team.\",\"required\":[\"englishName\",\"iso6392Code\",\"name\"],\"type\":\"object\",\"properties\":{\"attributes\":{\"description\":\"organizasyon tipinin ek alanları.\",\"type\":\"object\",\"additionalProperties\":{\"type\":\"string\"}},\"code\":{\"description\":\"gobal dil kodu. tr, en, fr vb.. ISO 639-1 Code \\\"https:\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"englishName\":{\"description\":\"Dilin ingilizce ismi. kullanim kolayligi icin konulmustur.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"icon\":{\"description\":\"Dil icin icon bilgisi\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"iso6392Code\":{\"description\":\"ISO 639-2 dil kodlari. tur, eng vb.. ISO 639-2 Code \\\"https:\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"dilin original ismi. ENGLISH, TURKCE VS...\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}},\"CityDTO\":{\"title\":\"CityDTO\",\"description\":\"Sehir tanimlarinin tutuldugu obje view - goruntu objesidir. @see GeographicBoundary @see GeographicBoundaryType @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"country\":{\"$ref\":\"#/definitions/CountryDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"stateAddress\":{\"$ref\":\"#/definitions/StateAddressDTO\"},\"translation\":{\"$ref\":\"#/definitions/CityLangDTO\"}}},\"CityLangDTO\":{\"title\":\"CityLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"StateAddressDTO\":{\"title\":\"StateAddressDTO\",\"description\":\"State - Eyalet bilgilerinin tanimlarinin yapildigi objedir. view - goruntu objesidir. @see GeographicBoundary @see GeographicBoundaryType @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"country\":{\"$ref\":\"#/definitions/CountryDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/StateAddressLangDTO\"}}},\"StateAddressLangDTO\":{\"title\":\"StateAddressLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"CountryDTO\":{\"title\":\"CountryDTO\",\"description\":\"Ulke tanimlari @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/CountryLangDTO\"}}},\"CountryLangDTO\":{\"title\":\"CountryLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/DistrictDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"city\": {\n \"country\": {\n \"createdBy\": \"officia veniam dolore in nulla\",\n \"createdDate\": \"2012-06-21T05:26:35.509Z\",\n \"id\": -2312787,\n \"lastModifiedBy\": \"adipisicing quis \",\n \"lastModifiedDate\": \"1994-06-29T10:49:21.489Z\",\n \"translation\": {\n \"name\": \"Excepteur mollit\",\n \"createdBy\": \"officia ut dolor ullamco\",\n \"createdDate\": \"1967-08-09T21:36:51.883Z\",\n \"defaultLang\": true,\n \"description\": \"anim reprehenderit sint pariatur\",\n \"id\": -3266363,\n \"lang\": {\n \"englishName\": \"commodo\",\n \"iso6392Code\": \"ad eu incididunt\",\n \"name\": \"ve\",\n \"attributes\": {},\n \"code\": \"minim deserun\",\n \"createdBy\": \"non dolor\",\n \"createdDate\": \"1998-03-01T17:53:16.295Z\",\n \"description\": \"exercitation\",\n \"icon\": \"incididunt ut id\",\n \"id\": -79620216,\n \"lastModifiedBy\": \"irure Excepteur ut mollit\",\n \"lastModifiedDate\": \"2011-10-30T03:32:25.203Z\",\n \"orderPriority\": -28090188,\n \"status\": false\n },\n \"lastModifiedBy\": \"consequat dolore\",\n \"lastModifiedDate\": \"1951-07-31T00:52:41.385Z\",\n \"ownerId\": -62544523\n }\n },\n \"createdBy\": \"aliqua laboris sunt commodo\",\n \"createdDate\": \"2016-07-11T13:02:34.808Z\",\n \"id\": -66775686,\n \"lastModifiedBy\": \"et commodo eu ea aute\",\n \"lastModifiedDate\": \"1992-05-14T13:43:28.131Z\",\n \"stateAddress\": {\n \"country\": {\n \"createdBy\": \"exercitation ma\",\n \"createdDate\": \"1979-12-11T09:24:25.067Z\",\n \"id\": -21619927,\n \"lastModifiedBy\": \"sint incididunt\",\n \"lastModifiedDate\": \"2003-11-05T09:04:26.784Z\",\n \"translation\": {\n \"name\": \"cillum in Excepteur ut\",\n \"createdBy\": \"labore dolor aliquip ut Ut\",\n \"createdDate\": \"1948-10-28T11:23:38.642Z\",\n \"defaultLang\": false,\n \"description\": \"Lorem est do\",\n \"id\": -93409076,\n \"lang\": {\n \"englishName\": \"in sed i\",\n \"iso6392Code\": \"adipisici\",\n \"name\": \"do\",\n \"attributes\": {},\n \"code\": \"Lorem eni\",\n \"createdBy\": \"sed reprehe\",\n \"createdDate\": \"1960-12-16T12:45:16.200Z\",\n \"description\": \"proident fugiat Lorem occaecat elit\",\n \"icon\": \"ad proident non\",\n \"id\": 44509865,\n \"lastModifiedBy\": \"ex\",\n \"lastModifiedDate\": \"2005-06-07T03:21:59.765Z\",\n \"orderPriority\": -79284925,\n \"status\": false\n },\n \"lastModifiedBy\": \"in ut amet id\",\n \"lastModifiedDate\": \"1959-05-25T15:19:29.593Z\",\n \"ownerId\": -6555754\n }\n },\n \"createdBy\": \"est deserunt\",\n \"createdDate\": \"1979-08-21T01:04:57.320Z\",\n \"id\": -82802643,\n \"lastModifiedBy\": \"Lorem culpa\",\n \"lastModifiedDate\": \"1944-09-04T08:54:12.013Z\",\n \"translation\": {\n \"name\": \"mollit ea qui\",\n \"createdBy\": \"culpa reprehenderit exercitation\",\n \"createdDate\": \"1976-07-16T22:51:00.597Z\",\n \"defaultLang\": true,\n \"description\": \"magna culpa sint\",\n \"id\": -31939427,\n \"lang\": {\n \"englishName\": \"quis esse\",\n \"iso6392Code\": \"consequat\",\n \"name\": \"dolor\",\n \"attributes\": {},\n \"code\": \"est pariatur\",\n \"createdBy\": \"Excepteur l\",\n \"createdDate\": \"1958-11-17T08:19:48.684Z\",\n \"description\": \"veniam anim\",\n \"icon\": \"Ut a\",\n \"id\": 82250208,\n \"lastModifiedBy\": \"eiusmod non\",\n \"lastModifiedDate\": \"2017-09-05T02:42:15.754Z\",\n \"orderPriority\": -91812657,\n \"status\": true\n },\n \"lastModifiedBy\": \"dolore ea\",\n \"lastModifiedDate\": \"1970-03-02T22:24:39.135Z\",\n \"ownerId\": -58415780\n }\n },\n \"translation\": {\n \"name\": \"aliqua dolore incididunt commodo ea\",\n \"createdBy\": \"non\",\n \"createdDate\": \"2006-07-04T15:36:08.184Z\",\n \"defaultLang\": false,\n \"description\": \"Duis dolor\",\n \"id\": -56072352,\n \"lang\": {\n \"englishName\": \"esse\",\n \"iso6392Code\": \"fu\",\n \"name\": \"laboris veniam dolor deserunt ex\",\n \"attributes\": {},\n \"code\": \"enim magna deserunt\",\n \"createdBy\": \"ut ea irure\",\n \"createdDate\": \"2006-10-13T03:55:39.313Z\",\n \"description\": \"fugiat reprehenderit\",\n \"icon\": \"eu adipisicing dolore\",\n \"id\": -31901716,\n \"lastModifiedBy\": \"ipsum\",\n \"lastModifiedDate\": \"1998-09-21T02:04:05.235Z\",\n \"orderPriority\": -63373908,\n \"status\": true\n },\n \"lastModifiedBy\": \"culpa commodo anim\",\n \"lastModifiedDate\": \"2013-05-31T16:49:42.771Z\",\n \"ownerId\": -47492594\n }\n },\n \"createdBy\": \"ea aute reprehenderit amet\",\n \"createdDate\": \"1943-10-17T23:55:53.858Z\",\n \"id\": 17158114,\n \"lastModifiedBy\": \"adipisicing pariatur\",\n \"lastModifiedDate\": \"2006-07-30T16:41:45.822Z\",\n \"translation\": {\n \"name\": \"velit enim Ut Duis\",\n \"createdBy\": \"id Duis commodo ullamco dolore\",\n \"createdDate\": \"1968-07-07T09:49:17.193Z\",\n \"defaultLang\": true,\n \"description\": \"eu voluptate\",\n \"id\": 95588065,\n \"lang\": {\n \"englishName\": \"ex consectetur aut\",\n \"iso6392Code\": \"velit id\",\n \"name\": \"Excepteur\",\n \"attributes\": {},\n \"code\": \"ipsum in ut consequat aliquip\",\n \"createdBy\": \"sit veniam incididunt dolore nulla\",\n \"createdDate\": \"1963-04-08T23:19:14.094Z\",\n \"description\": \"fugiat E\",\n \"icon\": \"nostrud\",\n \"id\": -90884541,\n \"lastModifiedBy\": \"anim mollit quis\",\n \"lastModifiedDate\": \"1976-05-30T11:06:03.545Z\",\n \"orderPriority\": -20453811,\n \"status\": false\n },\n \"lastModifiedBy\": \"culpa laborum magna in\",\n \"lastModifiedDate\": \"1981-11-25T07:40:18.790Z\",\n \"ownerId\": -46090210\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/DistrictDTO\"}],\"definitions\":{\"DistrictDTO\":{\"title\":\"DistrictDTO\",\"description\":\"Ilce tanimlarinin tutuldugu obje @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"city\":{\"$ref\":\"#/definitions/CityDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/DistrictLangDTO\"}}},\"DistrictLangDTO\":{\"title\":\"DistrictLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"LanguageCodeDTO\":{\"title\":\"LanguageCodeDTO\",\"description\":\"Programin destekledigi dillerin kodlarini icerir Languages codes are ISO_639-1 codes, see http: Codes for the Representation of Names of Languages Codes arranged alphabetically by alpha-3/ISO 639-2 Code Note: ISO 639-2 is the alpha-3 code in Codes for the representation of names of languages-- Part 2. There are 21 languages that have alternative codes for bibliographic or terminology purposes. In those cases, each is listed separately and they are designated as \\\"B\\\" (bibliographic) or \\\"T\\\" (terminology). In all other cases there is only one ISO 639-2 code. Multiple codes assigned to the same language are to be considered synonyms. ISO 639-1 is the alpha-2 code. @author Aurora Developer team.\",\"required\":[\"englishName\",\"iso6392Code\",\"name\"],\"type\":\"object\",\"properties\":{\"attributes\":{\"description\":\"organizasyon tipinin ek alanları.\",\"type\":\"object\",\"additionalProperties\":{\"type\":\"string\"}},\"code\":{\"description\":\"gobal dil kodu. tr, en, fr vb.. ISO 639-1 Code \\\"https:\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"englishName\":{\"description\":\"Dilin ingilizce ismi. kullanim kolayligi icin konulmustur.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"icon\":{\"description\":\"Dil icin icon bilgisi\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"iso6392Code\":{\"description\":\"ISO 639-2 dil kodlari. tur, eng vb.. ISO 639-2 Code \\\"https:\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"dilin original ismi. ENGLISH, TURKCE VS...\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}},\"CityDTO\":{\"title\":\"CityDTO\",\"description\":\"Sehir tanimlarinin tutuldugu obje view - goruntu objesidir. @see GeographicBoundary @see GeographicBoundaryType @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"country\":{\"$ref\":\"#/definitions/CountryDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"stateAddress\":{\"$ref\":\"#/definitions/StateAddressDTO\"},\"translation\":{\"$ref\":\"#/definitions/CityLangDTO\"}}},\"CityLangDTO\":{\"title\":\"CityLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"StateAddressDTO\":{\"title\":\"StateAddressDTO\",\"description\":\"State - Eyalet bilgilerinin tanimlarinin yapildigi objedir. view - goruntu objesidir. @see GeographicBoundary @see GeographicBoundaryType @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"country\":{\"$ref\":\"#/definitions/CountryDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/StateAddressLangDTO\"}}},\"StateAddressLangDTO\":{\"title\":\"StateAddressLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"CountryDTO\":{\"title\":\"CountryDTO\",\"description\":\"Ulke tanimlari @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/CountryLangDTO\"}}},\"CountryLangDTO\":{\"title\":\"CountryLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/DistrictDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"city\": {\n \"country\": {\n \"createdBy\": \"nostrud ullamco\",\n \"createdDate\": \"1953-03-18T05:30:18.058Z\",\n \"id\": -69409383,\n \"lastModifiedBy\": \"velit\",\n \"lastModifiedDate\": \"1959-03-03T05:19:48.629Z\",\n \"translation\": {\n \"name\": \"Ut\",\n \"createdBy\": \"in dolor\",\n \"createdDate\": \"1945-03-21T00:28:33.702Z\",\n \"defaultLang\": true,\n \"description\": \"nostrud officia\",\n \"id\": 45513134,\n \"lang\": {\n \"englishName\": \"qui aliqua n\",\n \"iso6392Code\": \"magna id quis\",\n \"name\": \"ad\",\n \"attributes\": {},\n \"code\": \"consect\",\n \"createdBy\": \"exercitation in dolor reprehenderit proident\",\n \"createdDate\": \"2006-02-07T22:56:25.343Z\",\n \"description\": \"culpa ut velit dolor aliquip\",\n \"icon\": \"cillum ipsum incididunt\",\n \"id\": 58990582,\n \"lastModifiedBy\": \"minim aute\",\n \"lastModifiedDate\": \"1988-06-19T04:00:54.930Z\",\n \"orderPriority\": -6435986,\n \"status\": true\n },\n \"lastModifiedBy\": \"mollit Duis eiusmod eu\",\n \"lastModifiedDate\": \"1976-04-15T05:52:45.861Z\",\n \"ownerId\": -25052556\n }\n },\n \"createdBy\": \"et eu\",\n \"createdDate\": \"1992-04-06T03:14:06.446Z\",\n \"id\": -2118525,\n \"lastModifiedBy\": \"\",\n \"lastModifiedDate\": \"1979-06-02T01:46:02.335Z\",\n \"stateAddress\": {\n \"country\": {\n \"createdBy\": \"nisi eiusmod\",\n \"createdDate\": \"1964-02-01T05:24:48.181Z\",\n \"id\": 77255553,\n \"lastModifiedBy\": \"dolor laborum dolore non laboris\",\n \"lastModifiedDate\": \"1955-10-30T11:46:32.629Z\",\n \"translation\": {\n \"name\": \"dolor\",\n \"createdBy\": \"minim dolor eu\",\n \"createdDate\": \"2001-01-28T07:19:02.660Z\",\n \"defaultLang\": true,\n \"description\": \"velit \",\n \"id\": -92788884,\n \"lang\": {\n \"englishName\": \"deserunt adipisicing irure officia\",\n \"iso6392Code\": \"occaecat\",\n \"name\": \"est pariatur adipisicing nostrud ea\",\n \"attributes\": {},\n \"code\": \"sed irure in\",\n \"createdBy\": \"aliquip Lorem eiusmod elit labore\",\n \"createdDate\": \"1999-12-26T03:09:59.755Z\",\n \"description\": \"cupidatat ut Duis ad\",\n \"icon\": \"ipsum ex\",\n \"id\": 88179839,\n \"lastModifiedBy\": \"pari\",\n \"lastModifiedDate\": \"2004-05-17T05:51:16.192Z\",\n \"orderPriority\": -89107518,\n \"status\": false\n },\n \"lastModifiedBy\": \"eiusmod esse magna dolor\",\n \"lastModifiedDate\": \"1996-10-22T21:38:37.272Z\",\n \"ownerId\": -45759197\n }\n },\n \"createdBy\": \"consequat dolor\",\n \"createdDate\": \"1957-02-28T05:38:05.439Z\",\n \"id\": -24389620,\n \"lastModifiedBy\": \"dol\",\n \"lastModifiedDate\": \"2007-08-25T11:14:41.235Z\",\n \"translation\": {\n \"name\": \"labore Duis\",\n \"createdBy\": \"culpa consectetur nulla enim\",\n \"createdDate\": \"1987-09-10T12:55:07.988Z\",\n \"defaultLang\": false,\n \"description\": \"minim elit est ex\",\n \"id\": 3259046,\n \"lang\": {\n \"englishName\": \"irure anim ea \",\n \"iso6392Code\": \"proident eiusmod pariatur qui\",\n \"name\": \"est \",\n \"attributes\": {},\n \"code\": \"proident \",\n \"createdBy\": \"sint qui\",\n \"createdDate\": \"2008-09-15T05:14:09.135Z\",\n \"description\": \"labore ut dolore sed sunt\",\n \"icon\": \"dolor ullamco ad aute Lorem\",\n \"id\": 84739476,\n \"lastModifiedBy\": \"in consequat\",\n \"lastModifiedDate\": \"1948-10-10T01:57:21.469Z\",\n \"orderPriority\": -73532498,\n \"status\": false\n },\n \"lastModifiedBy\": \"adipisicing et\",\n \"lastModifiedDate\": \"1969-03-22T20:39:21.324Z\",\n \"ownerId\": 38160579\n }\n },\n \"translation\": {\n \"name\": \"pariatur ea nostr\",\n \"createdBy\": \"non reprehenderit esse ut dolor\",\n \"createdDate\": \"1955-04-23T07:17:36.068Z\",\n \"defaultLang\": false,\n \"description\": \"veniam Excepteur anim\",\n \"id\": 88758488,\n \"lang\": {\n \"englishName\": \"reprehenderit\",\n \"iso6392Code\": \"fugiat cupidatat commo\",\n \"name\": \"dolor aliqua enim\",\n \"attributes\": {},\n \"code\": \"dolor\",\n \"createdBy\": \"velit ea elit qui\",\n \"createdDate\": \"1996-11-29T10:18:24.986Z\",\n \"description\": \"Lorem\",\n \"icon\": \"ullamco ut\",\n \"id\": 14270273,\n \"lastModifiedBy\": \"laboris pariatur tempor\",\n \"lastModifiedDate\": \"1943-06-10T12:04:42.590Z\",\n \"orderPriority\": -84459000,\n \"status\": true\n },\n \"lastModifiedBy\": \"ut pariatur ut eiusmod aliquip\",\n \"lastModifiedDate\": \"1986-10-26T09:11:41.748Z\",\n \"ownerId\": 93347119\n }\n },\n \"createdBy\": \"quis dolor qui laborum enim\",\n \"createdDate\": \"1974-04-27T07:11:35.958Z\",\n \"id\": 93768510,\n \"lastModifiedBy\": \"Ut proident ad exercitation\",\n \"lastModifiedDate\": \"1988-07-31T12:48:55.336Z\",\n \"translation\": {\n \"name\": \"ut amet anim\",\n \"createdBy\": \"eiusmod officia\",\n \"createdDate\": \"1996-02-04T11:33:15.342Z\",\n \"defaultLang\": true,\n \"description\": \"reprehenderit incididunt ullamco Duis proident\",\n \"id\": 75938922,\n \"lang\": {\n \"englishName\": \"et\",\n \"iso6392Code\": \"non officia laboris eu\",\n \"name\": \"laboris\",\n \"attributes\": {},\n \"code\": \"adipisicing\",\n \"createdBy\": \"aliquip magna\",\n \"createdDate\": \"2017-12-04T16:10:04.959Z\",\n \"description\": \"reprehenderit cillum enim\",\n \"icon\": \"ipsum irure Excepteur\",\n \"id\": -32949683,\n \"lastModifiedBy\": \"do anim ad\",\n \"lastModifiedDate\": \"1971-08-19T03:54:45.896Z\",\n \"orderPriority\": -74187298,\n \"status\": true\n },\n \"lastModifiedBy\": \"irure anim amet\",\n \"lastModifiedDate\": \"1954-08-08T22:17:16.019Z\",\n \"ownerId\": -68891815\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/DistrictDTO\"}],\"definitions\":{\"DistrictDTO\":{\"title\":\"DistrictDTO\",\"description\":\"Ilce tanimlarinin tutuldugu obje @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"city\":{\"$ref\":\"#/definitions/CityDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/DistrictLangDTO\"}}},\"DistrictLangDTO\":{\"title\":\"DistrictLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"LanguageCodeDTO\":{\"title\":\"LanguageCodeDTO\",\"description\":\"Programin destekledigi dillerin kodlarini icerir Languages codes are ISO_639-1 codes, see http: Codes for the Representation of Names of Languages Codes arranged alphabetically by alpha-3/ISO 639-2 Code Note: ISO 639-2 is the alpha-3 code in Codes for the representation of names of languages-- Part 2. There are 21 languages that have alternative codes for bibliographic or terminology purposes. In those cases, each is listed separately and they are designated as \\\"B\\\" (bibliographic) or \\\"T\\\" (terminology). In all other cases there is only one ISO 639-2 code. Multiple codes assigned to the same language are to be considered synonyms. ISO 639-1 is the alpha-2 code. @author Aurora Developer team.\",\"required\":[\"englishName\",\"iso6392Code\",\"name\"],\"type\":\"object\",\"properties\":{\"attributes\":{\"description\":\"organizasyon tipinin ek alanları.\",\"type\":\"object\",\"additionalProperties\":{\"type\":\"string\"}},\"code\":{\"description\":\"gobal dil kodu. tr, en, fr vb.. ISO 639-1 Code \\\"https:\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"englishName\":{\"description\":\"Dilin ingilizce ismi. kullanim kolayligi icin konulmustur.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"icon\":{\"description\":\"Dil icin icon bilgisi\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"iso6392Code\":{\"description\":\"ISO 639-2 dil kodlari. tur, eng vb.. ISO 639-2 Code \\\"https:\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"dilin original ismi. ENGLISH, TURKCE VS...\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}},\"CityDTO\":{\"title\":\"CityDTO\",\"description\":\"Sehir tanimlarinin tutuldugu obje view - goruntu objesidir. @see GeographicBoundary @see GeographicBoundaryType @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"country\":{\"$ref\":\"#/definitions/CountryDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"stateAddress\":{\"$ref\":\"#/definitions/StateAddressDTO\"},\"translation\":{\"$ref\":\"#/definitions/CityLangDTO\"}}},\"CityLangDTO\":{\"title\":\"CityLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"StateAddressDTO\":{\"title\":\"StateAddressDTO\",\"description\":\"State - Eyalet bilgilerinin tanimlarinin yapildigi objedir. view - goruntu objesidir. @see GeographicBoundary @see GeographicBoundaryType @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"country\":{\"$ref\":\"#/definitions/CountryDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/StateAddressLangDTO\"}}},\"StateAddressLangDTO\":{\"title\":\"StateAddressLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"CountryDTO\":{\"title\":\"CountryDTO\",\"description\":\"Ulke tanimlari @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/CountryLangDTO\"}}},\"CountryLangDTO\":{\"title\":\"CountryLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/DistrictDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/adr/districts/count" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "countDistricts" + }, + "id": { + "element": "string", + "content": "countDistrictsUsingGET" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/adr/districts/count{?cityId%2eequals,cityId%2egreaterOrEqualThan,cityId%2egreaterThan,cityId%2ein*,cityId%2elessOrEqualThan,cityId%2elessThan,cityId%2especified,id%2eequals,id%2egreaterOrEqualThan,id%2egreaterThan,id%2ein*,id%2elessOrEqualThan,id%2elessThan,id%2especified,translationId%2eequals,translationId%2egreaterOrEqualThan,translationId%2egreaterThan,translationId%2ein*,translationId%2elessOrEqualThan,translationId%2elessThan,translationId%2especified}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "cityId.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "cityId.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "cityId.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "cityId.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "cityId.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "cityId.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "cityId.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.specified" + }, + "value": { + "element": "boolean" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"format\":\"int64\",\"type\":\"integer\"}" + }, + { + "element": "dataStructure", + "content": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'int64'" + } + } + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/adr/districts/{id}" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getDistrict" + }, + "id": { + "element": "string", + "content": "getDistrictUsingGET" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "id" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/DistrictDTO\"}],\"definitions\":{\"DistrictDTO\":{\"title\":\"DistrictDTO\",\"description\":\"Ilce tanimlarinin tutuldugu obje @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"city\":{\"$ref\":\"#/definitions/CityDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/DistrictLangDTO\"}}},\"DistrictLangDTO\":{\"title\":\"DistrictLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"LanguageCodeDTO\":{\"title\":\"LanguageCodeDTO\",\"description\":\"Programin destekledigi dillerin kodlarini icerir Languages codes are ISO_639-1 codes, see http: Codes for the Representation of Names of Languages Codes arranged alphabetically by alpha-3/ISO 639-2 Code Note: ISO 639-2 is the alpha-3 code in Codes for the representation of names of languages-- Part 2. There are 21 languages that have alternative codes for bibliographic or terminology purposes. In those cases, each is listed separately and they are designated as \\\"B\\\" (bibliographic) or \\\"T\\\" (terminology). In all other cases there is only one ISO 639-2 code. Multiple codes assigned to the same language are to be considered synonyms. ISO 639-1 is the alpha-2 code. @author Aurora Developer team.\",\"required\":[\"englishName\",\"iso6392Code\",\"name\"],\"type\":\"object\",\"properties\":{\"attributes\":{\"description\":\"organizasyon tipinin ek alanları.\",\"type\":\"object\",\"additionalProperties\":{\"type\":\"string\"}},\"code\":{\"description\":\"gobal dil kodu. tr, en, fr vb.. ISO 639-1 Code \\\"https:\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"englishName\":{\"description\":\"Dilin ingilizce ismi. kullanim kolayligi icin konulmustur.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"icon\":{\"description\":\"Dil icin icon bilgisi\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"iso6392Code\":{\"description\":\"ISO 639-2 dil kodlari. tur, eng vb.. ISO 639-2 Code \\\"https:\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"dilin original ismi. ENGLISH, TURKCE VS...\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}},\"CityDTO\":{\"title\":\"CityDTO\",\"description\":\"Sehir tanimlarinin tutuldugu obje view - goruntu objesidir. @see GeographicBoundary @see GeographicBoundaryType @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"country\":{\"$ref\":\"#/definitions/CountryDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"stateAddress\":{\"$ref\":\"#/definitions/StateAddressDTO\"},\"translation\":{\"$ref\":\"#/definitions/CityLangDTO\"}}},\"CityLangDTO\":{\"title\":\"CityLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"StateAddressDTO\":{\"title\":\"StateAddressDTO\",\"description\":\"State - Eyalet bilgilerinin tanimlarinin yapildigi objedir. view - goruntu objesidir. @see GeographicBoundary @see GeographicBoundaryType @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"country\":{\"$ref\":\"#/definitions/CountryDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/StateAddressLangDTO\"}}},\"StateAddressLangDTO\":{\"title\":\"StateAddressLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"CountryDTO\":{\"title\":\"CountryDTO\",\"description\":\"Ulke tanimlari @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/CountryLangDTO\"}}},\"CountryLangDTO\":{\"title\":\"CountryLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/DistrictDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "deleteDistrict" + }, + "id": { + "element": "string", + "content": "deleteDistrictUsingDELETE" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "id" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "204" + } + }, + "content": [ + { + "element": "copy", + "content": "No Content" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "category", + "meta": { + "title": { + "element": "string", + "content": "electronic-address-resource" + }, + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "resourceGroup" + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Electronic Address Resource" + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/adr/email/categories" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "List All Email Categories" + }, + "id": { + "element": "string", + "content": "getAllEmailCategories" + } + }, + "content": [ + { + "element": "copy", + "content": "Gets a list of all Email Categories." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "Successful response - returns an array of Email Categories." + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"},\"definitions\":{\"ContactMediumCategoryLOV\":{\"title\":\"ContactMediumCategoryLOV\",\"description\":\"Contact medium kategorileri. Bir kategori tipine ait veriyi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Category Name\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/ContactMediumCategoryLOV" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "category", + "meta": { + "title": { + "element": "string", + "content": "postal-address-resource" + }, + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "resourceGroup" + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Postal Address Resource" + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/adr/postal-address/categories" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "List All Postal Address Categories" + }, + "id": { + "element": "string", + "content": "getAllPostalAddressCategories" + } + }, + "content": [ + { + "element": "copy", + "content": "Gets a list of all Postal Address Categories" + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "Successful response - returns an array of Postal Address Categories" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"},\"definitions\":{\"ContactMediumCategoryLOV\":{\"title\":\"ContactMediumCategoryLOV\",\"description\":\"Contact medium kategorileri. Bir kategori tipine ait veriyi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Category Name\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/ContactMediumCategoryLOV" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "category", + "meta": { + "title": { + "element": "string", + "content": "state-address-resource" + }, + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "resourceGroup" + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "State Address Resource" + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/adr/state-addresses" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getAllStateAddresses" + }, + "id": { + "element": "string", + "content": "getAllStateAddressesUsingGET" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/adr/state-addresses{?countryId%2eequals,countryId%2egreaterOrEqualThan,countryId%2egreaterThan,countryId%2ein*,countryId%2elessOrEqualThan,countryId%2elessThan,countryId%2especified,id%2eequals,id%2egreaterOrEqualThan,id%2egreaterThan,id%2ein*,id%2elessOrEqualThan,id%2elessThan,id%2especified,name%2econtains,name%2eequals,name%2ein*,name%2especified,page,size,sort*,translationId%2eequals,translationId%2egreaterOrEqualThan,translationId%2egreaterThan,translationId%2ein*,translationId%2elessOrEqualThan,translationId%2elessThan,translationId%2especified}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "countryId.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "countryId.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "countryId.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "countryId.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "countryId.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "countryId.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "countryId.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Page number of the requested page" + } + }, + "content": { + "key": { + "element": "string", + "content": "page" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Size of a page" + } + }, + "content": { + "key": { + "element": "string", + "content": "size" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported." + } + }, + "content": { + "key": { + "element": "string", + "content": "sort" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.specified" + }, + "value": { + "element": "boolean" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/StateAddressDTO\"},\"definitions\":{\"StateAddressDTO\":{\"title\":\"StateAddressDTO\",\"description\":\"State - Eyalet bilgilerinin tanimlarinin yapildigi objedir. view - goruntu objesidir. @see GeographicBoundary @see GeographicBoundaryType @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"country\":{\"$ref\":\"#/definitions/CountryDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/StateAddressLangDTO\"}}},\"StateAddressLangDTO\":{\"title\":\"StateAddressLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"LanguageCodeDTO\":{\"title\":\"LanguageCodeDTO\",\"description\":\"Programin destekledigi dillerin kodlarini icerir Languages codes are ISO_639-1 codes, see http: Codes for the Representation of Names of Languages Codes arranged alphabetically by alpha-3/ISO 639-2 Code Note: ISO 639-2 is the alpha-3 code in Codes for the representation of names of languages-- Part 2. There are 21 languages that have alternative codes for bibliographic or terminology purposes. In those cases, each is listed separately and they are designated as \\\"B\\\" (bibliographic) or \\\"T\\\" (terminology). In all other cases there is only one ISO 639-2 code. Multiple codes assigned to the same language are to be considered synonyms. ISO 639-1 is the alpha-2 code. @author Aurora Developer team.\",\"required\":[\"englishName\",\"iso6392Code\",\"name\"],\"type\":\"object\",\"properties\":{\"attributes\":{\"description\":\"organizasyon tipinin ek alanları.\",\"type\":\"object\",\"additionalProperties\":{\"type\":\"string\"}},\"code\":{\"description\":\"gobal dil kodu. tr, en, fr vb.. ISO 639-1 Code \\\"https:\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"englishName\":{\"description\":\"Dilin ingilizce ismi. kullanim kolayligi icin konulmustur.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"icon\":{\"description\":\"Dil icin icon bilgisi\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"iso6392Code\":{\"description\":\"ISO 639-2 dil kodlari. tur, eng vb.. ISO 639-2 Code \\\"https:\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"dilin original ismi. ENGLISH, TURKCE VS...\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}},\"CountryDTO\":{\"title\":\"CountryDTO\",\"description\":\"Ulke tanimlari @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/CountryLangDTO\"}}},\"CountryLangDTO\":{\"title\":\"CountryLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/StateAddressDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "updateStateAddress" + }, + "id": { + "element": "string", + "content": "updateStateAddressUsingPUT" + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"country\": {\n \"createdBy\": \"cillum pariatur\",\n \"createdDate\": \"1998-08-15T23:33:36.096Z\",\n \"id\": 73297237,\n \"lastModifiedBy\": \"non\",\n \"lastModifiedDate\": \"1943-08-23T15:50:41.895Z\",\n \"translation\": {\n \"name\": \"culpa esse aliqu\",\n \"createdBy\": \"quis Excep\",\n \"createdDate\": \"2002-08-02T00:52:44.205Z\",\n \"defaultLang\": false,\n \"description\": \"cupidatat dolore Ut elit incididunt\",\n \"id\": 44477414,\n \"lang\": {\n \"englishName\": \"cupidatat ea\",\n \"iso6392Code\": \"Excepteur dolor\",\n \"name\": \"sed commodo sunt non ut\",\n \"attributes\": {},\n \"code\": \"i\",\n \"createdBy\": \"veniam elit\",\n \"createdDate\": \"1954-02-25T23:57:19.748Z\",\n \"description\": \"aliqua\",\n \"icon\": \"Lorem\",\n \"id\": 23477544,\n \"lastModifiedBy\": \"dolore occaecat velit dolore irure\",\n \"lastModifiedDate\": \"1949-04-16T06:33:00.070Z\",\n \"orderPriority\": -54316915,\n \"status\": false\n },\n \"lastModifiedBy\": \"nisi\",\n \"lastModifiedDate\": \"1970-02-04T18:14:15.343Z\",\n \"ownerId\": -33467169\n }\n },\n \"createdBy\": \"ipsum \",\n \"createdDate\": \"1986-11-08T17:34:51.675Z\",\n \"id\": 91386984,\n \"lastModifiedBy\": \"sint\",\n \"lastModifiedDate\": \"1963-03-03T01:53:48.669Z\",\n \"translation\": {\n \"name\": \"est do ut in ea\",\n \"createdBy\": \"labo\",\n \"createdDate\": \"2009-07-17T01:03:47.449Z\",\n \"defaultLang\": true,\n \"description\": \"sit\",\n \"id\": 97533118,\n \"lang\": {\n \"englishName\": \"sed \",\n \"iso6392Code\": \"eu\",\n \"name\": \"tempor in enim\",\n \"attributes\": {},\n \"code\": \"Excepteur pariatu\",\n \"createdBy\": \"tempor occaecat officia labore dolore\",\n \"createdDate\": \"2002-06-09T10:46:24.022Z\",\n \"description\": \"exercitation fugiat consequat dolore\",\n \"icon\": \"eiusmod nostrud sed dolor ut\",\n \"id\": 24550289,\n \"lastModifiedBy\": \"nisi\",\n \"lastModifiedDate\": \"1994-04-14T13:07:52.322Z\",\n \"orderPriority\": 848297,\n \"status\": true\n },\n \"lastModifiedBy\": \"dolor culpa pariatur sed aute\",\n \"lastModifiedDate\": \"1988-07-18T08:52:29.165Z\",\n \"ownerId\": -7162174\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/StateAddressDTO\"}],\"definitions\":{\"StateAddressDTO\":{\"title\":\"StateAddressDTO\",\"description\":\"State - Eyalet bilgilerinin tanimlarinin yapildigi objedir. view - goruntu objesidir. @see GeographicBoundary @see GeographicBoundaryType @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"country\":{\"$ref\":\"#/definitions/CountryDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/StateAddressLangDTO\"}}},\"StateAddressLangDTO\":{\"title\":\"StateAddressLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"LanguageCodeDTO\":{\"title\":\"LanguageCodeDTO\",\"description\":\"Programin destekledigi dillerin kodlarini icerir Languages codes are ISO_639-1 codes, see http: Codes for the Representation of Names of Languages Codes arranged alphabetically by alpha-3/ISO 639-2 Code Note: ISO 639-2 is the alpha-3 code in Codes for the representation of names of languages-- Part 2. There are 21 languages that have alternative codes for bibliographic or terminology purposes. In those cases, each is listed separately and they are designated as \\\"B\\\" (bibliographic) or \\\"T\\\" (terminology). In all other cases there is only one ISO 639-2 code. Multiple codes assigned to the same language are to be considered synonyms. ISO 639-1 is the alpha-2 code. @author Aurora Developer team.\",\"required\":[\"englishName\",\"iso6392Code\",\"name\"],\"type\":\"object\",\"properties\":{\"attributes\":{\"description\":\"organizasyon tipinin ek alanları.\",\"type\":\"object\",\"additionalProperties\":{\"type\":\"string\"}},\"code\":{\"description\":\"gobal dil kodu. tr, en, fr vb.. ISO 639-1 Code \\\"https:\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"englishName\":{\"description\":\"Dilin ingilizce ismi. kullanim kolayligi icin konulmustur.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"icon\":{\"description\":\"Dil icin icon bilgisi\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"iso6392Code\":{\"description\":\"ISO 639-2 dil kodlari. tur, eng vb.. ISO 639-2 Code \\\"https:\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"dilin original ismi. ENGLISH, TURKCE VS...\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}},\"CountryDTO\":{\"title\":\"CountryDTO\",\"description\":\"Ulke tanimlari @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/CountryLangDTO\"}}},\"CountryLangDTO\":{\"title\":\"CountryLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/StateAddressDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/StateAddressDTO\"}],\"definitions\":{\"StateAddressDTO\":{\"title\":\"StateAddressDTO\",\"description\":\"State - Eyalet bilgilerinin tanimlarinin yapildigi objedir. view - goruntu objesidir. @see GeographicBoundary @see GeographicBoundaryType @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"country\":{\"$ref\":\"#/definitions/CountryDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/StateAddressLangDTO\"}}},\"StateAddressLangDTO\":{\"title\":\"StateAddressLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"LanguageCodeDTO\":{\"title\":\"LanguageCodeDTO\",\"description\":\"Programin destekledigi dillerin kodlarini icerir Languages codes are ISO_639-1 codes, see http: Codes for the Representation of Names of Languages Codes arranged alphabetically by alpha-3/ISO 639-2 Code Note: ISO 639-2 is the alpha-3 code in Codes for the representation of names of languages-- Part 2. There are 21 languages that have alternative codes for bibliographic or terminology purposes. In those cases, each is listed separately and they are designated as \\\"B\\\" (bibliographic) or \\\"T\\\" (terminology). In all other cases there is only one ISO 639-2 code. Multiple codes assigned to the same language are to be considered synonyms. ISO 639-1 is the alpha-2 code. @author Aurora Developer team.\",\"required\":[\"englishName\",\"iso6392Code\",\"name\"],\"type\":\"object\",\"properties\":{\"attributes\":{\"description\":\"organizasyon tipinin ek alanları.\",\"type\":\"object\",\"additionalProperties\":{\"type\":\"string\"}},\"code\":{\"description\":\"gobal dil kodu. tr, en, fr vb.. ISO 639-1 Code \\\"https:\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"englishName\":{\"description\":\"Dilin ingilizce ismi. kullanim kolayligi icin konulmustur.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"icon\":{\"description\":\"Dil icin icon bilgisi\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"iso6392Code\":{\"description\":\"ISO 639-2 dil kodlari. tur, eng vb.. ISO 639-2 Code \\\"https:\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"dilin original ismi. ENGLISH, TURKCE VS...\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}},\"CountryDTO\":{\"title\":\"CountryDTO\",\"description\":\"Ulke tanimlari @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/CountryLangDTO\"}}},\"CountryLangDTO\":{\"title\":\"CountryLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/StateAddressDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"country\": {\n \"createdBy\": \"esse minim\",\n \"createdDate\": \"1992-10-08T03:50:16.908Z\",\n \"id\": -93410100,\n \"lastModifiedBy\": \"culpa id voluptate\",\n \"lastModifiedDate\": \"2019-12-15T04:10:28.424Z\",\n \"translation\": {\n \"name\": \"reprehende\",\n \"createdBy\": \"eiusmod laboris\",\n \"createdDate\": \"2016-09-18T11:15:53.236Z\",\n \"defaultLang\": false,\n \"description\": \"tempor nostrud in\",\n \"id\": -79691598,\n \"lang\": {\n \"englishName\": \"quis elit Excepteur ut in\",\n \"iso6392Code\": \"ullamco\",\n \"name\": \"minim do eiusmod in\",\n \"attributes\": {},\n \"code\": \"\",\n \"createdBy\": \"quis aliqua enim\",\n \"createdDate\": \"2003-08-26T04:07:21.205Z\",\n \"description\": \"et sunt\",\n \"icon\": \"laborum sed\",\n \"id\": -39443197,\n \"lastModifiedBy\": \"nisi esse mollit\",\n \"lastModifiedDate\": \"2012-07-18T17:03:35.268Z\",\n \"orderPriority\": -51020595,\n \"status\": false\n },\n \"lastModifiedBy\": \"commodo irure\",\n \"lastModifiedDate\": \"1971-07-31T06:28:14.911Z\",\n \"ownerId\": 75357352\n }\n },\n \"createdBy\": \"culpa sunt\",\n \"createdDate\": \"2007-01-17T14:26:02.858Z\",\n \"id\": 35025211,\n \"lastModifiedBy\": \"sunt\",\n \"lastModifiedDate\": \"1944-06-10T02:14:27.871Z\",\n \"translation\": {\n \"name\": \"adipisicing\",\n \"createdBy\": \"veniam anim\",\n \"createdDate\": \"1944-08-26T19:09:09.683Z\",\n \"defaultLang\": true,\n \"description\": \"ex cillum ut veniam\",\n \"id\": 87427086,\n \"lang\": {\n \"englishName\": \"non do nulla\",\n \"iso6392Code\": \"elit\",\n \"name\": \"in minim\",\n \"attributes\": {},\n \"code\": \"ut minim\",\n \"createdBy\": \"id culpa\",\n \"createdDate\": \"1953-10-15T04:04:55.272Z\",\n \"description\": \"dolore nisi anim elit\",\n \"icon\": \"velit laboris pariatur Ut\",\n \"id\": 6827754,\n \"lastModifiedBy\": \"exercitation id nostrud\",\n \"lastModifiedDate\": \"1956-03-29T03:06:28.953Z\",\n \"orderPriority\": -51167260,\n \"status\": false\n },\n \"lastModifiedBy\": \"culpa dolor\",\n \"lastModifiedDate\": \"2004-05-30T16:06:08.773Z\",\n \"ownerId\": -73393776\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/StateAddressDTO\"}],\"definitions\":{\"StateAddressDTO\":{\"title\":\"StateAddressDTO\",\"description\":\"State - Eyalet bilgilerinin tanimlarinin yapildigi objedir. view - goruntu objesidir. @see GeographicBoundary @see GeographicBoundaryType @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"country\":{\"$ref\":\"#/definitions/CountryDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/StateAddressLangDTO\"}}},\"StateAddressLangDTO\":{\"title\":\"StateAddressLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"LanguageCodeDTO\":{\"title\":\"LanguageCodeDTO\",\"description\":\"Programin destekledigi dillerin kodlarini icerir Languages codes are ISO_639-1 codes, see http: Codes for the Representation of Names of Languages Codes arranged alphabetically by alpha-3/ISO 639-2 Code Note: ISO 639-2 is the alpha-3 code in Codes for the representation of names of languages-- Part 2. There are 21 languages that have alternative codes for bibliographic or terminology purposes. In those cases, each is listed separately and they are designated as \\\"B\\\" (bibliographic) or \\\"T\\\" (terminology). In all other cases there is only one ISO 639-2 code. Multiple codes assigned to the same language are to be considered synonyms. ISO 639-1 is the alpha-2 code. @author Aurora Developer team.\",\"required\":[\"englishName\",\"iso6392Code\",\"name\"],\"type\":\"object\",\"properties\":{\"attributes\":{\"description\":\"organizasyon tipinin ek alanları.\",\"type\":\"object\",\"additionalProperties\":{\"type\":\"string\"}},\"code\":{\"description\":\"gobal dil kodu. tr, en, fr vb.. ISO 639-1 Code \\\"https:\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"englishName\":{\"description\":\"Dilin ingilizce ismi. kullanim kolayligi icin konulmustur.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"icon\":{\"description\":\"Dil icin icon bilgisi\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"iso6392Code\":{\"description\":\"ISO 639-2 dil kodlari. tur, eng vb.. ISO 639-2 Code \\\"https:\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"dilin original ismi. ENGLISH, TURKCE VS...\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}},\"CountryDTO\":{\"title\":\"CountryDTO\",\"description\":\"Ulke tanimlari @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/CountryLangDTO\"}}},\"CountryLangDTO\":{\"title\":\"CountryLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/StateAddressDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"country\": {\n \"createdBy\": \"anim Lorem\",\n \"createdDate\": \"1979-04-26T06:48:49.104Z\",\n \"id\": 76552101,\n \"lastModifiedBy\": \"incididunt Excepteur\",\n \"lastModifiedDate\": \"1962-08-02T23:18:23.535Z\",\n \"translation\": {\n \"name\": \"fugiat ut Duis eiusmod nulla\",\n \"createdBy\": \"dolor non\",\n \"createdDate\": \"1956-01-30T18:06:13.185Z\",\n \"defaultLang\": false,\n \"description\": \"commodo\",\n \"id\": -72822639,\n \"lang\": {\n \"englishName\": \"incididunt nulla laboris ea\",\n \"iso6392Code\": \"qui dolor Lorem anim\",\n \"name\": \"cupidatat Excepteur in\",\n \"attributes\": {},\n \"code\": \"proident in esse\",\n \"createdBy\": \"consectetur incididunt ex\",\n \"createdDate\": \"1991-04-08T04:37:08.282Z\",\n \"description\": \"incididunt et dolore occaecat fugiat\",\n \"icon\": \"voluptate\",\n \"id\": 73367869,\n \"lastModifiedBy\": \"anim quis aliquip\",\n \"lastModifiedDate\": \"1979-07-27T08:11:22.538Z\",\n \"orderPriority\": -11271295,\n \"status\": false\n },\n \"lastModifiedBy\": \"ut officia et\",\n \"lastModifiedDate\": \"2007-01-18T07:40:25.296Z\",\n \"ownerId\": -1736613\n }\n },\n \"createdBy\": \"incididunt\",\n \"createdDate\": \"2012-05-01T01:16:51.855Z\",\n \"id\": 70341373,\n \"lastModifiedBy\": \"adipisicing ut dolor\",\n \"lastModifiedDate\": \"2016-02-07T19:48:55.068Z\",\n \"translation\": {\n \"name\": \"consectetur incididunt ut\",\n \"createdBy\": \"Lorem officia id\",\n \"createdDate\": \"1984-11-08T01:54:10.026Z\",\n \"defaultLang\": false,\n \"description\": \"laboris\",\n \"id\": 62435320,\n \"lang\": {\n \"englishName\": \"labore id sed dolore mollit\",\n \"iso6392Code\": \"irure non\",\n \"name\": \"id v\",\n \"attributes\": {},\n \"code\": \"\",\n \"createdBy\": \"ex\",\n \"createdDate\": \"1956-07-08T14:55:07.434Z\",\n \"description\": \"ut culpa in reprehenderit\",\n \"icon\": \"veniam\",\n \"id\": 11962565,\n \"lastModifiedBy\": \"mollit sunt esse ullamco officia\",\n \"lastModifiedDate\": \"1999-01-19T21:10:47.865Z\",\n \"orderPriority\": -42498759,\n \"status\": false\n },\n \"lastModifiedBy\": \"ad amet laborum sunt ullamco\",\n \"lastModifiedDate\": \"1991-09-27T20:43:45.830Z\",\n \"ownerId\": 4927730\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/StateAddressDTO\"}],\"definitions\":{\"StateAddressDTO\":{\"title\":\"StateAddressDTO\",\"description\":\"State - Eyalet bilgilerinin tanimlarinin yapildigi objedir. view - goruntu objesidir. @see GeographicBoundary @see GeographicBoundaryType @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"country\":{\"$ref\":\"#/definitions/CountryDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/StateAddressLangDTO\"}}},\"StateAddressLangDTO\":{\"title\":\"StateAddressLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"LanguageCodeDTO\":{\"title\":\"LanguageCodeDTO\",\"description\":\"Programin destekledigi dillerin kodlarini icerir Languages codes are ISO_639-1 codes, see http: Codes for the Representation of Names of Languages Codes arranged alphabetically by alpha-3/ISO 639-2 Code Note: ISO 639-2 is the alpha-3 code in Codes for the representation of names of languages-- Part 2. There are 21 languages that have alternative codes for bibliographic or terminology purposes. In those cases, each is listed separately and they are designated as \\\"B\\\" (bibliographic) or \\\"T\\\" (terminology). In all other cases there is only one ISO 639-2 code. Multiple codes assigned to the same language are to be considered synonyms. ISO 639-1 is the alpha-2 code. @author Aurora Developer team.\",\"required\":[\"englishName\",\"iso6392Code\",\"name\"],\"type\":\"object\",\"properties\":{\"attributes\":{\"description\":\"organizasyon tipinin ek alanları.\",\"type\":\"object\",\"additionalProperties\":{\"type\":\"string\"}},\"code\":{\"description\":\"gobal dil kodu. tr, en, fr vb.. ISO 639-1 Code \\\"https:\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"englishName\":{\"description\":\"Dilin ingilizce ismi. kullanim kolayligi icin konulmustur.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"icon\":{\"description\":\"Dil icin icon bilgisi\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"iso6392Code\":{\"description\":\"ISO 639-2 dil kodlari. tur, eng vb.. ISO 639-2 Code \\\"https:\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"dilin original ismi. ENGLISH, TURKCE VS...\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}},\"CountryDTO\":{\"title\":\"CountryDTO\",\"description\":\"Ulke tanimlari @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/CountryLangDTO\"}}},\"CountryLangDTO\":{\"title\":\"CountryLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/StateAddressDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"country\": {\n \"createdBy\": \"laborum\",\n \"createdDate\": \"1983-02-08T16:07:13.352Z\",\n \"id\": -65984154,\n \"lastModifiedBy\": \"amet minim reprehenderit\",\n \"lastModifiedDate\": \"1966-11-24T14:15:08.336Z\",\n \"translation\": {\n \"name\": \"nulla enim labore commodo\",\n \"createdBy\": \"tempor qui labore\",\n \"createdDate\": \"1976-07-14T21:23:55.092Z\",\n \"defaultLang\": true,\n \"description\": \"voluptate dolore\",\n \"id\": 47996452,\n \"lang\": {\n \"englishName\": \"qui \",\n \"iso6392Code\": \"nisi eiusmod in ullamco anim\",\n \"name\": \"irure\",\n \"attributes\": {},\n \"code\": \"exercitation ipsum laboris ut\",\n \"createdBy\": \"Ut elit adipisi\",\n \"createdDate\": \"1982-08-23T18:25:51.476Z\",\n \"description\": \"eu \",\n \"icon\": \"mollit\",\n \"id\": 130585,\n \"lastModifiedBy\": \"qui labore\",\n \"lastModifiedDate\": \"1949-10-15T12:27:50.857Z\",\n \"orderPriority\": -51574003,\n \"status\": false\n },\n \"lastModifiedBy\": \"sit exercitation Duis Lorem veniam\",\n \"lastModifiedDate\": \"1940-07-09T05:39:23.227Z\",\n \"ownerId\": 1080866\n }\n },\n \"createdBy\": \"dolore tempor eu\",\n \"createdDate\": \"1961-05-25T16:50:44.188Z\",\n \"id\": 73954760,\n \"lastModifiedBy\": \"Lorem\",\n \"lastModifiedDate\": \"1962-03-22T17:34:06.859Z\",\n \"translation\": {\n \"name\": \"voluptate proiden\",\n \"createdBy\": \"deserunt cillum\",\n \"createdDate\": \"1963-01-15T10:42:09.424Z\",\n \"defaultLang\": false,\n \"description\": \"consequat eiusmod in in\",\n \"id\": 23371368,\n \"lang\": {\n \"englishName\": \"voluptate Duis sint in\",\n \"iso6392Code\": \"mollit sunt\",\n \"name\": \"et commodo\",\n \"attributes\": {},\n \"code\": \"laboris\",\n \"createdBy\": \"pariatur consectetur Ut\",\n \"createdDate\": \"1943-11-03T11:26:24.470Z\",\n \"description\": \"sint\",\n \"icon\": \"quis\",\n \"id\": -94694731,\n \"lastModifiedBy\": \"esse dolore sit ut ut\",\n \"lastModifiedDate\": \"1950-06-10T09:47:37.806Z\",\n \"orderPriority\": -47782822,\n \"status\": true\n },\n \"lastModifiedBy\": \"ut tempor in sint co\",\n \"lastModifiedDate\": \"2007-07-04T13:43:38.263Z\",\n \"ownerId\": -48436684\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/StateAddressDTO\"}],\"definitions\":{\"StateAddressDTO\":{\"title\":\"StateAddressDTO\",\"description\":\"State - Eyalet bilgilerinin tanimlarinin yapildigi objedir. view - goruntu objesidir. @see GeographicBoundary @see GeographicBoundaryType @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"country\":{\"$ref\":\"#/definitions/CountryDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/StateAddressLangDTO\"}}},\"StateAddressLangDTO\":{\"title\":\"StateAddressLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"LanguageCodeDTO\":{\"title\":\"LanguageCodeDTO\",\"description\":\"Programin destekledigi dillerin kodlarini icerir Languages codes are ISO_639-1 codes, see http: Codes for the Representation of Names of Languages Codes arranged alphabetically by alpha-3/ISO 639-2 Code Note: ISO 639-2 is the alpha-3 code in Codes for the representation of names of languages-- Part 2. There are 21 languages that have alternative codes for bibliographic or terminology purposes. In those cases, each is listed separately and they are designated as \\\"B\\\" (bibliographic) or \\\"T\\\" (terminology). In all other cases there is only one ISO 639-2 code. Multiple codes assigned to the same language are to be considered synonyms. ISO 639-1 is the alpha-2 code. @author Aurora Developer team.\",\"required\":[\"englishName\",\"iso6392Code\",\"name\"],\"type\":\"object\",\"properties\":{\"attributes\":{\"description\":\"organizasyon tipinin ek alanları.\",\"type\":\"object\",\"additionalProperties\":{\"type\":\"string\"}},\"code\":{\"description\":\"gobal dil kodu. tr, en, fr vb.. ISO 639-1 Code \\\"https:\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"englishName\":{\"description\":\"Dilin ingilizce ismi. kullanim kolayligi icin konulmustur.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"icon\":{\"description\":\"Dil icin icon bilgisi\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"iso6392Code\":{\"description\":\"ISO 639-2 dil kodlari. tur, eng vb.. ISO 639-2 Code \\\"https:\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"dilin original ismi. ENGLISH, TURKCE VS...\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}},\"CountryDTO\":{\"title\":\"CountryDTO\",\"description\":\"Ulke tanimlari @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/CountryLangDTO\"}}},\"CountryLangDTO\":{\"title\":\"CountryLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/StateAddressDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"country\": {\n \"createdBy\": \"ipsum enim\",\n \"createdDate\": \"1944-07-09T16:52:38.221Z\",\n \"id\": 55917943,\n \"lastModifiedBy\": \"magna\",\n \"lastModifiedDate\": \"1958-03-20T02:34:27.230Z\",\n \"translation\": {\n \"name\": \"dolore\",\n \"createdBy\": \"aliqua do incididunt\",\n \"createdDate\": \"1978-03-17T07:06:40.588Z\",\n \"defaultLang\": false,\n \"description\": \"non eu\",\n \"id\": 5991156,\n \"lang\": {\n \"englishName\": \"voluptate laboris \",\n \"iso6392Code\": \"incididunt commodo in\",\n \"name\": \"pariatur\",\n \"attributes\": {},\n \"code\": \"sunt occaecat sit Ut \",\n \"createdBy\": \"Lorem\",\n \"createdDate\": \"2002-07-02T12:09:24.213Z\",\n \"description\": \"ex veniam do\",\n \"icon\": \"voluptate ea officia eu elit\",\n \"id\": 10538911,\n \"lastModifiedBy\": \"nostrud aute laboris elit\",\n \"lastModifiedDate\": \"1995-09-21T21:36:54.895Z\",\n \"orderPriority\": -53454077,\n \"status\": false\n },\n \"lastModifiedBy\": \"\",\n \"lastModifiedDate\": \"2003-05-25T11:30:40.949Z\",\n \"ownerId\": -14172377\n }\n },\n \"createdBy\": \"ullamco\",\n \"createdDate\": \"1975-03-04T23:24:17.159Z\",\n \"id\": 17244825,\n \"lastModifiedBy\": \"ullamco\",\n \"lastModifiedDate\": \"1975-04-06T04:22:25.928Z\",\n \"translation\": {\n \"name\": \"laborum ullamco reprehenderit amet incid\",\n \"createdBy\": \"est Ut sit Excepteur\",\n \"createdDate\": \"1944-12-31T22:38:38.708Z\",\n \"defaultLang\": false,\n \"description\": \"qui labore\",\n \"id\": 32735390,\n \"lang\": {\n \"englishName\": \"aliquip\",\n \"iso6392Code\": \"reprehenderit\",\n \"name\": \"nostrud exercitation\",\n \"attributes\": {},\n \"code\": \"et in anim culpa\",\n \"createdBy\": \"minim ullamco cillum reprehenderit\",\n \"createdDate\": \"1948-02-24T06:22:54.477Z\",\n \"description\": \"quis\",\n \"icon\": \"ut velit elit\",\n \"id\": 37962000,\n \"lastModifiedBy\": \"anim ipsum in Duis\",\n \"lastModifiedDate\": \"1993-02-18T02:40:59.924Z\",\n \"orderPriority\": -92637802,\n \"status\": false\n },\n \"lastModifiedBy\": \"ipsum adipisicing cillum ut fugiat\",\n \"lastModifiedDate\": \"2010-10-18T07:24:49.385Z\",\n \"ownerId\": -2947114\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/StateAddressDTO\"}],\"definitions\":{\"StateAddressDTO\":{\"title\":\"StateAddressDTO\",\"description\":\"State - Eyalet bilgilerinin tanimlarinin yapildigi objedir. view - goruntu objesidir. @see GeographicBoundary @see GeographicBoundaryType @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"country\":{\"$ref\":\"#/definitions/CountryDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/StateAddressLangDTO\"}}},\"StateAddressLangDTO\":{\"title\":\"StateAddressLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"LanguageCodeDTO\":{\"title\":\"LanguageCodeDTO\",\"description\":\"Programin destekledigi dillerin kodlarini icerir Languages codes are ISO_639-1 codes, see http: Codes for the Representation of Names of Languages Codes arranged alphabetically by alpha-3/ISO 639-2 Code Note: ISO 639-2 is the alpha-3 code in Codes for the representation of names of languages-- Part 2. There are 21 languages that have alternative codes for bibliographic or terminology purposes. In those cases, each is listed separately and they are designated as \\\"B\\\" (bibliographic) or \\\"T\\\" (terminology). In all other cases there is only one ISO 639-2 code. Multiple codes assigned to the same language are to be considered synonyms. ISO 639-1 is the alpha-2 code. @author Aurora Developer team.\",\"required\":[\"englishName\",\"iso6392Code\",\"name\"],\"type\":\"object\",\"properties\":{\"attributes\":{\"description\":\"organizasyon tipinin ek alanları.\",\"type\":\"object\",\"additionalProperties\":{\"type\":\"string\"}},\"code\":{\"description\":\"gobal dil kodu. tr, en, fr vb.. ISO 639-1 Code \\\"https:\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"englishName\":{\"description\":\"Dilin ingilizce ismi. kullanim kolayligi icin konulmustur.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"icon\":{\"description\":\"Dil icin icon bilgisi\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"iso6392Code\":{\"description\":\"ISO 639-2 dil kodlari. tur, eng vb.. ISO 639-2 Code \\\"https:\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"dilin original ismi. ENGLISH, TURKCE VS...\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}},\"CountryDTO\":{\"title\":\"CountryDTO\",\"description\":\"Ulke tanimlari @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/CountryLangDTO\"}}},\"CountryLangDTO\":{\"title\":\"CountryLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/StateAddressDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "createStateAddress" + }, + "id": { + "element": "string", + "content": "createStateAddressUsingPOST" + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"country\": {\n \"createdBy\": \"Ut enim in dolor\",\n \"createdDate\": \"2005-12-28T23:58:16.929Z\",\n \"id\": -34591429,\n \"lastModifiedBy\": \"dolor tempor consectet\",\n \"lastModifiedDate\": \"2014-06-25T16:10:42.870Z\",\n \"translation\": {\n \"name\": \"occaecat i\",\n \"createdBy\": \"non dolor anim occaecat in\",\n \"createdDate\": \"1954-10-24T20:33:27.410Z\",\n \"defaultLang\": true,\n \"description\": \"dolor d\",\n \"id\": -81904653,\n \"lang\": {\n \"englishName\": \"ullamco sed\",\n \"iso6392Code\": \"qui\",\n \"name\": \"aliquip irure et aliqua sunt\",\n \"attributes\": {},\n \"code\": \"deserunt non occaecat\",\n \"createdBy\": \"Excepteur mollit\",\n \"createdDate\": \"1985-04-23T15:16:14.746Z\",\n \"description\": \"aliqua sunt enim ut Duis\",\n \"icon\": \"Excepteur veniam reprehenderit ad sint\",\n \"id\": -88796681,\n \"lastModifiedBy\": \"fugiat\",\n \"lastModifiedDate\": \"1954-10-25T14:17:33.157Z\",\n \"orderPriority\": -64328049,\n \"status\": true\n },\n \"lastModifiedBy\": \"labore\",\n \"lastModifiedDate\": \"1982-12-12T08:01:05.448Z\",\n \"ownerId\": -78647304\n }\n },\n \"createdBy\": \"esse cillum qui sit\",\n \"createdDate\": \"1973-05-31T22:33:44.548Z\",\n \"id\": 10640442,\n \"lastModifiedBy\": \"commodo est ut aliquip\",\n \"lastModifiedDate\": \"1944-11-14T04:22:30.703Z\",\n \"translation\": {\n \"name\": \"Lorem ex nostru\",\n \"createdBy\": \"non pariatur\",\n \"createdDate\": \"1942-09-22T04:07:20.277Z\",\n \"defaultLang\": true,\n \"description\": \"Ut est\",\n \"id\": 80845603,\n \"lang\": {\n \"englishName\": \"dolor anim tempor laboris\",\n \"iso6392Code\": \"pariatur ullamco est dolor Excepteur\",\n \"name\": \"laboris culpa nostrud consectetur\",\n \"attributes\": {},\n \"code\": \"nulla\",\n \"createdBy\": \"irure occaecat id\",\n \"createdDate\": \"2015-08-10T23:53:56.904Z\",\n \"description\": \"Ut adipisicing\",\n \"icon\": \"ex exercitation aliqua dolor amet\",\n \"id\": 63060623,\n \"lastModifiedBy\": \"eu qui est in\",\n \"lastModifiedDate\": \"2019-09-23T07:17:13.746Z\",\n \"orderPriority\": -34937709,\n \"status\": true\n },\n \"lastModifiedBy\": \"nostrud mollit deserunt incididunt aliquip\",\n \"lastModifiedDate\": \"1998-02-07T08:11:59.079Z\",\n \"ownerId\": -92734809\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/StateAddressDTO\"}],\"definitions\":{\"StateAddressDTO\":{\"title\":\"StateAddressDTO\",\"description\":\"State - Eyalet bilgilerinin tanimlarinin yapildigi objedir. view - goruntu objesidir. @see GeographicBoundary @see GeographicBoundaryType @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"country\":{\"$ref\":\"#/definitions/CountryDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/StateAddressLangDTO\"}}},\"StateAddressLangDTO\":{\"title\":\"StateAddressLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"LanguageCodeDTO\":{\"title\":\"LanguageCodeDTO\",\"description\":\"Programin destekledigi dillerin kodlarini icerir Languages codes are ISO_639-1 codes, see http: Codes for the Representation of Names of Languages Codes arranged alphabetically by alpha-3/ISO 639-2 Code Note: ISO 639-2 is the alpha-3 code in Codes for the representation of names of languages-- Part 2. There are 21 languages that have alternative codes for bibliographic or terminology purposes. In those cases, each is listed separately and they are designated as \\\"B\\\" (bibliographic) or \\\"T\\\" (terminology). In all other cases there is only one ISO 639-2 code. Multiple codes assigned to the same language are to be considered synonyms. ISO 639-1 is the alpha-2 code. @author Aurora Developer team.\",\"required\":[\"englishName\",\"iso6392Code\",\"name\"],\"type\":\"object\",\"properties\":{\"attributes\":{\"description\":\"organizasyon tipinin ek alanları.\",\"type\":\"object\",\"additionalProperties\":{\"type\":\"string\"}},\"code\":{\"description\":\"gobal dil kodu. tr, en, fr vb.. ISO 639-1 Code \\\"https:\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"englishName\":{\"description\":\"Dilin ingilizce ismi. kullanim kolayligi icin konulmustur.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"icon\":{\"description\":\"Dil icin icon bilgisi\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"iso6392Code\":{\"description\":\"ISO 639-2 dil kodlari. tur, eng vb.. ISO 639-2 Code \\\"https:\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"dilin original ismi. ENGLISH, TURKCE VS...\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}},\"CountryDTO\":{\"title\":\"CountryDTO\",\"description\":\"Ulke tanimlari @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/CountryLangDTO\"}}},\"CountryLangDTO\":{\"title\":\"CountryLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/StateAddressDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/StateAddressDTO\"}],\"definitions\":{\"StateAddressDTO\":{\"title\":\"StateAddressDTO\",\"description\":\"State - Eyalet bilgilerinin tanimlarinin yapildigi objedir. view - goruntu objesidir. @see GeographicBoundary @see GeographicBoundaryType @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"country\":{\"$ref\":\"#/definitions/CountryDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/StateAddressLangDTO\"}}},\"StateAddressLangDTO\":{\"title\":\"StateAddressLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"LanguageCodeDTO\":{\"title\":\"LanguageCodeDTO\",\"description\":\"Programin destekledigi dillerin kodlarini icerir Languages codes are ISO_639-1 codes, see http: Codes for the Representation of Names of Languages Codes arranged alphabetically by alpha-3/ISO 639-2 Code Note: ISO 639-2 is the alpha-3 code in Codes for the representation of names of languages-- Part 2. There are 21 languages that have alternative codes for bibliographic or terminology purposes. In those cases, each is listed separately and they are designated as \\\"B\\\" (bibliographic) or \\\"T\\\" (terminology). In all other cases there is only one ISO 639-2 code. Multiple codes assigned to the same language are to be considered synonyms. ISO 639-1 is the alpha-2 code. @author Aurora Developer team.\",\"required\":[\"englishName\",\"iso6392Code\",\"name\"],\"type\":\"object\",\"properties\":{\"attributes\":{\"description\":\"organizasyon tipinin ek alanları.\",\"type\":\"object\",\"additionalProperties\":{\"type\":\"string\"}},\"code\":{\"description\":\"gobal dil kodu. tr, en, fr vb.. ISO 639-1 Code \\\"https:\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"englishName\":{\"description\":\"Dilin ingilizce ismi. kullanim kolayligi icin konulmustur.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"icon\":{\"description\":\"Dil icin icon bilgisi\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"iso6392Code\":{\"description\":\"ISO 639-2 dil kodlari. tur, eng vb.. ISO 639-2 Code \\\"https:\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"dilin original ismi. ENGLISH, TURKCE VS...\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}},\"CountryDTO\":{\"title\":\"CountryDTO\",\"description\":\"Ulke tanimlari @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/CountryLangDTO\"}}},\"CountryLangDTO\":{\"title\":\"CountryLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/StateAddressDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"country\": {\n \"createdBy\": \"laborum est fugiat et consectetur\",\n \"createdDate\": \"1970-11-20T22:36:07.269Z\",\n \"id\": -2440161,\n \"lastModifiedBy\": \"minim et laboris\",\n \"lastModifiedDate\": \"1972-09-06T08:15:00.829Z\",\n \"translation\": {\n \"name\": \"Ut ven\",\n \"createdBy\": \"minim ut consectetur\",\n \"createdDate\": \"1942-02-18T08:20:53.054Z\",\n \"defaultLang\": true,\n \"description\": \"pariatur\",\n \"id\": -75119449,\n \"lang\": {\n \"englishName\": \"nulla\",\n \"iso6392Code\": \"oc\",\n \"name\": \"in ipsum\",\n \"attributes\": {},\n \"code\": \"veniam\",\n \"createdBy\": \"consequat Lorem non cillum culpa\",\n \"createdDate\": \"1989-12-31T01:53:48.675Z\",\n \"description\": \"fugiat dolore exercitation culpa\",\n \"icon\": \"dolor Ut nostrud\",\n \"id\": 16625797,\n \"lastModifiedBy\": \"consectetur\",\n \"lastModifiedDate\": \"2008-01-31T23:10:57.053Z\",\n \"orderPriority\": -39129870,\n \"status\": true\n },\n \"lastModifiedBy\": \"officia incididunt\",\n \"lastModifiedDate\": \"2005-09-14T04:59:21.534Z\",\n \"ownerId\": -75338336\n }\n },\n \"createdBy\": \"culpa dolor eiusmod\",\n \"createdDate\": \"2010-12-07T02:13:32.807Z\",\n \"id\": -38885093,\n \"lastModifiedBy\": \"consequat deserunt Lorem laborum\",\n \"lastModifiedDate\": \"1986-07-23T02:35:07.822Z\",\n \"translation\": {\n \"name\": \"sed eu minim\",\n \"createdBy\": \"dolor aute\",\n \"createdDate\": \"1984-06-11T09:58:59.416Z\",\n \"defaultLang\": false,\n \"description\": \"mollit officia adipisicing\",\n \"id\": 39432672,\n \"lang\": {\n \"englishName\": \"amet ipsum cupidatat\",\n \"iso6392Code\": \"eu\",\n \"name\": \"in\",\n \"attributes\": {},\n \"code\": \"mollit magna pariatur s\",\n \"createdBy\": \"reprehenderit culpa\",\n \"createdDate\": \"1994-10-22T03:50:19.182Z\",\n \"description\": \"fugiat occaecat aliquip nulla sint\",\n \"icon\": \"labore fugiat\",\n \"id\": -5741385,\n \"lastModifiedBy\": \"sed adipisicing\",\n \"lastModifiedDate\": \"1986-10-04T18:17:26.479Z\",\n \"orderPriority\": -10548929,\n \"status\": false\n },\n \"lastModifiedBy\": \"ea deserunt in\",\n \"lastModifiedDate\": \"1943-05-16T16:24:57.620Z\",\n \"ownerId\": -42512347\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/StateAddressDTO\"}],\"definitions\":{\"StateAddressDTO\":{\"title\":\"StateAddressDTO\",\"description\":\"State - Eyalet bilgilerinin tanimlarinin yapildigi objedir. view - goruntu objesidir. @see GeographicBoundary @see GeographicBoundaryType @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"country\":{\"$ref\":\"#/definitions/CountryDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/StateAddressLangDTO\"}}},\"StateAddressLangDTO\":{\"title\":\"StateAddressLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"LanguageCodeDTO\":{\"title\":\"LanguageCodeDTO\",\"description\":\"Programin destekledigi dillerin kodlarini icerir Languages codes are ISO_639-1 codes, see http: Codes for the Representation of Names of Languages Codes arranged alphabetically by alpha-3/ISO 639-2 Code Note: ISO 639-2 is the alpha-3 code in Codes for the representation of names of languages-- Part 2. There are 21 languages that have alternative codes for bibliographic or terminology purposes. In those cases, each is listed separately and they are designated as \\\"B\\\" (bibliographic) or \\\"T\\\" (terminology). In all other cases there is only one ISO 639-2 code. Multiple codes assigned to the same language are to be considered synonyms. ISO 639-1 is the alpha-2 code. @author Aurora Developer team.\",\"required\":[\"englishName\",\"iso6392Code\",\"name\"],\"type\":\"object\",\"properties\":{\"attributes\":{\"description\":\"organizasyon tipinin ek alanları.\",\"type\":\"object\",\"additionalProperties\":{\"type\":\"string\"}},\"code\":{\"description\":\"gobal dil kodu. tr, en, fr vb.. ISO 639-1 Code \\\"https:\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"englishName\":{\"description\":\"Dilin ingilizce ismi. kullanim kolayligi icin konulmustur.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"icon\":{\"description\":\"Dil icin icon bilgisi\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"iso6392Code\":{\"description\":\"ISO 639-2 dil kodlari. tur, eng vb.. ISO 639-2 Code \\\"https:\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"dilin original ismi. ENGLISH, TURKCE VS...\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}},\"CountryDTO\":{\"title\":\"CountryDTO\",\"description\":\"Ulke tanimlari @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/CountryLangDTO\"}}},\"CountryLangDTO\":{\"title\":\"CountryLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/StateAddressDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"country\": {\n \"createdBy\": \"deserunt in\",\n \"createdDate\": \"2019-11-12T19:12:12.470Z\",\n \"id\": 62784494,\n \"lastModifiedBy\": \"ut Lorem ullamco Ut\",\n \"lastModifiedDate\": \"1971-04-02T20:20:15.463Z\",\n \"translation\": {\n \"name\": \"aliquip \",\n \"createdBy\": \"consequat laborum sunt et ex\",\n \"createdDate\": \"1943-05-27T03:18:13.611Z\",\n \"defaultLang\": true,\n \"description\": \"et qui irure veniam\",\n \"id\": 2790496,\n \"lang\": {\n \"englishName\": \"irure nostru\",\n \"iso6392Code\": \"in veniam\",\n \"name\": \"adipisicing tempor minim\",\n \"attributes\": {},\n \"code\": \"occaecat\",\n \"createdBy\": \"non aute tempor sit dolore\",\n \"createdDate\": \"2016-05-26T23:56:52.174Z\",\n \"description\": \"ullamco\",\n \"icon\": \"nulla ipsum sint\",\n \"id\": -61130796,\n \"lastModifiedBy\": \"adipisicing velit\",\n \"lastModifiedDate\": \"2002-04-07T03:59:10.420Z\",\n \"orderPriority\": -54515832,\n \"status\": true\n },\n \"lastModifiedBy\": \"nostrud\",\n \"lastModifiedDate\": \"1967-04-14T01:33:18.339Z\",\n \"ownerId\": -53850057\n }\n },\n \"createdBy\": \"Duis proident ipsum aliquip\",\n \"createdDate\": \"1957-03-29T15:40:40.780Z\",\n \"id\": 63869668,\n \"lastModifiedBy\": \"do in\",\n \"lastModifiedDate\": \"1962-03-27T14:50:23.031Z\",\n \"translation\": {\n \"name\": \"velit Duis\",\n \"createdBy\": \"nostrud\",\n \"createdDate\": \"2020-04-11T05:08:28.215Z\",\n \"defaultLang\": false,\n \"description\": \"Duis anim do\",\n \"id\": 1167510,\n \"lang\": {\n \"englishName\": \"Lorem veniam laboris\",\n \"iso6392Code\": \"cupidatat occaecat ex\",\n \"name\": \"nostrud tempor quis do cillum\",\n \"attributes\": {},\n \"code\": \"consequat ullamco exercitation\",\n \"createdBy\": \"cillum eu dolore magna\",\n \"createdDate\": \"2006-06-13T22:15:05.030Z\",\n \"description\": \"enim cupidatat\",\n \"icon\": \"ut pariatur proident\",\n \"id\": 69111646,\n \"lastModifiedBy\": \"cillum enim\",\n \"lastModifiedDate\": \"1997-09-15T12:27:09.145Z\",\n \"orderPriority\": -81651198,\n \"status\": true\n },\n \"lastModifiedBy\": \"laborum voluptate do velit\",\n \"lastModifiedDate\": \"1971-02-16T23:47:40.176Z\",\n \"ownerId\": -83713864\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/StateAddressDTO\"}],\"definitions\":{\"StateAddressDTO\":{\"title\":\"StateAddressDTO\",\"description\":\"State - Eyalet bilgilerinin tanimlarinin yapildigi objedir. view - goruntu objesidir. @see GeographicBoundary @see GeographicBoundaryType @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"country\":{\"$ref\":\"#/definitions/CountryDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/StateAddressLangDTO\"}}},\"StateAddressLangDTO\":{\"title\":\"StateAddressLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"LanguageCodeDTO\":{\"title\":\"LanguageCodeDTO\",\"description\":\"Programin destekledigi dillerin kodlarini icerir Languages codes are ISO_639-1 codes, see http: Codes for the Representation of Names of Languages Codes arranged alphabetically by alpha-3/ISO 639-2 Code Note: ISO 639-2 is the alpha-3 code in Codes for the representation of names of languages-- Part 2. There are 21 languages that have alternative codes for bibliographic or terminology purposes. In those cases, each is listed separately and they are designated as \\\"B\\\" (bibliographic) or \\\"T\\\" (terminology). In all other cases there is only one ISO 639-2 code. Multiple codes assigned to the same language are to be considered synonyms. ISO 639-1 is the alpha-2 code. @author Aurora Developer team.\",\"required\":[\"englishName\",\"iso6392Code\",\"name\"],\"type\":\"object\",\"properties\":{\"attributes\":{\"description\":\"organizasyon tipinin ek alanları.\",\"type\":\"object\",\"additionalProperties\":{\"type\":\"string\"}},\"code\":{\"description\":\"gobal dil kodu. tr, en, fr vb.. ISO 639-1 Code \\\"https:\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"englishName\":{\"description\":\"Dilin ingilizce ismi. kullanim kolayligi icin konulmustur.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"icon\":{\"description\":\"Dil icin icon bilgisi\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"iso6392Code\":{\"description\":\"ISO 639-2 dil kodlari. tur, eng vb.. ISO 639-2 Code \\\"https:\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"dilin original ismi. ENGLISH, TURKCE VS...\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}},\"CountryDTO\":{\"title\":\"CountryDTO\",\"description\":\"Ulke tanimlari @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/CountryLangDTO\"}}},\"CountryLangDTO\":{\"title\":\"CountryLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/StateAddressDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"country\": {\n \"createdBy\": \"sunt officia anim occaecat\",\n \"createdDate\": \"1967-05-17T18:59:23.326Z\",\n \"id\": 83541606,\n \"lastModifiedBy\": \"sed aute quis\",\n \"lastModifiedDate\": \"1973-01-02T10:43:18.110Z\",\n \"translation\": {\n \"name\": \"in\",\n \"createdBy\": \"cillum enim irure sed\",\n \"createdDate\": \"1997-03-27T12:09:05.577Z\",\n \"defaultLang\": true,\n \"description\": \"est proident sit nulla pariatur\",\n \"id\": 40194979,\n \"lang\": {\n \"englishName\": \"culpa consectetur eu ex\",\n \"iso6392Code\": \"incididunt\",\n \"name\": \"elit deserunt\",\n \"attributes\": {},\n \"code\": \"in\",\n \"createdBy\": \"velit in labore officia dolor\",\n \"createdDate\": \"1990-12-05T22:19:03.599Z\",\n \"description\": \"reprehenderit Excepteur quis\",\n \"icon\": \"irure enim nulla dolore sint\",\n \"id\": 77793387,\n \"lastModifiedBy\": \"fugiat proident dolore officia ut\",\n \"lastModifiedDate\": \"1950-01-06T02:12:41.516Z\",\n \"orderPriority\": -97821084,\n \"status\": false\n },\n \"lastModifiedBy\": \"do commodo deserunt\",\n \"lastModifiedDate\": \"1977-10-28T05:33:56.396Z\",\n \"ownerId\": -57117437\n }\n },\n \"createdBy\": \"sint dolor ex eiusmod\",\n \"createdDate\": \"2006-09-10T10:22:59.724Z\",\n \"id\": 36560305,\n \"lastModifiedBy\": \"aliqua proident\",\n \"lastModifiedDate\": \"1958-07-21T21:35:25.319Z\",\n \"translation\": {\n \"name\": \"cillum adipisicing\",\n \"createdBy\": \"irure reprehenderit a\",\n \"createdDate\": \"2001-06-14T02:50:37.772Z\",\n \"defaultLang\": true,\n \"description\": \"ullamco dolore elit exercitation\",\n \"id\": -38818858,\n \"lang\": {\n \"englishName\": \"ea tem\",\n \"iso6392Code\": \"anim\",\n \"name\": \"deserunt id cillum aliqua amet\",\n \"attributes\": {},\n \"code\": \"aliquip q\",\n \"createdBy\": \"consequat id fugiat do exercitatio\",\n \"createdDate\": \"1963-10-02T10:00:30.154Z\",\n \"description\": \"qui ea elit dolore eiusmod\",\n \"icon\": \"aliquip est\",\n \"id\": 50354676,\n \"lastModifiedBy\": \"laboris ullamco occaecat esse\",\n \"lastModifiedDate\": \"2005-09-22T23:37:46.577Z\",\n \"orderPriority\": -18453733,\n \"status\": false\n },\n \"lastModifiedBy\": \"mollit offici\",\n \"lastModifiedDate\": \"1982-05-03T12:53:44.370Z\",\n \"ownerId\": -85506833\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/StateAddressDTO\"}],\"definitions\":{\"StateAddressDTO\":{\"title\":\"StateAddressDTO\",\"description\":\"State - Eyalet bilgilerinin tanimlarinin yapildigi objedir. view - goruntu objesidir. @see GeographicBoundary @see GeographicBoundaryType @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"country\":{\"$ref\":\"#/definitions/CountryDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/StateAddressLangDTO\"}}},\"StateAddressLangDTO\":{\"title\":\"StateAddressLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"LanguageCodeDTO\":{\"title\":\"LanguageCodeDTO\",\"description\":\"Programin destekledigi dillerin kodlarini icerir Languages codes are ISO_639-1 codes, see http: Codes for the Representation of Names of Languages Codes arranged alphabetically by alpha-3/ISO 639-2 Code Note: ISO 639-2 is the alpha-3 code in Codes for the representation of names of languages-- Part 2. There are 21 languages that have alternative codes for bibliographic or terminology purposes. In those cases, each is listed separately and they are designated as \\\"B\\\" (bibliographic) or \\\"T\\\" (terminology). In all other cases there is only one ISO 639-2 code. Multiple codes assigned to the same language are to be considered synonyms. ISO 639-1 is the alpha-2 code. @author Aurora Developer team.\",\"required\":[\"englishName\",\"iso6392Code\",\"name\"],\"type\":\"object\",\"properties\":{\"attributes\":{\"description\":\"organizasyon tipinin ek alanları.\",\"type\":\"object\",\"additionalProperties\":{\"type\":\"string\"}},\"code\":{\"description\":\"gobal dil kodu. tr, en, fr vb.. ISO 639-1 Code \\\"https:\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"englishName\":{\"description\":\"Dilin ingilizce ismi. kullanim kolayligi icin konulmustur.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"icon\":{\"description\":\"Dil icin icon bilgisi\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"iso6392Code\":{\"description\":\"ISO 639-2 dil kodlari. tur, eng vb.. ISO 639-2 Code \\\"https:\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"dilin original ismi. ENGLISH, TURKCE VS...\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}},\"CountryDTO\":{\"title\":\"CountryDTO\",\"description\":\"Ulke tanimlari @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/CountryLangDTO\"}}},\"CountryLangDTO\":{\"title\":\"CountryLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/StateAddressDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"country\": {\n \"createdBy\": \"esse eiusmod dolor irure\",\n \"createdDate\": \"2013-04-08T23:42:03.705Z\",\n \"id\": -75079055,\n \"lastModifiedBy\": \"ipsum \",\n \"lastModifiedDate\": \"1970-06-25T15:51:07.747Z\",\n \"translation\": {\n \"name\": \"quis in\",\n \"createdBy\": \"tempor officia\",\n \"createdDate\": \"1954-04-23T08:22:26.208Z\",\n \"defaultLang\": true,\n \"description\": \"veniam Duis\",\n \"id\": -78337722,\n \"lang\": {\n \"englishName\": \"in veniam\",\n \"iso6392Code\": \"fugiat\",\n \"name\": \"elit\",\n \"attributes\": {},\n \"code\": \"culp\",\n \"createdBy\": \"dolor est voluptate eiusmod dolor\",\n \"createdDate\": \"1985-10-26T23:30:11.900Z\",\n \"description\": \"ullamco nisi officia qui\",\n \"icon\": \"aliqua cupidatat\",\n \"id\": -9482519,\n \"lastModifiedBy\": \"dolore incididunt sunt enim aliquip\",\n \"lastModifiedDate\": \"2013-05-20T15:40:26.954Z\",\n \"orderPriority\": -79125893,\n \"status\": false\n },\n \"lastModifiedBy\": \"aliqua elit magna\",\n \"lastModifiedDate\": \"1994-09-05T00:44:50.877Z\",\n \"ownerId\": -26406319\n }\n },\n \"createdBy\": \"ad\",\n \"createdDate\": \"1985-09-30T11:26:57.483Z\",\n \"id\": 48634109,\n \"lastModifiedBy\": \"magn\",\n \"lastModifiedDate\": \"1986-02-09T11:23:24.900Z\",\n \"translation\": {\n \"name\": \"reprehende\",\n \"createdBy\": \"quis \",\n \"createdDate\": \"1968-12-23T05:18:53.035Z\",\n \"defaultLang\": true,\n \"description\": \"aute qui dolore proident ea\",\n \"id\": 44483694,\n \"lang\": {\n \"englishName\": \"enim in dolore ut\",\n \"iso6392Code\": \"in Excepteur velit ad esse\",\n \"name\": \"consequat laboris sed\",\n \"attributes\": {},\n \"code\": \"eu tempor do dolor magna\",\n \"createdBy\": \"enim velit\",\n \"createdDate\": \"1984-10-01T23:17:33.422Z\",\n \"description\": \"irure labore reprehenderit exercitation dolor\",\n \"icon\": \"Duis mollit eiusmod\",\n \"id\": -47390426,\n \"lastModifiedBy\": \"cupidatat sunt in\",\n \"lastModifiedDate\": \"1975-05-01T21:58:49.944Z\",\n \"orderPriority\": -40802648,\n \"status\": false\n },\n \"lastModifiedBy\": \"e\",\n \"lastModifiedDate\": \"1997-12-07T18:38:12.630Z\",\n \"ownerId\": -86360564\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/StateAddressDTO\"}],\"definitions\":{\"StateAddressDTO\":{\"title\":\"StateAddressDTO\",\"description\":\"State - Eyalet bilgilerinin tanimlarinin yapildigi objedir. view - goruntu objesidir. @see GeographicBoundary @see GeographicBoundaryType @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"country\":{\"$ref\":\"#/definitions/CountryDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/StateAddressLangDTO\"}}},\"StateAddressLangDTO\":{\"title\":\"StateAddressLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"LanguageCodeDTO\":{\"title\":\"LanguageCodeDTO\",\"description\":\"Programin destekledigi dillerin kodlarini icerir Languages codes are ISO_639-1 codes, see http: Codes for the Representation of Names of Languages Codes arranged alphabetically by alpha-3/ISO 639-2 Code Note: ISO 639-2 is the alpha-3 code in Codes for the representation of names of languages-- Part 2. There are 21 languages that have alternative codes for bibliographic or terminology purposes. In those cases, each is listed separately and they are designated as \\\"B\\\" (bibliographic) or \\\"T\\\" (terminology). In all other cases there is only one ISO 639-2 code. Multiple codes assigned to the same language are to be considered synonyms. ISO 639-1 is the alpha-2 code. @author Aurora Developer team.\",\"required\":[\"englishName\",\"iso6392Code\",\"name\"],\"type\":\"object\",\"properties\":{\"attributes\":{\"description\":\"organizasyon tipinin ek alanları.\",\"type\":\"object\",\"additionalProperties\":{\"type\":\"string\"}},\"code\":{\"description\":\"gobal dil kodu. tr, en, fr vb.. ISO 639-1 Code \\\"https:\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"englishName\":{\"description\":\"Dilin ingilizce ismi. kullanim kolayligi icin konulmustur.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"icon\":{\"description\":\"Dil icin icon bilgisi\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"iso6392Code\":{\"description\":\"ISO 639-2 dil kodlari. tur, eng vb.. ISO 639-2 Code \\\"https:\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"dilin original ismi. ENGLISH, TURKCE VS...\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}},\"CountryDTO\":{\"title\":\"CountryDTO\",\"description\":\"Ulke tanimlari @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/CountryLangDTO\"}}},\"CountryLangDTO\":{\"title\":\"CountryLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/StateAddressDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/adr/state-addresses/count" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "countStateAddresses" + }, + "id": { + "element": "string", + "content": "countStateAddressesUsingGET" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/adr/state-addresses/count{?countryId%2eequals,countryId%2egreaterOrEqualThan,countryId%2egreaterThan,countryId%2ein*,countryId%2elessOrEqualThan,countryId%2elessThan,countryId%2especified,id%2eequals,id%2egreaterOrEqualThan,id%2egreaterThan,id%2ein*,id%2elessOrEqualThan,id%2elessThan,id%2especified,name%2econtains,name%2eequals,name%2ein*,name%2especified,translationId%2eequals,translationId%2egreaterOrEqualThan,translationId%2egreaterThan,translationId%2ein*,translationId%2elessOrEqualThan,translationId%2elessThan,translationId%2especified}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "countryId.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "countryId.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "countryId.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "countryId.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "countryId.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "countryId.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "countryId.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.specified" + }, + "value": { + "element": "boolean" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"format\":\"int64\",\"type\":\"integer\"}" + }, + { + "element": "dataStructure", + "content": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'int64'" + } + } + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/adr/state-addresses/{id}" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getStateAddress" + }, + "id": { + "element": "string", + "content": "getStateAddressUsingGET" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "id" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/StateAddressDTO\"}],\"definitions\":{\"StateAddressDTO\":{\"title\":\"StateAddressDTO\",\"description\":\"State - Eyalet bilgilerinin tanimlarinin yapildigi objedir. view - goruntu objesidir. @see GeographicBoundary @see GeographicBoundaryType @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"country\":{\"$ref\":\"#/definitions/CountryDTO\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/StateAddressLangDTO\"}}},\"StateAddressLangDTO\":{\"title\":\"StateAddressLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"LanguageCodeDTO\":{\"title\":\"LanguageCodeDTO\",\"description\":\"Programin destekledigi dillerin kodlarini icerir Languages codes are ISO_639-1 codes, see http: Codes for the Representation of Names of Languages Codes arranged alphabetically by alpha-3/ISO 639-2 Code Note: ISO 639-2 is the alpha-3 code in Codes for the representation of names of languages-- Part 2. There are 21 languages that have alternative codes for bibliographic or terminology purposes. In those cases, each is listed separately and they are designated as \\\"B\\\" (bibliographic) or \\\"T\\\" (terminology). In all other cases there is only one ISO 639-2 code. Multiple codes assigned to the same language are to be considered synonyms. ISO 639-1 is the alpha-2 code. @author Aurora Developer team.\",\"required\":[\"englishName\",\"iso6392Code\",\"name\"],\"type\":\"object\",\"properties\":{\"attributes\":{\"description\":\"organizasyon tipinin ek alanları.\",\"type\":\"object\",\"additionalProperties\":{\"type\":\"string\"}},\"code\":{\"description\":\"gobal dil kodu. tr, en, fr vb.. ISO 639-1 Code \\\"https:\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"englishName\":{\"description\":\"Dilin ingilizce ismi. kullanim kolayligi icin konulmustur.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"icon\":{\"description\":\"Dil icin icon bilgisi\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"iso6392Code\":{\"description\":\"ISO 639-2 dil kodlari. tur, eng vb.. ISO 639-2 Code \\\"https:\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"dilin original ismi. ENGLISH, TURKCE VS...\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}},\"CountryDTO\":{\"title\":\"CountryDTO\",\"description\":\"Ulke tanimlari @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"translation\":{\"$ref\":\"#/definitions/CountryLangDTO\"}}},\"CountryLangDTO\":{\"title\":\"CountryLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/StateAddressDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "deleteStateAddress" + }, + "id": { + "element": "string", + "content": "deleteStateAddressUsingDELETE" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "id" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "204" + } + }, + "content": [ + { + "element": "copy", + "content": "No Content" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "category", + "meta": { + "title": { + "element": "string", + "content": "tel-number-resource" + }, + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "resourceGroup" + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Tel Number Resource" + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/adr/telephone/categories" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "List All Telephone Categories" + }, + "id": { + "element": "string", + "content": "getAllTelephoneCategories" + } + }, + "content": [ + { + "element": "copy", + "content": "Gets a list of all Telephone Categories" + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "Successful response - returns an array of telephone category." + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"},\"definitions\":{\"ContactMediumCategoryLOV\":{\"title\":\"ContactMediumCategoryLOV\",\"description\":\"Contact medium kategorileri. Bir kategori tipine ait veriyi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Category Name\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/ContactMediumCategoryLOV" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "category", + "meta": { + "title": { + "element": "string", + "content": "attribute-definition-resource" + }, + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "resourceGroup" + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Attribute Definition Resource" + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/attribute-def" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "isAuthenticated" + }, + "id": { + "element": "string", + "content": "isAuthenticatedUsingGET_1" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/attribute-def{?dataType,defaultValue,id,lookupSource*,tableName}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Ek alanların olabilecek tipleri. SHORT_STRING, LONG_STRING, INTEGER, DECIMAL, BOOLEAN, DATE, DATE_TIME, LOOKUP" + } + }, + "content": { + "key": { + "element": "string", + "content": "dataType" + }, + "value": { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "CHECKBOX" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "DATE" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "EMAIL" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MONTH" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "NUMBER" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "PASSWORD" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SELECT" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "TEL" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "TEXT" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "TEXTAREA" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "TIME" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "URL" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "WEEK" + } + ] + } + } + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Varsayılan değer." + } + }, + "content": { + "key": { + "element": "string", + "content": "defaultValue" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "AutoIncrement Primary KEY" + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Seçim listesiDatası ismi." + } + }, + "content": { + "key": { + "element": "string", + "content": "lookupSource" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Tablo ismi." + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "tableName" + }, + "value": { + "element": "string" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/AuthorityDTO\"}],\"definitions\":{\"AuthorityDTO\":{\"title\":\"AuthorityDTO\",\"description\":\"ROLE objesinin Ek verilerini icermektedir. Mevcut yapidaki authority objesinin yapisini bozmamak icin kurulmustur. ROLE adi. Key bilgisidir. ROLE_ ismiyle baslamalidir. name String required minlength(5) maxlength(50) pattern(/[^ ]/), @author Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Aciklama Bilgisi\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"menus\":{\"description\":\"Sistem rolu ile menuler arasindaki coklu yetkisel iliski.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/MenuNodeDTO\"}},\"name\":{\"description\":\"Ad bilgisidir.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"pages\":{\"description\":\"Sistem rolu ile sayfalar arasindaki coklu yetkisel iliski.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/PageDefinitionDTO\"}},\"responsibilities\":{\"description\":\"Sorumluluklarin sistem rolleri ile olan cokul iliskisi\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ResponsibilityDTO\"}},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"},\"users\":{\"description\":\"Sistem rolu ile userlar arasindaki coklu iliski.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/UserDTO\"}}}},\"UserDTO\":{\"title\":\"UserDTO\",\"type\":\"object\",\"properties\":{\"activated\":{\"type\":\"boolean\"},\"authorities\":{\"type\":\"array\",\"items\":{\"type\":\"string\"}},\"createdBy\":{\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"email\":{\"maxLength\":254,\"minLength\":5,\"type\":\"string\"},\"firstName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"imageUrl\":{\"maxLength\":256,\"minLength\":0,\"type\":\"string\"},\"langKey\":{\"maxLength\":6,\"minLength\":2,\"type\":\"string\"},\"lastModifiedBy\":{\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"lastName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"login\":{\"maxLength\":50,\"minLength\":1,\"pattern\":\"^[_.@A-Za-z0-9-]*$\",\"type\":\"string\"}}},\"ResponsibilityDTO\":{\"title\":\"ResponsibilityDTO\",\"description\":\"Rollerin sahip oldugu sorumluluklari ifade eder. Surec icerisindeki, en kucuk gorev, vazife ve is parcacigini, ifade eder. Bu tanim, Program tarafindan; Modeller ve actionlar uzerinden erisimi ayarlar. Ornek sorumluluk: Kullanici ekleyebilir(bu sayede kullanici ekle, sil, duzenle, kullaniciya departman ata, unvan tanimla vb..) Fatura Hazirlayabilir, Musteri Kaydi yapabilir, Tc Kimlik Biglisine Erisebilir gibi... @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Sorumluluk ismi, Keyi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}},\"PageDefinitionDTO\":{\"title\":\"PageDefinitionDTO\",\"description\":\"Web UI sayfa(route, url) bilgilerini saklanacagi yerdir. Optional, Uygulamamizdaki web page bilgileri hatta bu page lerin yetki kisitlamasida buradan yapilabilir. @author The Aurora Developer team.\",\"required\":[\"name\",\"url\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Uzun detayli aciklama bilgisi.\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Kendine has uniqe isim bilgisi. Sayfa ismi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"parentId\":{\"format\":\"int64\",\"description\":\"page url tanimlarinin birbiriyle olan parent child iliskisi\",\"type\":\"integer\"},\"parentName\":{\"type\":\"string\"},\"shortName\":{\"description\":\"Kisa isim bilgisi.\",\"maxLength\":30,\"minLength\":1,\"type\":\"string\"},\"status\":{\"description\":\"Aktiflik Pasiflik bilgisidir. Pasif ise erisime tamamen kapalidir.\",\"type\":\"boolean\"},\"url\":{\"description\":\"Sayfa veya sayfanin icindeki, servis cagrimi yapacak url bilgisidir. Sayfanin ana urlsi veya event icinde olabilir.\",\"maxLength\":1000,\"minLength\":1,\"type\":\"string\"}}},\"MenuNodeDTO\":{\"title\":\"MenuNodeDTO\",\"description\":\"Menulerin tanimlarinin yapildigi yerdir. @author The Aurora Developer team.\",\"required\":[\"i18nName\",\"name\",\"stateRef\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Menuye ait aciklama bilgisidir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"i18nName\":{\"description\":\"Menuye ait i18n bilgisidir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"icon\":{\"description\":\"Menunun isminin yaninda gorunecek icon yoludur. bu yol genelde bir url'dir veya dosya yoludur.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"leaf\":{\"description\":\"Menu dal mi, yaprak mi belirlemek icin kullanilir. eger true ise bunun altinda menu yoktur bu bir sayfayi acmak icin kullanilir. false ise ust menudur.\",\"type\":\"boolean\"},\"name\":{\"description\":\"Menuye ait isim bilgisidir. Menulerde gorunecek isimdir. Onemlidir.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Menunun listede goruntulenecek sirasidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"pageId\":{\"format\":\"int64\",\"description\":\"Menu Node page urllerle olan bagini gostermektedir.\",\"type\":\"integer\"},\"pageUrl\":{\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"string\"},\"parentId\":{\"format\":\"int64\",\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"integer\"},\"parentName\":{\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"string\"},\"stateRef\":{\"description\":\"Menunun acacagi state referans bilgisi Orn:#/visitor\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"status\":{\"description\":\"Aktif pasiflik bilgisidir.\",\"type\":\"boolean\"},\"subMenus\":{\"description\":\"Menulerin icerdigi alt menuleri listeler..\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/MenuNodeDTO\"}},\"translation\":{\"$ref\":\"#/definitions/MenuNodeLangDTO\"}}},\"MenuNodeLangDTO\":{\"title\":\"MenuNodeLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"langCode\":{\"description\":\"Dil kodu code bilgisinin icermektedir.\",\"type\":\"string\"},\"langId\":{\"format\":\"int64\",\"description\":\"Dil kodu id bilgisinin icermektedir.\",\"type\":\"integer\"},\"langName\":{\"description\":\"Dil kodu adidir.\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/AuthorityDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "category", + "meta": { + "title": { + "element": "string", + "content": "entity-audit-resource" + }, + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "resourceGroup" + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Entity Audit Resource" + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/audits/entity/all" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getAuditedEntities" + }, + "id": { + "element": "string", + "content": "getAuditedEntitiesUsingGET" + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#produces-accept" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Accept" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + } + }, + { + "element": "httpResponse", + "attributes": { + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#produces-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + }, + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "[\n \"proident irure sed enim\"\n]" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"type\":\"string\"}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#produces-accept" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Accept" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + } + }, + { + "element": "httpResponse", + "attributes": { + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#produces-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + }, + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#produces-accept" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Accept" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + } + }, + { + "element": "httpResponse", + "attributes": { + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#produces-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + }, + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#produces-accept" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Accept" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + } + }, + { + "element": "httpResponse", + "attributes": { + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#produces-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + }, + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/audits/entity/changes" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getChanges" + }, + "id": { + "element": "string", + "content": "getChangesUsingGET" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/audits/entity/changes{?entityType,limit}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "entityType" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "entityType" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "limit" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "limit" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#produces-accept" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Accept" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + } + }, + { + "element": "httpResponse", + "attributes": { + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#produces-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + }, + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "[\n {\n \"action\": \"sed a\",\n \"entityId\": 6209720,\n \"entityType\": \"dolor amet sed\",\n \"modifiedDate\": \"1986-06-28T20:59:50.935Z\",\n \"commitVersion\": -3877125,\n \"entityValue\": \"in\",\n \"id\": -7767035,\n \"modifiedBy\": \"nulla eiusmod e\"\n }\n]" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/EntityAuditEvent\"},\"definitions\":{\"EntityAuditEvent\":{\"title\":\"EntityAuditEvent\",\"required\":[\"action\",\"entityId\",\"entityType\",\"modifiedDate\"],\"type\":\"object\",\"properties\":{\"action\":{\"maxLength\":20,\"minLength\":0,\"type\":\"string\"},\"commitVersion\":{\"format\":\"int32\",\"type\":\"integer\"},\"entityId\":{\"format\":\"int64\",\"type\":\"integer\"},\"entityType\":{\"maxLength\":255,\"minLength\":0,\"type\":\"string\"},\"entityValue\":{\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"modifiedBy\":{\"maxLength\":100,\"minLength\":0,\"type\":\"string\"},\"modifiedDate\":{\"format\":\"date-time\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/EntityAuditEvent" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#produces-accept" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Accept" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + } + }, + { + "element": "httpResponse", + "attributes": { + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#produces-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + }, + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#produces-accept" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Accept" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + } + }, + { + "element": "httpResponse", + "attributes": { + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#produces-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + }, + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#produces-accept" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Accept" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + } + }, + { + "element": "httpResponse", + "attributes": { + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#produces-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + }, + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/audits/entity/changes/version/previous" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getPrevVersion" + }, + "id": { + "element": "string", + "content": "getPrevVersionUsingGET" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/audits/entity/changes/version/previous{?commitVersion,entityId,qualifiedName}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "commitVersion" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "commitVersion" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "entityId" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "entityId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "qualifiedName" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "qualifiedName" + }, + "value": { + "element": "string" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#produces-accept" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Accept" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + } + }, + { + "element": "httpResponse", + "attributes": { + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#produces-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + }, + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"action\": \"U\",\n \"entityId\": 21693626,\n \"entityType\": \"eiusmod ea laborum est\",\n \"modifiedDate\": \"2017-04-30T02:29:56.289Z\",\n \"commitVersion\": -823210,\n \"entityValue\": \"ut laborum aliquip occaecat id\",\n \"id\": 47402088,\n \"modifiedBy\": \"Excepteur irure \"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"EntityAuditEvent\",\"required\":[\"action\",\"entityId\",\"entityType\",\"modifiedDate\"],\"type\":\"object\",\"properties\":{\"action\":{\"maxLength\":20,\"minLength\":0,\"type\":\"string\"},\"commitVersion\":{\"format\":\"int32\",\"type\":\"integer\"},\"entityId\":{\"format\":\"int64\",\"type\":\"integer\"},\"entityType\":{\"maxLength\":255,\"minLength\":0,\"type\":\"string\"},\"entityValue\":{\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"modifiedBy\":{\"maxLength\":100,\"minLength\":0,\"type\":\"string\"},\"modifiedDate\":{\"format\":\"date-time\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/EntityAuditEvent" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#produces-accept" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Accept" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + } + }, + { + "element": "httpResponse", + "attributes": { + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#produces-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + }, + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#produces-accept" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Accept" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + } + }, + { + "element": "httpResponse", + "attributes": { + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#produces-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + }, + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#produces-accept" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Accept" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + } + }, + { + "element": "httpResponse", + "attributes": { + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#produces-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + }, + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "category", + "meta": { + "title": { + "element": "string", + "content": "authority-resource" + }, + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "resourceGroup" + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Authority Resource" + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/authorities" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getAllAuthorities" + }, + "id": { + "element": "string", + "content": "getAllAuthoritiesUsingGET" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/authorities{?description%2econtains,description%2eequals,description%2ein*,description%2especified,id%2eequals,id%2egreaterOrEqualThan,id%2egreaterThan,id%2ein*,id%2elessOrEqualThan,id%2elessThan,id%2especified,menuId%2eequals,menuId%2egreaterOrEqualThan,menuId%2egreaterThan,menuId%2ein*,menuId%2elessOrEqualThan,menuId%2elessThan,menuId%2especified,name%2econtains,name%2eequals,name%2ein*,name%2especified,orderPriority%2eequals,orderPriority%2egreaterOrEqualThan,orderPriority%2egreaterThan,orderPriority%2ein*,orderPriority%2elessOrEqualThan,orderPriority%2elessThan,orderPriority%2especified,page,pageId%2eequals,pageId%2egreaterOrEqualThan,pageId%2egreaterThan,pageId%2ein*,pageId%2elessOrEqualThan,pageId%2elessThan,pageId%2especified,responsibilityId%2eequals,responsibilityId%2egreaterOrEqualThan,responsibilityId%2egreaterThan,responsibilityId%2ein*,responsibilityId%2elessOrEqualThan,responsibilityId%2elessThan,responsibilityId%2especified,size,sort*,status%2eequals,status%2ein*,status%2especified,userId%2eequals,userId%2egreaterOrEqualThan,userId%2egreaterThan,userId%2ein*,userId%2elessOrEqualThan,userId%2elessThan,userId%2especified}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "menuId.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "menuId.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "menuId.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "menuId.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "menuId.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "menuId.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "menuId.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Page number of the requested page" + } + }, + "content": { + "key": { + "element": "string", + "content": "page" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "pageId.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "pageId.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "pageId.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "pageId.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "pageId.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "pageId.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "pageId.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "responsibilityId.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "responsibilityId.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "responsibilityId.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "responsibilityId.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "responsibilityId.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "responsibilityId.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "responsibilityId.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Size of a page" + } + }, + "content": { + "key": { + "element": "string", + "content": "size" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported." + } + }, + "content": { + "key": { + "element": "string", + "content": "sort" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status.equals" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "boolean" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "userId.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "userId.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "userId.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "userId.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "userId.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "userId.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "userId.specified" + }, + "value": { + "element": "boolean" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/AuthorityDTO\"},\"definitions\":{\"AuthorityDTO\":{\"title\":\"AuthorityDTO\",\"description\":\"ROLE objesinin Ek verilerini icermektedir. Mevcut yapidaki authority objesinin yapisini bozmamak icin kurulmustur. ROLE adi. Key bilgisidir. ROLE_ ismiyle baslamalidir. name String required minlength(5) maxlength(50) pattern(/[^ ]/), @author Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Aciklama Bilgisi\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"menus\":{\"description\":\"Sistem rolu ile menuler arasindaki coklu yetkisel iliski.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/MenuNodeDTO\"}},\"name\":{\"description\":\"Ad bilgisidir.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"pages\":{\"description\":\"Sistem rolu ile sayfalar arasindaki coklu yetkisel iliski.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/PageDefinitionDTO\"}},\"responsibilities\":{\"description\":\"Sorumluluklarin sistem rolleri ile olan cokul iliskisi\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ResponsibilityDTO\"}},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"},\"users\":{\"description\":\"Sistem rolu ile userlar arasindaki coklu iliski.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/UserDTO\"}}}},\"UserDTO\":{\"title\":\"UserDTO\",\"type\":\"object\",\"properties\":{\"activated\":{\"type\":\"boolean\"},\"authorities\":{\"type\":\"array\",\"items\":{\"type\":\"string\"}},\"createdBy\":{\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"email\":{\"maxLength\":254,\"minLength\":5,\"type\":\"string\"},\"firstName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"imageUrl\":{\"maxLength\":256,\"minLength\":0,\"type\":\"string\"},\"langKey\":{\"maxLength\":6,\"minLength\":2,\"type\":\"string\"},\"lastModifiedBy\":{\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"lastName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"login\":{\"maxLength\":50,\"minLength\":1,\"pattern\":\"^[_.@A-Za-z0-9-]*$\",\"type\":\"string\"}}},\"ResponsibilityDTO\":{\"title\":\"ResponsibilityDTO\",\"description\":\"Rollerin sahip oldugu sorumluluklari ifade eder. Surec icerisindeki, en kucuk gorev, vazife ve is parcacigini, ifade eder. Bu tanim, Program tarafindan; Modeller ve actionlar uzerinden erisimi ayarlar. Ornek sorumluluk: Kullanici ekleyebilir(bu sayede kullanici ekle, sil, duzenle, kullaniciya departman ata, unvan tanimla vb..) Fatura Hazirlayabilir, Musteri Kaydi yapabilir, Tc Kimlik Biglisine Erisebilir gibi... @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Sorumluluk ismi, Keyi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}},\"PageDefinitionDTO\":{\"title\":\"PageDefinitionDTO\",\"description\":\"Web UI sayfa(route, url) bilgilerini saklanacagi yerdir. Optional, Uygulamamizdaki web page bilgileri hatta bu page lerin yetki kisitlamasida buradan yapilabilir. @author The Aurora Developer team.\",\"required\":[\"name\",\"url\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Uzun detayli aciklama bilgisi.\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Kendine has uniqe isim bilgisi. Sayfa ismi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"parentId\":{\"format\":\"int64\",\"description\":\"page url tanimlarinin birbiriyle olan parent child iliskisi\",\"type\":\"integer\"},\"parentName\":{\"type\":\"string\"},\"shortName\":{\"description\":\"Kisa isim bilgisi.\",\"maxLength\":30,\"minLength\":1,\"type\":\"string\"},\"status\":{\"description\":\"Aktiflik Pasiflik bilgisidir. Pasif ise erisime tamamen kapalidir.\",\"type\":\"boolean\"},\"url\":{\"description\":\"Sayfa veya sayfanin icindeki, servis cagrimi yapacak url bilgisidir. Sayfanin ana urlsi veya event icinde olabilir.\",\"maxLength\":1000,\"minLength\":1,\"type\":\"string\"}}},\"MenuNodeDTO\":{\"title\":\"MenuNodeDTO\",\"description\":\"Menulerin tanimlarinin yapildigi yerdir. @author The Aurora Developer team.\",\"required\":[\"i18nName\",\"name\",\"stateRef\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Menuye ait aciklama bilgisidir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"i18nName\":{\"description\":\"Menuye ait i18n bilgisidir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"icon\":{\"description\":\"Menunun isminin yaninda gorunecek icon yoludur. bu yol genelde bir url'dir veya dosya yoludur.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"leaf\":{\"description\":\"Menu dal mi, yaprak mi belirlemek icin kullanilir. eger true ise bunun altinda menu yoktur bu bir sayfayi acmak icin kullanilir. false ise ust menudur.\",\"type\":\"boolean\"},\"name\":{\"description\":\"Menuye ait isim bilgisidir. Menulerde gorunecek isimdir. Onemlidir.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Menunun listede goruntulenecek sirasidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"pageId\":{\"format\":\"int64\",\"description\":\"Menu Node page urllerle olan bagini gostermektedir.\",\"type\":\"integer\"},\"pageUrl\":{\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"string\"},\"parentId\":{\"format\":\"int64\",\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"integer\"},\"parentName\":{\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"string\"},\"stateRef\":{\"description\":\"Menunun acacagi state referans bilgisi Orn:#/visitor\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"status\":{\"description\":\"Aktif pasiflik bilgisidir.\",\"type\":\"boolean\"},\"subMenus\":{\"description\":\"Menulerin icerdigi alt menuleri listeler..\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/MenuNodeDTO\"}},\"translation\":{\"$ref\":\"#/definitions/MenuNodeLangDTO\"}}},\"MenuNodeLangDTO\":{\"title\":\"MenuNodeLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"langCode\":{\"description\":\"Dil kodu code bilgisinin icermektedir.\",\"type\":\"string\"},\"langId\":{\"format\":\"int64\",\"description\":\"Dil kodu id bilgisinin icermektedir.\",\"type\":\"integer\"},\"langName\":{\"description\":\"Dil kodu adidir.\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/AuthorityDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "updateAuthority" + }, + "id": { + "element": "string", + "content": "updateAuthorityUsingPUT" + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"name\": \"voluptate proide\",\n \"createdBy\": \"de\",\n \"createdDate\": \"1974-11-16T15:55:22.941Z\",\n \"description\": \"deserunt proident et\",\n \"id\": -46241289,\n \"lastModifiedBy\": \"qui ut eiusmod reprehenderit\",\n \"lastModifiedDate\": \"1942-07-16T12:22:16.939Z\",\n \"menus\": [],\n \"orderPriority\": -32851086,\n \"pages\": [],\n \"responsibilities\": [],\n \"status\": false,\n \"users\": []\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/AuthorityDTO\"}],\"definitions\":{\"AuthorityDTO\":{\"title\":\"AuthorityDTO\",\"description\":\"ROLE objesinin Ek verilerini icermektedir. Mevcut yapidaki authority objesinin yapisini bozmamak icin kurulmustur. ROLE adi. Key bilgisidir. ROLE_ ismiyle baslamalidir. name String required minlength(5) maxlength(50) pattern(/[^ ]/), @author Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Aciklama Bilgisi\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"menus\":{\"description\":\"Sistem rolu ile menuler arasindaki coklu yetkisel iliski.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/MenuNodeDTO\"}},\"name\":{\"description\":\"Ad bilgisidir.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"pages\":{\"description\":\"Sistem rolu ile sayfalar arasindaki coklu yetkisel iliski.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/PageDefinitionDTO\"}},\"responsibilities\":{\"description\":\"Sorumluluklarin sistem rolleri ile olan cokul iliskisi\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ResponsibilityDTO\"}},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"},\"users\":{\"description\":\"Sistem rolu ile userlar arasindaki coklu iliski.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/UserDTO\"}}}},\"UserDTO\":{\"title\":\"UserDTO\",\"type\":\"object\",\"properties\":{\"activated\":{\"type\":\"boolean\"},\"authorities\":{\"type\":\"array\",\"items\":{\"type\":\"string\"}},\"createdBy\":{\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"email\":{\"maxLength\":254,\"minLength\":5,\"type\":\"string\"},\"firstName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"imageUrl\":{\"maxLength\":256,\"minLength\":0,\"type\":\"string\"},\"langKey\":{\"maxLength\":6,\"minLength\":2,\"type\":\"string\"},\"lastModifiedBy\":{\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"lastName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"login\":{\"maxLength\":50,\"minLength\":1,\"pattern\":\"^[_.@A-Za-z0-9-]*$\",\"type\":\"string\"}}},\"ResponsibilityDTO\":{\"title\":\"ResponsibilityDTO\",\"description\":\"Rollerin sahip oldugu sorumluluklari ifade eder. Surec icerisindeki, en kucuk gorev, vazife ve is parcacigini, ifade eder. Bu tanim, Program tarafindan; Modeller ve actionlar uzerinden erisimi ayarlar. Ornek sorumluluk: Kullanici ekleyebilir(bu sayede kullanici ekle, sil, duzenle, kullaniciya departman ata, unvan tanimla vb..) Fatura Hazirlayabilir, Musteri Kaydi yapabilir, Tc Kimlik Biglisine Erisebilir gibi... @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Sorumluluk ismi, Keyi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}},\"PageDefinitionDTO\":{\"title\":\"PageDefinitionDTO\",\"description\":\"Web UI sayfa(route, url) bilgilerini saklanacagi yerdir. Optional, Uygulamamizdaki web page bilgileri hatta bu page lerin yetki kisitlamasida buradan yapilabilir. @author The Aurora Developer team.\",\"required\":[\"name\",\"url\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Uzun detayli aciklama bilgisi.\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Kendine has uniqe isim bilgisi. Sayfa ismi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"parentId\":{\"format\":\"int64\",\"description\":\"page url tanimlarinin birbiriyle olan parent child iliskisi\",\"type\":\"integer\"},\"parentName\":{\"type\":\"string\"},\"shortName\":{\"description\":\"Kisa isim bilgisi.\",\"maxLength\":30,\"minLength\":1,\"type\":\"string\"},\"status\":{\"description\":\"Aktiflik Pasiflik bilgisidir. Pasif ise erisime tamamen kapalidir.\",\"type\":\"boolean\"},\"url\":{\"description\":\"Sayfa veya sayfanin icindeki, servis cagrimi yapacak url bilgisidir. Sayfanin ana urlsi veya event icinde olabilir.\",\"maxLength\":1000,\"minLength\":1,\"type\":\"string\"}}},\"MenuNodeDTO\":{\"title\":\"MenuNodeDTO\",\"description\":\"Menulerin tanimlarinin yapildigi yerdir. @author The Aurora Developer team.\",\"required\":[\"i18nName\",\"name\",\"stateRef\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Menuye ait aciklama bilgisidir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"i18nName\":{\"description\":\"Menuye ait i18n bilgisidir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"icon\":{\"description\":\"Menunun isminin yaninda gorunecek icon yoludur. bu yol genelde bir url'dir veya dosya yoludur.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"leaf\":{\"description\":\"Menu dal mi, yaprak mi belirlemek icin kullanilir. eger true ise bunun altinda menu yoktur bu bir sayfayi acmak icin kullanilir. false ise ust menudur.\",\"type\":\"boolean\"},\"name\":{\"description\":\"Menuye ait isim bilgisidir. Menulerde gorunecek isimdir. Onemlidir.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Menunun listede goruntulenecek sirasidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"pageId\":{\"format\":\"int64\",\"description\":\"Menu Node page urllerle olan bagini gostermektedir.\",\"type\":\"integer\"},\"pageUrl\":{\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"string\"},\"parentId\":{\"format\":\"int64\",\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"integer\"},\"parentName\":{\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"string\"},\"stateRef\":{\"description\":\"Menunun acacagi state referans bilgisi Orn:#/visitor\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"status\":{\"description\":\"Aktif pasiflik bilgisidir.\",\"type\":\"boolean\"},\"subMenus\":{\"description\":\"Menulerin icerdigi alt menuleri listeler..\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/MenuNodeDTO\"}},\"translation\":{\"$ref\":\"#/definitions/MenuNodeLangDTO\"}}},\"MenuNodeLangDTO\":{\"title\":\"MenuNodeLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"langCode\":{\"description\":\"Dil kodu code bilgisinin icermektedir.\",\"type\":\"string\"},\"langId\":{\"format\":\"int64\",\"description\":\"Dil kodu id bilgisinin icermektedir.\",\"type\":\"integer\"},\"langName\":{\"description\":\"Dil kodu adidir.\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/AuthorityDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/AuthorityDTO\"}],\"definitions\":{\"AuthorityDTO\":{\"title\":\"AuthorityDTO\",\"description\":\"ROLE objesinin Ek verilerini icermektedir. Mevcut yapidaki authority objesinin yapisini bozmamak icin kurulmustur. ROLE adi. Key bilgisidir. ROLE_ ismiyle baslamalidir. name String required minlength(5) maxlength(50) pattern(/[^ ]/), @author Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Aciklama Bilgisi\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"menus\":{\"description\":\"Sistem rolu ile menuler arasindaki coklu yetkisel iliski.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/MenuNodeDTO\"}},\"name\":{\"description\":\"Ad bilgisidir.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"pages\":{\"description\":\"Sistem rolu ile sayfalar arasindaki coklu yetkisel iliski.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/PageDefinitionDTO\"}},\"responsibilities\":{\"description\":\"Sorumluluklarin sistem rolleri ile olan cokul iliskisi\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ResponsibilityDTO\"}},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"},\"users\":{\"description\":\"Sistem rolu ile userlar arasindaki coklu iliski.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/UserDTO\"}}}},\"UserDTO\":{\"title\":\"UserDTO\",\"type\":\"object\",\"properties\":{\"activated\":{\"type\":\"boolean\"},\"authorities\":{\"type\":\"array\",\"items\":{\"type\":\"string\"}},\"createdBy\":{\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"email\":{\"maxLength\":254,\"minLength\":5,\"type\":\"string\"},\"firstName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"imageUrl\":{\"maxLength\":256,\"minLength\":0,\"type\":\"string\"},\"langKey\":{\"maxLength\":6,\"minLength\":2,\"type\":\"string\"},\"lastModifiedBy\":{\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"lastName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"login\":{\"maxLength\":50,\"minLength\":1,\"pattern\":\"^[_.@A-Za-z0-9-]*$\",\"type\":\"string\"}}},\"ResponsibilityDTO\":{\"title\":\"ResponsibilityDTO\",\"description\":\"Rollerin sahip oldugu sorumluluklari ifade eder. Surec icerisindeki, en kucuk gorev, vazife ve is parcacigini, ifade eder. Bu tanim, Program tarafindan; Modeller ve actionlar uzerinden erisimi ayarlar. Ornek sorumluluk: Kullanici ekleyebilir(bu sayede kullanici ekle, sil, duzenle, kullaniciya departman ata, unvan tanimla vb..) Fatura Hazirlayabilir, Musteri Kaydi yapabilir, Tc Kimlik Biglisine Erisebilir gibi... @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Sorumluluk ismi, Keyi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}},\"PageDefinitionDTO\":{\"title\":\"PageDefinitionDTO\",\"description\":\"Web UI sayfa(route, url) bilgilerini saklanacagi yerdir. Optional, Uygulamamizdaki web page bilgileri hatta bu page lerin yetki kisitlamasida buradan yapilabilir. @author The Aurora Developer team.\",\"required\":[\"name\",\"url\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Uzun detayli aciklama bilgisi.\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Kendine has uniqe isim bilgisi. Sayfa ismi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"parentId\":{\"format\":\"int64\",\"description\":\"page url tanimlarinin birbiriyle olan parent child iliskisi\",\"type\":\"integer\"},\"parentName\":{\"type\":\"string\"},\"shortName\":{\"description\":\"Kisa isim bilgisi.\",\"maxLength\":30,\"minLength\":1,\"type\":\"string\"},\"status\":{\"description\":\"Aktiflik Pasiflik bilgisidir. Pasif ise erisime tamamen kapalidir.\",\"type\":\"boolean\"},\"url\":{\"description\":\"Sayfa veya sayfanin icindeki, servis cagrimi yapacak url bilgisidir. Sayfanin ana urlsi veya event icinde olabilir.\",\"maxLength\":1000,\"minLength\":1,\"type\":\"string\"}}},\"MenuNodeDTO\":{\"title\":\"MenuNodeDTO\",\"description\":\"Menulerin tanimlarinin yapildigi yerdir. @author The Aurora Developer team.\",\"required\":[\"i18nName\",\"name\",\"stateRef\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Menuye ait aciklama bilgisidir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"i18nName\":{\"description\":\"Menuye ait i18n bilgisidir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"icon\":{\"description\":\"Menunun isminin yaninda gorunecek icon yoludur. bu yol genelde bir url'dir veya dosya yoludur.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"leaf\":{\"description\":\"Menu dal mi, yaprak mi belirlemek icin kullanilir. eger true ise bunun altinda menu yoktur bu bir sayfayi acmak icin kullanilir. false ise ust menudur.\",\"type\":\"boolean\"},\"name\":{\"description\":\"Menuye ait isim bilgisidir. Menulerde gorunecek isimdir. Onemlidir.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Menunun listede goruntulenecek sirasidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"pageId\":{\"format\":\"int64\",\"description\":\"Menu Node page urllerle olan bagini gostermektedir.\",\"type\":\"integer\"},\"pageUrl\":{\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"string\"},\"parentId\":{\"format\":\"int64\",\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"integer\"},\"parentName\":{\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"string\"},\"stateRef\":{\"description\":\"Menunun acacagi state referans bilgisi Orn:#/visitor\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"status\":{\"description\":\"Aktif pasiflik bilgisidir.\",\"type\":\"boolean\"},\"subMenus\":{\"description\":\"Menulerin icerdigi alt menuleri listeler..\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/MenuNodeDTO\"}},\"translation\":{\"$ref\":\"#/definitions/MenuNodeLangDTO\"}}},\"MenuNodeLangDTO\":{\"title\":\"MenuNodeLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"langCode\":{\"description\":\"Dil kodu code bilgisinin icermektedir.\",\"type\":\"string\"},\"langId\":{\"format\":\"int64\",\"description\":\"Dil kodu id bilgisinin icermektedir.\",\"type\":\"integer\"},\"langName\":{\"description\":\"Dil kodu adidir.\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/AuthorityDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"name\": \"aute deserunt elit ad ullamco\",\n \"createdBy\": \"in minim do ullamco culpa\",\n \"createdDate\": \"2016-09-21T05:51:47.917Z\",\n \"description\": \"Lorem amet ex\",\n \"id\": -34171511,\n \"lastModifiedBy\": \"deserunt cillum Lorem\",\n \"lastModifiedDate\": \"1964-07-19T08:47:40.645Z\",\n \"menus\": [],\n \"orderPriority\": -96179054,\n \"pages\": [],\n \"responsibilities\": [],\n \"status\": false,\n \"users\": []\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/AuthorityDTO\"}],\"definitions\":{\"AuthorityDTO\":{\"title\":\"AuthorityDTO\",\"description\":\"ROLE objesinin Ek verilerini icermektedir. Mevcut yapidaki authority objesinin yapisini bozmamak icin kurulmustur. ROLE adi. Key bilgisidir. ROLE_ ismiyle baslamalidir. name String required minlength(5) maxlength(50) pattern(/[^ ]/), @author Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Aciklama Bilgisi\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"menus\":{\"description\":\"Sistem rolu ile menuler arasindaki coklu yetkisel iliski.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/MenuNodeDTO\"}},\"name\":{\"description\":\"Ad bilgisidir.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"pages\":{\"description\":\"Sistem rolu ile sayfalar arasindaki coklu yetkisel iliski.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/PageDefinitionDTO\"}},\"responsibilities\":{\"description\":\"Sorumluluklarin sistem rolleri ile olan cokul iliskisi\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ResponsibilityDTO\"}},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"},\"users\":{\"description\":\"Sistem rolu ile userlar arasindaki coklu iliski.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/UserDTO\"}}}},\"UserDTO\":{\"title\":\"UserDTO\",\"type\":\"object\",\"properties\":{\"activated\":{\"type\":\"boolean\"},\"authorities\":{\"type\":\"array\",\"items\":{\"type\":\"string\"}},\"createdBy\":{\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"email\":{\"maxLength\":254,\"minLength\":5,\"type\":\"string\"},\"firstName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"imageUrl\":{\"maxLength\":256,\"minLength\":0,\"type\":\"string\"},\"langKey\":{\"maxLength\":6,\"minLength\":2,\"type\":\"string\"},\"lastModifiedBy\":{\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"lastName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"login\":{\"maxLength\":50,\"minLength\":1,\"pattern\":\"^[_.@A-Za-z0-9-]*$\",\"type\":\"string\"}}},\"ResponsibilityDTO\":{\"title\":\"ResponsibilityDTO\",\"description\":\"Rollerin sahip oldugu sorumluluklari ifade eder. Surec icerisindeki, en kucuk gorev, vazife ve is parcacigini, ifade eder. Bu tanim, Program tarafindan; Modeller ve actionlar uzerinden erisimi ayarlar. Ornek sorumluluk: Kullanici ekleyebilir(bu sayede kullanici ekle, sil, duzenle, kullaniciya departman ata, unvan tanimla vb..) Fatura Hazirlayabilir, Musteri Kaydi yapabilir, Tc Kimlik Biglisine Erisebilir gibi... @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Sorumluluk ismi, Keyi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}},\"PageDefinitionDTO\":{\"title\":\"PageDefinitionDTO\",\"description\":\"Web UI sayfa(route, url) bilgilerini saklanacagi yerdir. Optional, Uygulamamizdaki web page bilgileri hatta bu page lerin yetki kisitlamasida buradan yapilabilir. @author The Aurora Developer team.\",\"required\":[\"name\",\"url\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Uzun detayli aciklama bilgisi.\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Kendine has uniqe isim bilgisi. Sayfa ismi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"parentId\":{\"format\":\"int64\",\"description\":\"page url tanimlarinin birbiriyle olan parent child iliskisi\",\"type\":\"integer\"},\"parentName\":{\"type\":\"string\"},\"shortName\":{\"description\":\"Kisa isim bilgisi.\",\"maxLength\":30,\"minLength\":1,\"type\":\"string\"},\"status\":{\"description\":\"Aktiflik Pasiflik bilgisidir. Pasif ise erisime tamamen kapalidir.\",\"type\":\"boolean\"},\"url\":{\"description\":\"Sayfa veya sayfanin icindeki, servis cagrimi yapacak url bilgisidir. Sayfanin ana urlsi veya event icinde olabilir.\",\"maxLength\":1000,\"minLength\":1,\"type\":\"string\"}}},\"MenuNodeDTO\":{\"title\":\"MenuNodeDTO\",\"description\":\"Menulerin tanimlarinin yapildigi yerdir. @author The Aurora Developer team.\",\"required\":[\"i18nName\",\"name\",\"stateRef\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Menuye ait aciklama bilgisidir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"i18nName\":{\"description\":\"Menuye ait i18n bilgisidir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"icon\":{\"description\":\"Menunun isminin yaninda gorunecek icon yoludur. bu yol genelde bir url'dir veya dosya yoludur.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"leaf\":{\"description\":\"Menu dal mi, yaprak mi belirlemek icin kullanilir. eger true ise bunun altinda menu yoktur bu bir sayfayi acmak icin kullanilir. false ise ust menudur.\",\"type\":\"boolean\"},\"name\":{\"description\":\"Menuye ait isim bilgisidir. Menulerde gorunecek isimdir. Onemlidir.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Menunun listede goruntulenecek sirasidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"pageId\":{\"format\":\"int64\",\"description\":\"Menu Node page urllerle olan bagini gostermektedir.\",\"type\":\"integer\"},\"pageUrl\":{\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"string\"},\"parentId\":{\"format\":\"int64\",\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"integer\"},\"parentName\":{\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"string\"},\"stateRef\":{\"description\":\"Menunun acacagi state referans bilgisi Orn:#/visitor\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"status\":{\"description\":\"Aktif pasiflik bilgisidir.\",\"type\":\"boolean\"},\"subMenus\":{\"description\":\"Menulerin icerdigi alt menuleri listeler..\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/MenuNodeDTO\"}},\"translation\":{\"$ref\":\"#/definitions/MenuNodeLangDTO\"}}},\"MenuNodeLangDTO\":{\"title\":\"MenuNodeLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"langCode\":{\"description\":\"Dil kodu code bilgisinin icermektedir.\",\"type\":\"string\"},\"langId\":{\"format\":\"int64\",\"description\":\"Dil kodu id bilgisinin icermektedir.\",\"type\":\"integer\"},\"langName\":{\"description\":\"Dil kodu adidir.\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/AuthorityDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"name\": \"tempor aliquip Duis\",\n \"createdBy\": \"aliqua proident mollit\",\n \"createdDate\": \"1952-06-14T09:13:40.677Z\",\n \"description\": \"in\",\n \"id\": 3963538,\n \"lastModifiedBy\": \"reprehenderit\",\n \"lastModifiedDate\": \"1970-07-10T22:37:47.909Z\",\n \"menus\": [],\n \"orderPriority\": -48665831,\n \"pages\": [],\n \"responsibilities\": [],\n \"status\": false,\n \"users\": []\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/AuthorityDTO\"}],\"definitions\":{\"AuthorityDTO\":{\"title\":\"AuthorityDTO\",\"description\":\"ROLE objesinin Ek verilerini icermektedir. Mevcut yapidaki authority objesinin yapisini bozmamak icin kurulmustur. ROLE adi. Key bilgisidir. ROLE_ ismiyle baslamalidir. name String required minlength(5) maxlength(50) pattern(/[^ ]/), @author Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Aciklama Bilgisi\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"menus\":{\"description\":\"Sistem rolu ile menuler arasindaki coklu yetkisel iliski.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/MenuNodeDTO\"}},\"name\":{\"description\":\"Ad bilgisidir.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"pages\":{\"description\":\"Sistem rolu ile sayfalar arasindaki coklu yetkisel iliski.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/PageDefinitionDTO\"}},\"responsibilities\":{\"description\":\"Sorumluluklarin sistem rolleri ile olan cokul iliskisi\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ResponsibilityDTO\"}},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"},\"users\":{\"description\":\"Sistem rolu ile userlar arasindaki coklu iliski.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/UserDTO\"}}}},\"UserDTO\":{\"title\":\"UserDTO\",\"type\":\"object\",\"properties\":{\"activated\":{\"type\":\"boolean\"},\"authorities\":{\"type\":\"array\",\"items\":{\"type\":\"string\"}},\"createdBy\":{\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"email\":{\"maxLength\":254,\"minLength\":5,\"type\":\"string\"},\"firstName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"imageUrl\":{\"maxLength\":256,\"minLength\":0,\"type\":\"string\"},\"langKey\":{\"maxLength\":6,\"minLength\":2,\"type\":\"string\"},\"lastModifiedBy\":{\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"lastName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"login\":{\"maxLength\":50,\"minLength\":1,\"pattern\":\"^[_.@A-Za-z0-9-]*$\",\"type\":\"string\"}}},\"ResponsibilityDTO\":{\"title\":\"ResponsibilityDTO\",\"description\":\"Rollerin sahip oldugu sorumluluklari ifade eder. Surec icerisindeki, en kucuk gorev, vazife ve is parcacigini, ifade eder. Bu tanim, Program tarafindan; Modeller ve actionlar uzerinden erisimi ayarlar. Ornek sorumluluk: Kullanici ekleyebilir(bu sayede kullanici ekle, sil, duzenle, kullaniciya departman ata, unvan tanimla vb..) Fatura Hazirlayabilir, Musteri Kaydi yapabilir, Tc Kimlik Biglisine Erisebilir gibi... @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Sorumluluk ismi, Keyi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}},\"PageDefinitionDTO\":{\"title\":\"PageDefinitionDTO\",\"description\":\"Web UI sayfa(route, url) bilgilerini saklanacagi yerdir. Optional, Uygulamamizdaki web page bilgileri hatta bu page lerin yetki kisitlamasida buradan yapilabilir. @author The Aurora Developer team.\",\"required\":[\"name\",\"url\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Uzun detayli aciklama bilgisi.\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Kendine has uniqe isim bilgisi. Sayfa ismi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"parentId\":{\"format\":\"int64\",\"description\":\"page url tanimlarinin birbiriyle olan parent child iliskisi\",\"type\":\"integer\"},\"parentName\":{\"type\":\"string\"},\"shortName\":{\"description\":\"Kisa isim bilgisi.\",\"maxLength\":30,\"minLength\":1,\"type\":\"string\"},\"status\":{\"description\":\"Aktiflik Pasiflik bilgisidir. Pasif ise erisime tamamen kapalidir.\",\"type\":\"boolean\"},\"url\":{\"description\":\"Sayfa veya sayfanin icindeki, servis cagrimi yapacak url bilgisidir. Sayfanin ana urlsi veya event icinde olabilir.\",\"maxLength\":1000,\"minLength\":1,\"type\":\"string\"}}},\"MenuNodeDTO\":{\"title\":\"MenuNodeDTO\",\"description\":\"Menulerin tanimlarinin yapildigi yerdir. @author The Aurora Developer team.\",\"required\":[\"i18nName\",\"name\",\"stateRef\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Menuye ait aciklama bilgisidir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"i18nName\":{\"description\":\"Menuye ait i18n bilgisidir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"icon\":{\"description\":\"Menunun isminin yaninda gorunecek icon yoludur. bu yol genelde bir url'dir veya dosya yoludur.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"leaf\":{\"description\":\"Menu dal mi, yaprak mi belirlemek icin kullanilir. eger true ise bunun altinda menu yoktur bu bir sayfayi acmak icin kullanilir. false ise ust menudur.\",\"type\":\"boolean\"},\"name\":{\"description\":\"Menuye ait isim bilgisidir. Menulerde gorunecek isimdir. Onemlidir.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Menunun listede goruntulenecek sirasidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"pageId\":{\"format\":\"int64\",\"description\":\"Menu Node page urllerle olan bagini gostermektedir.\",\"type\":\"integer\"},\"pageUrl\":{\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"string\"},\"parentId\":{\"format\":\"int64\",\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"integer\"},\"parentName\":{\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"string\"},\"stateRef\":{\"description\":\"Menunun acacagi state referans bilgisi Orn:#/visitor\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"status\":{\"description\":\"Aktif pasiflik bilgisidir.\",\"type\":\"boolean\"},\"subMenus\":{\"description\":\"Menulerin icerdigi alt menuleri listeler..\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/MenuNodeDTO\"}},\"translation\":{\"$ref\":\"#/definitions/MenuNodeLangDTO\"}}},\"MenuNodeLangDTO\":{\"title\":\"MenuNodeLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"langCode\":{\"description\":\"Dil kodu code bilgisinin icermektedir.\",\"type\":\"string\"},\"langId\":{\"format\":\"int64\",\"description\":\"Dil kodu id bilgisinin icermektedir.\",\"type\":\"integer\"},\"langName\":{\"description\":\"Dil kodu adidir.\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/AuthorityDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"name\": \"laboris\",\n \"createdBy\": \"anim\",\n \"createdDate\": \"1953-12-13T22:16:39.077Z\",\n \"description\": \"irure in ut quis in\",\n \"id\": 26052941,\n \"lastModifiedBy\": \"aliqua Ut\",\n \"lastModifiedDate\": \"2011-04-27T06:21:46.935Z\",\n \"menus\": [],\n \"orderPriority\": -68293074,\n \"pages\": [],\n \"responsibilities\": [],\n \"status\": true,\n \"users\": []\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/AuthorityDTO\"}],\"definitions\":{\"AuthorityDTO\":{\"title\":\"AuthorityDTO\",\"description\":\"ROLE objesinin Ek verilerini icermektedir. Mevcut yapidaki authority objesinin yapisini bozmamak icin kurulmustur. ROLE adi. Key bilgisidir. ROLE_ ismiyle baslamalidir. name String required minlength(5) maxlength(50) pattern(/[^ ]/), @author Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Aciklama Bilgisi\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"menus\":{\"description\":\"Sistem rolu ile menuler arasindaki coklu yetkisel iliski.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/MenuNodeDTO\"}},\"name\":{\"description\":\"Ad bilgisidir.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"pages\":{\"description\":\"Sistem rolu ile sayfalar arasindaki coklu yetkisel iliski.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/PageDefinitionDTO\"}},\"responsibilities\":{\"description\":\"Sorumluluklarin sistem rolleri ile olan cokul iliskisi\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ResponsibilityDTO\"}},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"},\"users\":{\"description\":\"Sistem rolu ile userlar arasindaki coklu iliski.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/UserDTO\"}}}},\"UserDTO\":{\"title\":\"UserDTO\",\"type\":\"object\",\"properties\":{\"activated\":{\"type\":\"boolean\"},\"authorities\":{\"type\":\"array\",\"items\":{\"type\":\"string\"}},\"createdBy\":{\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"email\":{\"maxLength\":254,\"minLength\":5,\"type\":\"string\"},\"firstName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"imageUrl\":{\"maxLength\":256,\"minLength\":0,\"type\":\"string\"},\"langKey\":{\"maxLength\":6,\"minLength\":2,\"type\":\"string\"},\"lastModifiedBy\":{\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"lastName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"login\":{\"maxLength\":50,\"minLength\":1,\"pattern\":\"^[_.@A-Za-z0-9-]*$\",\"type\":\"string\"}}},\"ResponsibilityDTO\":{\"title\":\"ResponsibilityDTO\",\"description\":\"Rollerin sahip oldugu sorumluluklari ifade eder. Surec icerisindeki, en kucuk gorev, vazife ve is parcacigini, ifade eder. Bu tanim, Program tarafindan; Modeller ve actionlar uzerinden erisimi ayarlar. Ornek sorumluluk: Kullanici ekleyebilir(bu sayede kullanici ekle, sil, duzenle, kullaniciya departman ata, unvan tanimla vb..) Fatura Hazirlayabilir, Musteri Kaydi yapabilir, Tc Kimlik Biglisine Erisebilir gibi... @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Sorumluluk ismi, Keyi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}},\"PageDefinitionDTO\":{\"title\":\"PageDefinitionDTO\",\"description\":\"Web UI sayfa(route, url) bilgilerini saklanacagi yerdir. Optional, Uygulamamizdaki web page bilgileri hatta bu page lerin yetki kisitlamasida buradan yapilabilir. @author The Aurora Developer team.\",\"required\":[\"name\",\"url\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Uzun detayli aciklama bilgisi.\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Kendine has uniqe isim bilgisi. Sayfa ismi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"parentId\":{\"format\":\"int64\",\"description\":\"page url tanimlarinin birbiriyle olan parent child iliskisi\",\"type\":\"integer\"},\"parentName\":{\"type\":\"string\"},\"shortName\":{\"description\":\"Kisa isim bilgisi.\",\"maxLength\":30,\"minLength\":1,\"type\":\"string\"},\"status\":{\"description\":\"Aktiflik Pasiflik bilgisidir. Pasif ise erisime tamamen kapalidir.\",\"type\":\"boolean\"},\"url\":{\"description\":\"Sayfa veya sayfanin icindeki, servis cagrimi yapacak url bilgisidir. Sayfanin ana urlsi veya event icinde olabilir.\",\"maxLength\":1000,\"minLength\":1,\"type\":\"string\"}}},\"MenuNodeDTO\":{\"title\":\"MenuNodeDTO\",\"description\":\"Menulerin tanimlarinin yapildigi yerdir. @author The Aurora Developer team.\",\"required\":[\"i18nName\",\"name\",\"stateRef\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Menuye ait aciklama bilgisidir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"i18nName\":{\"description\":\"Menuye ait i18n bilgisidir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"icon\":{\"description\":\"Menunun isminin yaninda gorunecek icon yoludur. bu yol genelde bir url'dir veya dosya yoludur.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"leaf\":{\"description\":\"Menu dal mi, yaprak mi belirlemek icin kullanilir. eger true ise bunun altinda menu yoktur bu bir sayfayi acmak icin kullanilir. false ise ust menudur.\",\"type\":\"boolean\"},\"name\":{\"description\":\"Menuye ait isim bilgisidir. Menulerde gorunecek isimdir. Onemlidir.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Menunun listede goruntulenecek sirasidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"pageId\":{\"format\":\"int64\",\"description\":\"Menu Node page urllerle olan bagini gostermektedir.\",\"type\":\"integer\"},\"pageUrl\":{\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"string\"},\"parentId\":{\"format\":\"int64\",\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"integer\"},\"parentName\":{\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"string\"},\"stateRef\":{\"description\":\"Menunun acacagi state referans bilgisi Orn:#/visitor\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"status\":{\"description\":\"Aktif pasiflik bilgisidir.\",\"type\":\"boolean\"},\"subMenus\":{\"description\":\"Menulerin icerdigi alt menuleri listeler..\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/MenuNodeDTO\"}},\"translation\":{\"$ref\":\"#/definitions/MenuNodeLangDTO\"}}},\"MenuNodeLangDTO\":{\"title\":\"MenuNodeLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"langCode\":{\"description\":\"Dil kodu code bilgisinin icermektedir.\",\"type\":\"string\"},\"langId\":{\"format\":\"int64\",\"description\":\"Dil kodu id bilgisinin icermektedir.\",\"type\":\"integer\"},\"langName\":{\"description\":\"Dil kodu adidir.\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/AuthorityDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"name\": \"ea velit in veni\",\n \"createdBy\": \"dolor Duis\",\n \"createdDate\": \"1988-11-12T11:14:15.283Z\",\n \"description\": \"quis\",\n \"id\": -29447587,\n \"lastModifiedBy\": \"Lorem mollit Duis sint\",\n \"lastModifiedDate\": \"1986-07-09T16:24:13.734Z\",\n \"menus\": [],\n \"orderPriority\": -85107143,\n \"pages\": [],\n \"responsibilities\": [],\n \"status\": true,\n \"users\": []\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/AuthorityDTO\"}],\"definitions\":{\"AuthorityDTO\":{\"title\":\"AuthorityDTO\",\"description\":\"ROLE objesinin Ek verilerini icermektedir. Mevcut yapidaki authority objesinin yapisini bozmamak icin kurulmustur. ROLE adi. Key bilgisidir. ROLE_ ismiyle baslamalidir. name String required minlength(5) maxlength(50) pattern(/[^ ]/), @author Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Aciklama Bilgisi\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"menus\":{\"description\":\"Sistem rolu ile menuler arasindaki coklu yetkisel iliski.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/MenuNodeDTO\"}},\"name\":{\"description\":\"Ad bilgisidir.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"pages\":{\"description\":\"Sistem rolu ile sayfalar arasindaki coklu yetkisel iliski.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/PageDefinitionDTO\"}},\"responsibilities\":{\"description\":\"Sorumluluklarin sistem rolleri ile olan cokul iliskisi\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ResponsibilityDTO\"}},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"},\"users\":{\"description\":\"Sistem rolu ile userlar arasindaki coklu iliski.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/UserDTO\"}}}},\"UserDTO\":{\"title\":\"UserDTO\",\"type\":\"object\",\"properties\":{\"activated\":{\"type\":\"boolean\"},\"authorities\":{\"type\":\"array\",\"items\":{\"type\":\"string\"}},\"createdBy\":{\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"email\":{\"maxLength\":254,\"minLength\":5,\"type\":\"string\"},\"firstName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"imageUrl\":{\"maxLength\":256,\"minLength\":0,\"type\":\"string\"},\"langKey\":{\"maxLength\":6,\"minLength\":2,\"type\":\"string\"},\"lastModifiedBy\":{\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"lastName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"login\":{\"maxLength\":50,\"minLength\":1,\"pattern\":\"^[_.@A-Za-z0-9-]*$\",\"type\":\"string\"}}},\"ResponsibilityDTO\":{\"title\":\"ResponsibilityDTO\",\"description\":\"Rollerin sahip oldugu sorumluluklari ifade eder. Surec icerisindeki, en kucuk gorev, vazife ve is parcacigini, ifade eder. Bu tanim, Program tarafindan; Modeller ve actionlar uzerinden erisimi ayarlar. Ornek sorumluluk: Kullanici ekleyebilir(bu sayede kullanici ekle, sil, duzenle, kullaniciya departman ata, unvan tanimla vb..) Fatura Hazirlayabilir, Musteri Kaydi yapabilir, Tc Kimlik Biglisine Erisebilir gibi... @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Sorumluluk ismi, Keyi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}},\"PageDefinitionDTO\":{\"title\":\"PageDefinitionDTO\",\"description\":\"Web UI sayfa(route, url) bilgilerini saklanacagi yerdir. Optional, Uygulamamizdaki web page bilgileri hatta bu page lerin yetki kisitlamasida buradan yapilabilir. @author The Aurora Developer team.\",\"required\":[\"name\",\"url\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Uzun detayli aciklama bilgisi.\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Kendine has uniqe isim bilgisi. Sayfa ismi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"parentId\":{\"format\":\"int64\",\"description\":\"page url tanimlarinin birbiriyle olan parent child iliskisi\",\"type\":\"integer\"},\"parentName\":{\"type\":\"string\"},\"shortName\":{\"description\":\"Kisa isim bilgisi.\",\"maxLength\":30,\"minLength\":1,\"type\":\"string\"},\"status\":{\"description\":\"Aktiflik Pasiflik bilgisidir. Pasif ise erisime tamamen kapalidir.\",\"type\":\"boolean\"},\"url\":{\"description\":\"Sayfa veya sayfanin icindeki, servis cagrimi yapacak url bilgisidir. Sayfanin ana urlsi veya event icinde olabilir.\",\"maxLength\":1000,\"minLength\":1,\"type\":\"string\"}}},\"MenuNodeDTO\":{\"title\":\"MenuNodeDTO\",\"description\":\"Menulerin tanimlarinin yapildigi yerdir. @author The Aurora Developer team.\",\"required\":[\"i18nName\",\"name\",\"stateRef\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Menuye ait aciklama bilgisidir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"i18nName\":{\"description\":\"Menuye ait i18n bilgisidir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"icon\":{\"description\":\"Menunun isminin yaninda gorunecek icon yoludur. bu yol genelde bir url'dir veya dosya yoludur.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"leaf\":{\"description\":\"Menu dal mi, yaprak mi belirlemek icin kullanilir. eger true ise bunun altinda menu yoktur bu bir sayfayi acmak icin kullanilir. false ise ust menudur.\",\"type\":\"boolean\"},\"name\":{\"description\":\"Menuye ait isim bilgisidir. Menulerde gorunecek isimdir. Onemlidir.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Menunun listede goruntulenecek sirasidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"pageId\":{\"format\":\"int64\",\"description\":\"Menu Node page urllerle olan bagini gostermektedir.\",\"type\":\"integer\"},\"pageUrl\":{\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"string\"},\"parentId\":{\"format\":\"int64\",\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"integer\"},\"parentName\":{\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"string\"},\"stateRef\":{\"description\":\"Menunun acacagi state referans bilgisi Orn:#/visitor\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"status\":{\"description\":\"Aktif pasiflik bilgisidir.\",\"type\":\"boolean\"},\"subMenus\":{\"description\":\"Menulerin icerdigi alt menuleri listeler..\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/MenuNodeDTO\"}},\"translation\":{\"$ref\":\"#/definitions/MenuNodeLangDTO\"}}},\"MenuNodeLangDTO\":{\"title\":\"MenuNodeLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"langCode\":{\"description\":\"Dil kodu code bilgisinin icermektedir.\",\"type\":\"string\"},\"langId\":{\"format\":\"int64\",\"description\":\"Dil kodu id bilgisinin icermektedir.\",\"type\":\"integer\"},\"langName\":{\"description\":\"Dil kodu adidir.\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/AuthorityDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "createAuthority" + }, + "id": { + "element": "string", + "content": "createAuthorityUsingPOST" + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"name\": \"Ut sint ess\",\n \"createdBy\": \"officia eiusmod esse sint\",\n \"createdDate\": \"1963-04-14T13:11:47.777Z\",\n \"description\": \"Excepteur elit fugiat in ut\",\n \"id\": -86697317,\n \"lastModifiedBy\": \"ad\",\n \"lastModifiedDate\": \"2011-07-04T07:13:52.160Z\",\n \"menus\": [],\n \"orderPriority\": -94445696,\n \"pages\": [],\n \"responsibilities\": [],\n \"status\": true,\n \"users\": []\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/AuthorityDTO\"}],\"definitions\":{\"AuthorityDTO\":{\"title\":\"AuthorityDTO\",\"description\":\"ROLE objesinin Ek verilerini icermektedir. Mevcut yapidaki authority objesinin yapisini bozmamak icin kurulmustur. ROLE adi. Key bilgisidir. ROLE_ ismiyle baslamalidir. name String required minlength(5) maxlength(50) pattern(/[^ ]/), @author Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Aciklama Bilgisi\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"menus\":{\"description\":\"Sistem rolu ile menuler arasindaki coklu yetkisel iliski.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/MenuNodeDTO\"}},\"name\":{\"description\":\"Ad bilgisidir.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"pages\":{\"description\":\"Sistem rolu ile sayfalar arasindaki coklu yetkisel iliski.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/PageDefinitionDTO\"}},\"responsibilities\":{\"description\":\"Sorumluluklarin sistem rolleri ile olan cokul iliskisi\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ResponsibilityDTO\"}},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"},\"users\":{\"description\":\"Sistem rolu ile userlar arasindaki coklu iliski.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/UserDTO\"}}}},\"UserDTO\":{\"title\":\"UserDTO\",\"type\":\"object\",\"properties\":{\"activated\":{\"type\":\"boolean\"},\"authorities\":{\"type\":\"array\",\"items\":{\"type\":\"string\"}},\"createdBy\":{\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"email\":{\"maxLength\":254,\"minLength\":5,\"type\":\"string\"},\"firstName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"imageUrl\":{\"maxLength\":256,\"minLength\":0,\"type\":\"string\"},\"langKey\":{\"maxLength\":6,\"minLength\":2,\"type\":\"string\"},\"lastModifiedBy\":{\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"lastName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"login\":{\"maxLength\":50,\"minLength\":1,\"pattern\":\"^[_.@A-Za-z0-9-]*$\",\"type\":\"string\"}}},\"ResponsibilityDTO\":{\"title\":\"ResponsibilityDTO\",\"description\":\"Rollerin sahip oldugu sorumluluklari ifade eder. Surec icerisindeki, en kucuk gorev, vazife ve is parcacigini, ifade eder. Bu tanim, Program tarafindan; Modeller ve actionlar uzerinden erisimi ayarlar. Ornek sorumluluk: Kullanici ekleyebilir(bu sayede kullanici ekle, sil, duzenle, kullaniciya departman ata, unvan tanimla vb..) Fatura Hazirlayabilir, Musteri Kaydi yapabilir, Tc Kimlik Biglisine Erisebilir gibi... @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Sorumluluk ismi, Keyi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}},\"PageDefinitionDTO\":{\"title\":\"PageDefinitionDTO\",\"description\":\"Web UI sayfa(route, url) bilgilerini saklanacagi yerdir. Optional, Uygulamamizdaki web page bilgileri hatta bu page lerin yetki kisitlamasida buradan yapilabilir. @author The Aurora Developer team.\",\"required\":[\"name\",\"url\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Uzun detayli aciklama bilgisi.\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Kendine has uniqe isim bilgisi. Sayfa ismi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"parentId\":{\"format\":\"int64\",\"description\":\"page url tanimlarinin birbiriyle olan parent child iliskisi\",\"type\":\"integer\"},\"parentName\":{\"type\":\"string\"},\"shortName\":{\"description\":\"Kisa isim bilgisi.\",\"maxLength\":30,\"minLength\":1,\"type\":\"string\"},\"status\":{\"description\":\"Aktiflik Pasiflik bilgisidir. Pasif ise erisime tamamen kapalidir.\",\"type\":\"boolean\"},\"url\":{\"description\":\"Sayfa veya sayfanin icindeki, servis cagrimi yapacak url bilgisidir. Sayfanin ana urlsi veya event icinde olabilir.\",\"maxLength\":1000,\"minLength\":1,\"type\":\"string\"}}},\"MenuNodeDTO\":{\"title\":\"MenuNodeDTO\",\"description\":\"Menulerin tanimlarinin yapildigi yerdir. @author The Aurora Developer team.\",\"required\":[\"i18nName\",\"name\",\"stateRef\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Menuye ait aciklama bilgisidir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"i18nName\":{\"description\":\"Menuye ait i18n bilgisidir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"icon\":{\"description\":\"Menunun isminin yaninda gorunecek icon yoludur. bu yol genelde bir url'dir veya dosya yoludur.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"leaf\":{\"description\":\"Menu dal mi, yaprak mi belirlemek icin kullanilir. eger true ise bunun altinda menu yoktur bu bir sayfayi acmak icin kullanilir. false ise ust menudur.\",\"type\":\"boolean\"},\"name\":{\"description\":\"Menuye ait isim bilgisidir. Menulerde gorunecek isimdir. Onemlidir.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Menunun listede goruntulenecek sirasidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"pageId\":{\"format\":\"int64\",\"description\":\"Menu Node page urllerle olan bagini gostermektedir.\",\"type\":\"integer\"},\"pageUrl\":{\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"string\"},\"parentId\":{\"format\":\"int64\",\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"integer\"},\"parentName\":{\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"string\"},\"stateRef\":{\"description\":\"Menunun acacagi state referans bilgisi Orn:#/visitor\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"status\":{\"description\":\"Aktif pasiflik bilgisidir.\",\"type\":\"boolean\"},\"subMenus\":{\"description\":\"Menulerin icerdigi alt menuleri listeler..\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/MenuNodeDTO\"}},\"translation\":{\"$ref\":\"#/definitions/MenuNodeLangDTO\"}}},\"MenuNodeLangDTO\":{\"title\":\"MenuNodeLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"langCode\":{\"description\":\"Dil kodu code bilgisinin icermektedir.\",\"type\":\"string\"},\"langId\":{\"format\":\"int64\",\"description\":\"Dil kodu id bilgisinin icermektedir.\",\"type\":\"integer\"},\"langName\":{\"description\":\"Dil kodu adidir.\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/AuthorityDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/AuthorityDTO\"}],\"definitions\":{\"AuthorityDTO\":{\"title\":\"AuthorityDTO\",\"description\":\"ROLE objesinin Ek verilerini icermektedir. Mevcut yapidaki authority objesinin yapisini bozmamak icin kurulmustur. ROLE adi. Key bilgisidir. ROLE_ ismiyle baslamalidir. name String required minlength(5) maxlength(50) pattern(/[^ ]/), @author Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Aciklama Bilgisi\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"menus\":{\"description\":\"Sistem rolu ile menuler arasindaki coklu yetkisel iliski.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/MenuNodeDTO\"}},\"name\":{\"description\":\"Ad bilgisidir.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"pages\":{\"description\":\"Sistem rolu ile sayfalar arasindaki coklu yetkisel iliski.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/PageDefinitionDTO\"}},\"responsibilities\":{\"description\":\"Sorumluluklarin sistem rolleri ile olan cokul iliskisi\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ResponsibilityDTO\"}},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"},\"users\":{\"description\":\"Sistem rolu ile userlar arasindaki coklu iliski.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/UserDTO\"}}}},\"UserDTO\":{\"title\":\"UserDTO\",\"type\":\"object\",\"properties\":{\"activated\":{\"type\":\"boolean\"},\"authorities\":{\"type\":\"array\",\"items\":{\"type\":\"string\"}},\"createdBy\":{\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"email\":{\"maxLength\":254,\"minLength\":5,\"type\":\"string\"},\"firstName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"imageUrl\":{\"maxLength\":256,\"minLength\":0,\"type\":\"string\"},\"langKey\":{\"maxLength\":6,\"minLength\":2,\"type\":\"string\"},\"lastModifiedBy\":{\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"lastName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"login\":{\"maxLength\":50,\"minLength\":1,\"pattern\":\"^[_.@A-Za-z0-9-]*$\",\"type\":\"string\"}}},\"ResponsibilityDTO\":{\"title\":\"ResponsibilityDTO\",\"description\":\"Rollerin sahip oldugu sorumluluklari ifade eder. Surec icerisindeki, en kucuk gorev, vazife ve is parcacigini, ifade eder. Bu tanim, Program tarafindan; Modeller ve actionlar uzerinden erisimi ayarlar. Ornek sorumluluk: Kullanici ekleyebilir(bu sayede kullanici ekle, sil, duzenle, kullaniciya departman ata, unvan tanimla vb..) Fatura Hazirlayabilir, Musteri Kaydi yapabilir, Tc Kimlik Biglisine Erisebilir gibi... @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Sorumluluk ismi, Keyi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}},\"PageDefinitionDTO\":{\"title\":\"PageDefinitionDTO\",\"description\":\"Web UI sayfa(route, url) bilgilerini saklanacagi yerdir. Optional, Uygulamamizdaki web page bilgileri hatta bu page lerin yetki kisitlamasida buradan yapilabilir. @author The Aurora Developer team.\",\"required\":[\"name\",\"url\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Uzun detayli aciklama bilgisi.\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Kendine has uniqe isim bilgisi. Sayfa ismi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"parentId\":{\"format\":\"int64\",\"description\":\"page url tanimlarinin birbiriyle olan parent child iliskisi\",\"type\":\"integer\"},\"parentName\":{\"type\":\"string\"},\"shortName\":{\"description\":\"Kisa isim bilgisi.\",\"maxLength\":30,\"minLength\":1,\"type\":\"string\"},\"status\":{\"description\":\"Aktiflik Pasiflik bilgisidir. Pasif ise erisime tamamen kapalidir.\",\"type\":\"boolean\"},\"url\":{\"description\":\"Sayfa veya sayfanin icindeki, servis cagrimi yapacak url bilgisidir. Sayfanin ana urlsi veya event icinde olabilir.\",\"maxLength\":1000,\"minLength\":1,\"type\":\"string\"}}},\"MenuNodeDTO\":{\"title\":\"MenuNodeDTO\",\"description\":\"Menulerin tanimlarinin yapildigi yerdir. @author The Aurora Developer team.\",\"required\":[\"i18nName\",\"name\",\"stateRef\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Menuye ait aciklama bilgisidir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"i18nName\":{\"description\":\"Menuye ait i18n bilgisidir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"icon\":{\"description\":\"Menunun isminin yaninda gorunecek icon yoludur. bu yol genelde bir url'dir veya dosya yoludur.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"leaf\":{\"description\":\"Menu dal mi, yaprak mi belirlemek icin kullanilir. eger true ise bunun altinda menu yoktur bu bir sayfayi acmak icin kullanilir. false ise ust menudur.\",\"type\":\"boolean\"},\"name\":{\"description\":\"Menuye ait isim bilgisidir. Menulerde gorunecek isimdir. Onemlidir.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Menunun listede goruntulenecek sirasidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"pageId\":{\"format\":\"int64\",\"description\":\"Menu Node page urllerle olan bagini gostermektedir.\",\"type\":\"integer\"},\"pageUrl\":{\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"string\"},\"parentId\":{\"format\":\"int64\",\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"integer\"},\"parentName\":{\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"string\"},\"stateRef\":{\"description\":\"Menunun acacagi state referans bilgisi Orn:#/visitor\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"status\":{\"description\":\"Aktif pasiflik bilgisidir.\",\"type\":\"boolean\"},\"subMenus\":{\"description\":\"Menulerin icerdigi alt menuleri listeler..\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/MenuNodeDTO\"}},\"translation\":{\"$ref\":\"#/definitions/MenuNodeLangDTO\"}}},\"MenuNodeLangDTO\":{\"title\":\"MenuNodeLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"langCode\":{\"description\":\"Dil kodu code bilgisinin icermektedir.\",\"type\":\"string\"},\"langId\":{\"format\":\"int64\",\"description\":\"Dil kodu id bilgisinin icermektedir.\",\"type\":\"integer\"},\"langName\":{\"description\":\"Dil kodu adidir.\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/AuthorityDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"name\": \"l\",\n \"createdBy\": \"ad irur\",\n \"createdDate\": \"1968-09-17T10:39:31.218Z\",\n \"description\": \"Duis\",\n \"id\": -53641151,\n \"lastModifiedBy\": \"cons\",\n \"lastModifiedDate\": \"2018-05-23T01:04:38.021Z\",\n \"menus\": [],\n \"orderPriority\": -58728068,\n \"pages\": [],\n \"responsibilities\": [],\n \"status\": true,\n \"users\": []\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/AuthorityDTO\"}],\"definitions\":{\"AuthorityDTO\":{\"title\":\"AuthorityDTO\",\"description\":\"ROLE objesinin Ek verilerini icermektedir. Mevcut yapidaki authority objesinin yapisini bozmamak icin kurulmustur. ROLE adi. Key bilgisidir. ROLE_ ismiyle baslamalidir. name String required minlength(5) maxlength(50) pattern(/[^ ]/), @author Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Aciklama Bilgisi\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"menus\":{\"description\":\"Sistem rolu ile menuler arasindaki coklu yetkisel iliski.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/MenuNodeDTO\"}},\"name\":{\"description\":\"Ad bilgisidir.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"pages\":{\"description\":\"Sistem rolu ile sayfalar arasindaki coklu yetkisel iliski.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/PageDefinitionDTO\"}},\"responsibilities\":{\"description\":\"Sorumluluklarin sistem rolleri ile olan cokul iliskisi\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ResponsibilityDTO\"}},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"},\"users\":{\"description\":\"Sistem rolu ile userlar arasindaki coklu iliski.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/UserDTO\"}}}},\"UserDTO\":{\"title\":\"UserDTO\",\"type\":\"object\",\"properties\":{\"activated\":{\"type\":\"boolean\"},\"authorities\":{\"type\":\"array\",\"items\":{\"type\":\"string\"}},\"createdBy\":{\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"email\":{\"maxLength\":254,\"minLength\":5,\"type\":\"string\"},\"firstName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"imageUrl\":{\"maxLength\":256,\"minLength\":0,\"type\":\"string\"},\"langKey\":{\"maxLength\":6,\"minLength\":2,\"type\":\"string\"},\"lastModifiedBy\":{\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"lastName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"login\":{\"maxLength\":50,\"minLength\":1,\"pattern\":\"^[_.@A-Za-z0-9-]*$\",\"type\":\"string\"}}},\"ResponsibilityDTO\":{\"title\":\"ResponsibilityDTO\",\"description\":\"Rollerin sahip oldugu sorumluluklari ifade eder. Surec icerisindeki, en kucuk gorev, vazife ve is parcacigini, ifade eder. Bu tanim, Program tarafindan; Modeller ve actionlar uzerinden erisimi ayarlar. Ornek sorumluluk: Kullanici ekleyebilir(bu sayede kullanici ekle, sil, duzenle, kullaniciya departman ata, unvan tanimla vb..) Fatura Hazirlayabilir, Musteri Kaydi yapabilir, Tc Kimlik Biglisine Erisebilir gibi... @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Sorumluluk ismi, Keyi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}},\"PageDefinitionDTO\":{\"title\":\"PageDefinitionDTO\",\"description\":\"Web UI sayfa(route, url) bilgilerini saklanacagi yerdir. Optional, Uygulamamizdaki web page bilgileri hatta bu page lerin yetki kisitlamasida buradan yapilabilir. @author The Aurora Developer team.\",\"required\":[\"name\",\"url\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Uzun detayli aciklama bilgisi.\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Kendine has uniqe isim bilgisi. Sayfa ismi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"parentId\":{\"format\":\"int64\",\"description\":\"page url tanimlarinin birbiriyle olan parent child iliskisi\",\"type\":\"integer\"},\"parentName\":{\"type\":\"string\"},\"shortName\":{\"description\":\"Kisa isim bilgisi.\",\"maxLength\":30,\"minLength\":1,\"type\":\"string\"},\"status\":{\"description\":\"Aktiflik Pasiflik bilgisidir. Pasif ise erisime tamamen kapalidir.\",\"type\":\"boolean\"},\"url\":{\"description\":\"Sayfa veya sayfanin icindeki, servis cagrimi yapacak url bilgisidir. Sayfanin ana urlsi veya event icinde olabilir.\",\"maxLength\":1000,\"minLength\":1,\"type\":\"string\"}}},\"MenuNodeDTO\":{\"title\":\"MenuNodeDTO\",\"description\":\"Menulerin tanimlarinin yapildigi yerdir. @author The Aurora Developer team.\",\"required\":[\"i18nName\",\"name\",\"stateRef\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Menuye ait aciklama bilgisidir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"i18nName\":{\"description\":\"Menuye ait i18n bilgisidir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"icon\":{\"description\":\"Menunun isminin yaninda gorunecek icon yoludur. bu yol genelde bir url'dir veya dosya yoludur.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"leaf\":{\"description\":\"Menu dal mi, yaprak mi belirlemek icin kullanilir. eger true ise bunun altinda menu yoktur bu bir sayfayi acmak icin kullanilir. false ise ust menudur.\",\"type\":\"boolean\"},\"name\":{\"description\":\"Menuye ait isim bilgisidir. Menulerde gorunecek isimdir. Onemlidir.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Menunun listede goruntulenecek sirasidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"pageId\":{\"format\":\"int64\",\"description\":\"Menu Node page urllerle olan bagini gostermektedir.\",\"type\":\"integer\"},\"pageUrl\":{\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"string\"},\"parentId\":{\"format\":\"int64\",\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"integer\"},\"parentName\":{\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"string\"},\"stateRef\":{\"description\":\"Menunun acacagi state referans bilgisi Orn:#/visitor\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"status\":{\"description\":\"Aktif pasiflik bilgisidir.\",\"type\":\"boolean\"},\"subMenus\":{\"description\":\"Menulerin icerdigi alt menuleri listeler..\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/MenuNodeDTO\"}},\"translation\":{\"$ref\":\"#/definitions/MenuNodeLangDTO\"}}},\"MenuNodeLangDTO\":{\"title\":\"MenuNodeLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"langCode\":{\"description\":\"Dil kodu code bilgisinin icermektedir.\",\"type\":\"string\"},\"langId\":{\"format\":\"int64\",\"description\":\"Dil kodu id bilgisinin icermektedir.\",\"type\":\"integer\"},\"langName\":{\"description\":\"Dil kodu adidir.\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/AuthorityDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"name\": \"consectetur dolore reprehend\",\n \"createdBy\": \"reprehenderit in ipsum in\",\n \"createdDate\": \"2017-09-20T01:59:23.992Z\",\n \"description\": \"e\",\n \"id\": -97675287,\n \"lastModifiedBy\": \"anim sed incidi\",\n \"lastModifiedDate\": \"1941-08-09T10:35:04.891Z\",\n \"menus\": [],\n \"orderPriority\": -41792865,\n \"pages\": [],\n \"responsibilities\": [],\n \"status\": true,\n \"users\": []\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/AuthorityDTO\"}],\"definitions\":{\"AuthorityDTO\":{\"title\":\"AuthorityDTO\",\"description\":\"ROLE objesinin Ek verilerini icermektedir. Mevcut yapidaki authority objesinin yapisini bozmamak icin kurulmustur. ROLE adi. Key bilgisidir. ROLE_ ismiyle baslamalidir. name String required minlength(5) maxlength(50) pattern(/[^ ]/), @author Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Aciklama Bilgisi\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"menus\":{\"description\":\"Sistem rolu ile menuler arasindaki coklu yetkisel iliski.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/MenuNodeDTO\"}},\"name\":{\"description\":\"Ad bilgisidir.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"pages\":{\"description\":\"Sistem rolu ile sayfalar arasindaki coklu yetkisel iliski.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/PageDefinitionDTO\"}},\"responsibilities\":{\"description\":\"Sorumluluklarin sistem rolleri ile olan cokul iliskisi\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ResponsibilityDTO\"}},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"},\"users\":{\"description\":\"Sistem rolu ile userlar arasindaki coklu iliski.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/UserDTO\"}}}},\"UserDTO\":{\"title\":\"UserDTO\",\"type\":\"object\",\"properties\":{\"activated\":{\"type\":\"boolean\"},\"authorities\":{\"type\":\"array\",\"items\":{\"type\":\"string\"}},\"createdBy\":{\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"email\":{\"maxLength\":254,\"minLength\":5,\"type\":\"string\"},\"firstName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"imageUrl\":{\"maxLength\":256,\"minLength\":0,\"type\":\"string\"},\"langKey\":{\"maxLength\":6,\"minLength\":2,\"type\":\"string\"},\"lastModifiedBy\":{\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"lastName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"login\":{\"maxLength\":50,\"minLength\":1,\"pattern\":\"^[_.@A-Za-z0-9-]*$\",\"type\":\"string\"}}},\"ResponsibilityDTO\":{\"title\":\"ResponsibilityDTO\",\"description\":\"Rollerin sahip oldugu sorumluluklari ifade eder. Surec icerisindeki, en kucuk gorev, vazife ve is parcacigini, ifade eder. Bu tanim, Program tarafindan; Modeller ve actionlar uzerinden erisimi ayarlar. Ornek sorumluluk: Kullanici ekleyebilir(bu sayede kullanici ekle, sil, duzenle, kullaniciya departman ata, unvan tanimla vb..) Fatura Hazirlayabilir, Musteri Kaydi yapabilir, Tc Kimlik Biglisine Erisebilir gibi... @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Sorumluluk ismi, Keyi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}},\"PageDefinitionDTO\":{\"title\":\"PageDefinitionDTO\",\"description\":\"Web UI sayfa(route, url) bilgilerini saklanacagi yerdir. Optional, Uygulamamizdaki web page bilgileri hatta bu page lerin yetki kisitlamasida buradan yapilabilir. @author The Aurora Developer team.\",\"required\":[\"name\",\"url\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Uzun detayli aciklama bilgisi.\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Kendine has uniqe isim bilgisi. Sayfa ismi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"parentId\":{\"format\":\"int64\",\"description\":\"page url tanimlarinin birbiriyle olan parent child iliskisi\",\"type\":\"integer\"},\"parentName\":{\"type\":\"string\"},\"shortName\":{\"description\":\"Kisa isim bilgisi.\",\"maxLength\":30,\"minLength\":1,\"type\":\"string\"},\"status\":{\"description\":\"Aktiflik Pasiflik bilgisidir. Pasif ise erisime tamamen kapalidir.\",\"type\":\"boolean\"},\"url\":{\"description\":\"Sayfa veya sayfanin icindeki, servis cagrimi yapacak url bilgisidir. Sayfanin ana urlsi veya event icinde olabilir.\",\"maxLength\":1000,\"minLength\":1,\"type\":\"string\"}}},\"MenuNodeDTO\":{\"title\":\"MenuNodeDTO\",\"description\":\"Menulerin tanimlarinin yapildigi yerdir. @author The Aurora Developer team.\",\"required\":[\"i18nName\",\"name\",\"stateRef\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Menuye ait aciklama bilgisidir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"i18nName\":{\"description\":\"Menuye ait i18n bilgisidir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"icon\":{\"description\":\"Menunun isminin yaninda gorunecek icon yoludur. bu yol genelde bir url'dir veya dosya yoludur.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"leaf\":{\"description\":\"Menu dal mi, yaprak mi belirlemek icin kullanilir. eger true ise bunun altinda menu yoktur bu bir sayfayi acmak icin kullanilir. false ise ust menudur.\",\"type\":\"boolean\"},\"name\":{\"description\":\"Menuye ait isim bilgisidir. Menulerde gorunecek isimdir. Onemlidir.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Menunun listede goruntulenecek sirasidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"pageId\":{\"format\":\"int64\",\"description\":\"Menu Node page urllerle olan bagini gostermektedir.\",\"type\":\"integer\"},\"pageUrl\":{\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"string\"},\"parentId\":{\"format\":\"int64\",\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"integer\"},\"parentName\":{\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"string\"},\"stateRef\":{\"description\":\"Menunun acacagi state referans bilgisi Orn:#/visitor\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"status\":{\"description\":\"Aktif pasiflik bilgisidir.\",\"type\":\"boolean\"},\"subMenus\":{\"description\":\"Menulerin icerdigi alt menuleri listeler..\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/MenuNodeDTO\"}},\"translation\":{\"$ref\":\"#/definitions/MenuNodeLangDTO\"}}},\"MenuNodeLangDTO\":{\"title\":\"MenuNodeLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"langCode\":{\"description\":\"Dil kodu code bilgisinin icermektedir.\",\"type\":\"string\"},\"langId\":{\"format\":\"int64\",\"description\":\"Dil kodu id bilgisinin icermektedir.\",\"type\":\"integer\"},\"langName\":{\"description\":\"Dil kodu adidir.\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/AuthorityDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"name\": \"voluptate\",\n \"createdBy\": \"cupidatat qui\",\n \"createdDate\": \"1947-05-30T15:06:45.790Z\",\n \"description\": \"nostrud officia ex dolore\",\n \"id\": 46697464,\n \"lastModifiedBy\": \"deserunt veniam dolor\",\n \"lastModifiedDate\": \"1996-08-27T22:07:15.124Z\",\n \"menus\": [],\n \"orderPriority\": -84517529,\n \"pages\": [],\n \"responsibilities\": [],\n \"status\": true,\n \"users\": []\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/AuthorityDTO\"}],\"definitions\":{\"AuthorityDTO\":{\"title\":\"AuthorityDTO\",\"description\":\"ROLE objesinin Ek verilerini icermektedir. Mevcut yapidaki authority objesinin yapisini bozmamak icin kurulmustur. ROLE adi. Key bilgisidir. ROLE_ ismiyle baslamalidir. name String required minlength(5) maxlength(50) pattern(/[^ ]/), @author Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Aciklama Bilgisi\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"menus\":{\"description\":\"Sistem rolu ile menuler arasindaki coklu yetkisel iliski.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/MenuNodeDTO\"}},\"name\":{\"description\":\"Ad bilgisidir.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"pages\":{\"description\":\"Sistem rolu ile sayfalar arasindaki coklu yetkisel iliski.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/PageDefinitionDTO\"}},\"responsibilities\":{\"description\":\"Sorumluluklarin sistem rolleri ile olan cokul iliskisi\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ResponsibilityDTO\"}},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"},\"users\":{\"description\":\"Sistem rolu ile userlar arasindaki coklu iliski.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/UserDTO\"}}}},\"UserDTO\":{\"title\":\"UserDTO\",\"type\":\"object\",\"properties\":{\"activated\":{\"type\":\"boolean\"},\"authorities\":{\"type\":\"array\",\"items\":{\"type\":\"string\"}},\"createdBy\":{\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"email\":{\"maxLength\":254,\"minLength\":5,\"type\":\"string\"},\"firstName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"imageUrl\":{\"maxLength\":256,\"minLength\":0,\"type\":\"string\"},\"langKey\":{\"maxLength\":6,\"minLength\":2,\"type\":\"string\"},\"lastModifiedBy\":{\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"lastName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"login\":{\"maxLength\":50,\"minLength\":1,\"pattern\":\"^[_.@A-Za-z0-9-]*$\",\"type\":\"string\"}}},\"ResponsibilityDTO\":{\"title\":\"ResponsibilityDTO\",\"description\":\"Rollerin sahip oldugu sorumluluklari ifade eder. Surec icerisindeki, en kucuk gorev, vazife ve is parcacigini, ifade eder. Bu tanim, Program tarafindan; Modeller ve actionlar uzerinden erisimi ayarlar. Ornek sorumluluk: Kullanici ekleyebilir(bu sayede kullanici ekle, sil, duzenle, kullaniciya departman ata, unvan tanimla vb..) Fatura Hazirlayabilir, Musteri Kaydi yapabilir, Tc Kimlik Biglisine Erisebilir gibi... @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Sorumluluk ismi, Keyi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}},\"PageDefinitionDTO\":{\"title\":\"PageDefinitionDTO\",\"description\":\"Web UI sayfa(route, url) bilgilerini saklanacagi yerdir. Optional, Uygulamamizdaki web page bilgileri hatta bu page lerin yetki kisitlamasida buradan yapilabilir. @author The Aurora Developer team.\",\"required\":[\"name\",\"url\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Uzun detayli aciklama bilgisi.\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Kendine has uniqe isim bilgisi. Sayfa ismi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"parentId\":{\"format\":\"int64\",\"description\":\"page url tanimlarinin birbiriyle olan parent child iliskisi\",\"type\":\"integer\"},\"parentName\":{\"type\":\"string\"},\"shortName\":{\"description\":\"Kisa isim bilgisi.\",\"maxLength\":30,\"minLength\":1,\"type\":\"string\"},\"status\":{\"description\":\"Aktiflik Pasiflik bilgisidir. Pasif ise erisime tamamen kapalidir.\",\"type\":\"boolean\"},\"url\":{\"description\":\"Sayfa veya sayfanin icindeki, servis cagrimi yapacak url bilgisidir. Sayfanin ana urlsi veya event icinde olabilir.\",\"maxLength\":1000,\"minLength\":1,\"type\":\"string\"}}},\"MenuNodeDTO\":{\"title\":\"MenuNodeDTO\",\"description\":\"Menulerin tanimlarinin yapildigi yerdir. @author The Aurora Developer team.\",\"required\":[\"i18nName\",\"name\",\"stateRef\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Menuye ait aciklama bilgisidir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"i18nName\":{\"description\":\"Menuye ait i18n bilgisidir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"icon\":{\"description\":\"Menunun isminin yaninda gorunecek icon yoludur. bu yol genelde bir url'dir veya dosya yoludur.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"leaf\":{\"description\":\"Menu dal mi, yaprak mi belirlemek icin kullanilir. eger true ise bunun altinda menu yoktur bu bir sayfayi acmak icin kullanilir. false ise ust menudur.\",\"type\":\"boolean\"},\"name\":{\"description\":\"Menuye ait isim bilgisidir. Menulerde gorunecek isimdir. Onemlidir.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Menunun listede goruntulenecek sirasidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"pageId\":{\"format\":\"int64\",\"description\":\"Menu Node page urllerle olan bagini gostermektedir.\",\"type\":\"integer\"},\"pageUrl\":{\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"string\"},\"parentId\":{\"format\":\"int64\",\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"integer\"},\"parentName\":{\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"string\"},\"stateRef\":{\"description\":\"Menunun acacagi state referans bilgisi Orn:#/visitor\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"status\":{\"description\":\"Aktif pasiflik bilgisidir.\",\"type\":\"boolean\"},\"subMenus\":{\"description\":\"Menulerin icerdigi alt menuleri listeler..\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/MenuNodeDTO\"}},\"translation\":{\"$ref\":\"#/definitions/MenuNodeLangDTO\"}}},\"MenuNodeLangDTO\":{\"title\":\"MenuNodeLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"langCode\":{\"description\":\"Dil kodu code bilgisinin icermektedir.\",\"type\":\"string\"},\"langId\":{\"format\":\"int64\",\"description\":\"Dil kodu id bilgisinin icermektedir.\",\"type\":\"integer\"},\"langName\":{\"description\":\"Dil kodu adidir.\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/AuthorityDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"name\": \"dolore fugiat sunt nulla\",\n \"createdBy\": \"id Lorem minim nostrud\",\n \"createdDate\": \"1984-08-04T03:04:58.451Z\",\n \"description\": \"mollit in dolore nostrud quis\",\n \"id\": 851572,\n \"lastModifiedBy\": \"laboru\",\n \"lastModifiedDate\": \"1969-11-17T19:57:15.650Z\",\n \"menus\": [],\n \"orderPriority\": -64001234,\n \"pages\": [],\n \"responsibilities\": [],\n \"status\": false,\n \"users\": []\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/AuthorityDTO\"}],\"definitions\":{\"AuthorityDTO\":{\"title\":\"AuthorityDTO\",\"description\":\"ROLE objesinin Ek verilerini icermektedir. Mevcut yapidaki authority objesinin yapisini bozmamak icin kurulmustur. ROLE adi. Key bilgisidir. ROLE_ ismiyle baslamalidir. name String required minlength(5) maxlength(50) pattern(/[^ ]/), @author Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Aciklama Bilgisi\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"menus\":{\"description\":\"Sistem rolu ile menuler arasindaki coklu yetkisel iliski.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/MenuNodeDTO\"}},\"name\":{\"description\":\"Ad bilgisidir.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"pages\":{\"description\":\"Sistem rolu ile sayfalar arasindaki coklu yetkisel iliski.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/PageDefinitionDTO\"}},\"responsibilities\":{\"description\":\"Sorumluluklarin sistem rolleri ile olan cokul iliskisi\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ResponsibilityDTO\"}},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"},\"users\":{\"description\":\"Sistem rolu ile userlar arasindaki coklu iliski.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/UserDTO\"}}}},\"UserDTO\":{\"title\":\"UserDTO\",\"type\":\"object\",\"properties\":{\"activated\":{\"type\":\"boolean\"},\"authorities\":{\"type\":\"array\",\"items\":{\"type\":\"string\"}},\"createdBy\":{\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"email\":{\"maxLength\":254,\"minLength\":5,\"type\":\"string\"},\"firstName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"imageUrl\":{\"maxLength\":256,\"minLength\":0,\"type\":\"string\"},\"langKey\":{\"maxLength\":6,\"minLength\":2,\"type\":\"string\"},\"lastModifiedBy\":{\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"lastName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"login\":{\"maxLength\":50,\"minLength\":1,\"pattern\":\"^[_.@A-Za-z0-9-]*$\",\"type\":\"string\"}}},\"ResponsibilityDTO\":{\"title\":\"ResponsibilityDTO\",\"description\":\"Rollerin sahip oldugu sorumluluklari ifade eder. Surec icerisindeki, en kucuk gorev, vazife ve is parcacigini, ifade eder. Bu tanim, Program tarafindan; Modeller ve actionlar uzerinden erisimi ayarlar. Ornek sorumluluk: Kullanici ekleyebilir(bu sayede kullanici ekle, sil, duzenle, kullaniciya departman ata, unvan tanimla vb..) Fatura Hazirlayabilir, Musteri Kaydi yapabilir, Tc Kimlik Biglisine Erisebilir gibi... @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Sorumluluk ismi, Keyi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}},\"PageDefinitionDTO\":{\"title\":\"PageDefinitionDTO\",\"description\":\"Web UI sayfa(route, url) bilgilerini saklanacagi yerdir. Optional, Uygulamamizdaki web page bilgileri hatta bu page lerin yetki kisitlamasida buradan yapilabilir. @author The Aurora Developer team.\",\"required\":[\"name\",\"url\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Uzun detayli aciklama bilgisi.\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Kendine has uniqe isim bilgisi. Sayfa ismi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"parentId\":{\"format\":\"int64\",\"description\":\"page url tanimlarinin birbiriyle olan parent child iliskisi\",\"type\":\"integer\"},\"parentName\":{\"type\":\"string\"},\"shortName\":{\"description\":\"Kisa isim bilgisi.\",\"maxLength\":30,\"minLength\":1,\"type\":\"string\"},\"status\":{\"description\":\"Aktiflik Pasiflik bilgisidir. Pasif ise erisime tamamen kapalidir.\",\"type\":\"boolean\"},\"url\":{\"description\":\"Sayfa veya sayfanin icindeki, servis cagrimi yapacak url bilgisidir. Sayfanin ana urlsi veya event icinde olabilir.\",\"maxLength\":1000,\"minLength\":1,\"type\":\"string\"}}},\"MenuNodeDTO\":{\"title\":\"MenuNodeDTO\",\"description\":\"Menulerin tanimlarinin yapildigi yerdir. @author The Aurora Developer team.\",\"required\":[\"i18nName\",\"name\",\"stateRef\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Menuye ait aciklama bilgisidir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"i18nName\":{\"description\":\"Menuye ait i18n bilgisidir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"icon\":{\"description\":\"Menunun isminin yaninda gorunecek icon yoludur. bu yol genelde bir url'dir veya dosya yoludur.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"leaf\":{\"description\":\"Menu dal mi, yaprak mi belirlemek icin kullanilir. eger true ise bunun altinda menu yoktur bu bir sayfayi acmak icin kullanilir. false ise ust menudur.\",\"type\":\"boolean\"},\"name\":{\"description\":\"Menuye ait isim bilgisidir. Menulerde gorunecek isimdir. Onemlidir.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Menunun listede goruntulenecek sirasidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"pageId\":{\"format\":\"int64\",\"description\":\"Menu Node page urllerle olan bagini gostermektedir.\",\"type\":\"integer\"},\"pageUrl\":{\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"string\"},\"parentId\":{\"format\":\"int64\",\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"integer\"},\"parentName\":{\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"string\"},\"stateRef\":{\"description\":\"Menunun acacagi state referans bilgisi Orn:#/visitor\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"status\":{\"description\":\"Aktif pasiflik bilgisidir.\",\"type\":\"boolean\"},\"subMenus\":{\"description\":\"Menulerin icerdigi alt menuleri listeler..\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/MenuNodeDTO\"}},\"translation\":{\"$ref\":\"#/definitions/MenuNodeLangDTO\"}}},\"MenuNodeLangDTO\":{\"title\":\"MenuNodeLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"langCode\":{\"description\":\"Dil kodu code bilgisinin icermektedir.\",\"type\":\"string\"},\"langId\":{\"format\":\"int64\",\"description\":\"Dil kodu id bilgisinin icermektedir.\",\"type\":\"integer\"},\"langName\":{\"description\":\"Dil kodu adidir.\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/AuthorityDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/authorities/count" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "countAuthorities" + }, + "id": { + "element": "string", + "content": "countAuthoritiesUsingGET" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/authorities/count{?description%2econtains,description%2eequals,description%2ein*,description%2especified,id%2eequals,id%2egreaterOrEqualThan,id%2egreaterThan,id%2ein*,id%2elessOrEqualThan,id%2elessThan,id%2especified,menuId%2eequals,menuId%2egreaterOrEqualThan,menuId%2egreaterThan,menuId%2ein*,menuId%2elessOrEqualThan,menuId%2elessThan,menuId%2especified,name%2econtains,name%2eequals,name%2ein*,name%2especified,orderPriority%2eequals,orderPriority%2egreaterOrEqualThan,orderPriority%2egreaterThan,orderPriority%2ein*,orderPriority%2elessOrEqualThan,orderPriority%2elessThan,orderPriority%2especified,pageId%2eequals,pageId%2egreaterOrEqualThan,pageId%2egreaterThan,pageId%2ein*,pageId%2elessOrEqualThan,pageId%2elessThan,pageId%2especified,responsibilityId%2eequals,responsibilityId%2egreaterOrEqualThan,responsibilityId%2egreaterThan,responsibilityId%2ein*,responsibilityId%2elessOrEqualThan,responsibilityId%2elessThan,responsibilityId%2especified,status%2eequals,status%2ein*,status%2especified,userId%2eequals,userId%2egreaterOrEqualThan,userId%2egreaterThan,userId%2ein*,userId%2elessOrEqualThan,userId%2elessThan,userId%2especified}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "menuId.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "menuId.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "menuId.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "menuId.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "menuId.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "menuId.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "menuId.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "pageId.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "pageId.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "pageId.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "pageId.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "pageId.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "pageId.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "pageId.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "responsibilityId.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "responsibilityId.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "responsibilityId.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "responsibilityId.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "responsibilityId.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "responsibilityId.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "responsibilityId.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status.equals" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "boolean" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "userId.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "userId.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "userId.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "userId.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "userId.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "userId.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "userId.specified" + }, + "value": { + "element": "boolean" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"format\":\"int64\",\"type\":\"integer\"}" + }, + { + "element": "dataStructure", + "content": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'int64'" + } + } + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/authorities/{id}" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getAuthority" + }, + "id": { + "element": "string", + "content": "getAuthorityUsingGET" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "id" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/AuthorityDTO\"}],\"definitions\":{\"AuthorityDTO\":{\"title\":\"AuthorityDTO\",\"description\":\"ROLE objesinin Ek verilerini icermektedir. Mevcut yapidaki authority objesinin yapisini bozmamak icin kurulmustur. ROLE adi. Key bilgisidir. ROLE_ ismiyle baslamalidir. name String required minlength(5) maxlength(50) pattern(/[^ ]/), @author Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Aciklama Bilgisi\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"menus\":{\"description\":\"Sistem rolu ile menuler arasindaki coklu yetkisel iliski.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/MenuNodeDTO\"}},\"name\":{\"description\":\"Ad bilgisidir.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"pages\":{\"description\":\"Sistem rolu ile sayfalar arasindaki coklu yetkisel iliski.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/PageDefinitionDTO\"}},\"responsibilities\":{\"description\":\"Sorumluluklarin sistem rolleri ile olan cokul iliskisi\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ResponsibilityDTO\"}},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"},\"users\":{\"description\":\"Sistem rolu ile userlar arasindaki coklu iliski.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/UserDTO\"}}}},\"UserDTO\":{\"title\":\"UserDTO\",\"type\":\"object\",\"properties\":{\"activated\":{\"type\":\"boolean\"},\"authorities\":{\"type\":\"array\",\"items\":{\"type\":\"string\"}},\"createdBy\":{\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"email\":{\"maxLength\":254,\"minLength\":5,\"type\":\"string\"},\"firstName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"imageUrl\":{\"maxLength\":256,\"minLength\":0,\"type\":\"string\"},\"langKey\":{\"maxLength\":6,\"minLength\":2,\"type\":\"string\"},\"lastModifiedBy\":{\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"lastName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"login\":{\"maxLength\":50,\"minLength\":1,\"pattern\":\"^[_.@A-Za-z0-9-]*$\",\"type\":\"string\"}}},\"ResponsibilityDTO\":{\"title\":\"ResponsibilityDTO\",\"description\":\"Rollerin sahip oldugu sorumluluklari ifade eder. Surec icerisindeki, en kucuk gorev, vazife ve is parcacigini, ifade eder. Bu tanim, Program tarafindan; Modeller ve actionlar uzerinden erisimi ayarlar. Ornek sorumluluk: Kullanici ekleyebilir(bu sayede kullanici ekle, sil, duzenle, kullaniciya departman ata, unvan tanimla vb..) Fatura Hazirlayabilir, Musteri Kaydi yapabilir, Tc Kimlik Biglisine Erisebilir gibi... @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Sorumluluk ismi, Keyi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}},\"PageDefinitionDTO\":{\"title\":\"PageDefinitionDTO\",\"description\":\"Web UI sayfa(route, url) bilgilerini saklanacagi yerdir. Optional, Uygulamamizdaki web page bilgileri hatta bu page lerin yetki kisitlamasida buradan yapilabilir. @author The Aurora Developer team.\",\"required\":[\"name\",\"url\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Uzun detayli aciklama bilgisi.\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Kendine has uniqe isim bilgisi. Sayfa ismi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"parentId\":{\"format\":\"int64\",\"description\":\"page url tanimlarinin birbiriyle olan parent child iliskisi\",\"type\":\"integer\"},\"parentName\":{\"type\":\"string\"},\"shortName\":{\"description\":\"Kisa isim bilgisi.\",\"maxLength\":30,\"minLength\":1,\"type\":\"string\"},\"status\":{\"description\":\"Aktiflik Pasiflik bilgisidir. Pasif ise erisime tamamen kapalidir.\",\"type\":\"boolean\"},\"url\":{\"description\":\"Sayfa veya sayfanin icindeki, servis cagrimi yapacak url bilgisidir. Sayfanin ana urlsi veya event icinde olabilir.\",\"maxLength\":1000,\"minLength\":1,\"type\":\"string\"}}},\"MenuNodeDTO\":{\"title\":\"MenuNodeDTO\",\"description\":\"Menulerin tanimlarinin yapildigi yerdir. @author The Aurora Developer team.\",\"required\":[\"i18nName\",\"name\",\"stateRef\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Menuye ait aciklama bilgisidir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"i18nName\":{\"description\":\"Menuye ait i18n bilgisidir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"icon\":{\"description\":\"Menunun isminin yaninda gorunecek icon yoludur. bu yol genelde bir url'dir veya dosya yoludur.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"leaf\":{\"description\":\"Menu dal mi, yaprak mi belirlemek icin kullanilir. eger true ise bunun altinda menu yoktur bu bir sayfayi acmak icin kullanilir. false ise ust menudur.\",\"type\":\"boolean\"},\"name\":{\"description\":\"Menuye ait isim bilgisidir. Menulerde gorunecek isimdir. Onemlidir.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Menunun listede goruntulenecek sirasidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"pageId\":{\"format\":\"int64\",\"description\":\"Menu Node page urllerle olan bagini gostermektedir.\",\"type\":\"integer\"},\"pageUrl\":{\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"string\"},\"parentId\":{\"format\":\"int64\",\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"integer\"},\"parentName\":{\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"string\"},\"stateRef\":{\"description\":\"Menunun acacagi state referans bilgisi Orn:#/visitor\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"status\":{\"description\":\"Aktif pasiflik bilgisidir.\",\"type\":\"boolean\"},\"subMenus\":{\"description\":\"Menulerin icerdigi alt menuleri listeler..\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/MenuNodeDTO\"}},\"translation\":{\"$ref\":\"#/definitions/MenuNodeLangDTO\"}}},\"MenuNodeLangDTO\":{\"title\":\"MenuNodeLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"langCode\":{\"description\":\"Dil kodu code bilgisinin icermektedir.\",\"type\":\"string\"},\"langId\":{\"format\":\"int64\",\"description\":\"Dil kodu id bilgisinin icermektedir.\",\"type\":\"integer\"},\"langName\":{\"description\":\"Dil kodu adidir.\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/AuthorityDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "deleteAuthority" + }, + "id": { + "element": "string", + "content": "deleteAuthorityUsingDELETE" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "id" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "204" + } + }, + "content": [ + { + "element": "copy", + "content": "No Content" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/role-management" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getAllAuthoritiesByName" + }, + "id": { + "element": "string", + "content": "getAllAuthoritiesByNameUsingGET" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/role-management{?name,page,size,sort*}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "name" + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Page number of the requested page" + } + }, + "content": { + "key": { + "element": "string", + "content": "page" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Size of a page" + } + }, + "content": { + "key": { + "element": "string", + "content": "size" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported." + } + }, + "content": { + "key": { + "element": "string", + "content": "sort" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/AuthorityDTO\"},\"definitions\":{\"AuthorityDTO\":{\"title\":\"AuthorityDTO\",\"description\":\"ROLE objesinin Ek verilerini icermektedir. Mevcut yapidaki authority objesinin yapisini bozmamak icin kurulmustur. ROLE adi. Key bilgisidir. ROLE_ ismiyle baslamalidir. name String required minlength(5) maxlength(50) pattern(/[^ ]/), @author Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Aciklama Bilgisi\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"menus\":{\"description\":\"Sistem rolu ile menuler arasindaki coklu yetkisel iliski.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/MenuNodeDTO\"}},\"name\":{\"description\":\"Ad bilgisidir.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"pages\":{\"description\":\"Sistem rolu ile sayfalar arasindaki coklu yetkisel iliski.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/PageDefinitionDTO\"}},\"responsibilities\":{\"description\":\"Sorumluluklarin sistem rolleri ile olan cokul iliskisi\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ResponsibilityDTO\"}},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"},\"users\":{\"description\":\"Sistem rolu ile userlar arasindaki coklu iliski.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/UserDTO\"}}}},\"UserDTO\":{\"title\":\"UserDTO\",\"type\":\"object\",\"properties\":{\"activated\":{\"type\":\"boolean\"},\"authorities\":{\"type\":\"array\",\"items\":{\"type\":\"string\"}},\"createdBy\":{\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"email\":{\"maxLength\":254,\"minLength\":5,\"type\":\"string\"},\"firstName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"imageUrl\":{\"maxLength\":256,\"minLength\":0,\"type\":\"string\"},\"langKey\":{\"maxLength\":6,\"minLength\":2,\"type\":\"string\"},\"lastModifiedBy\":{\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"lastName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"login\":{\"maxLength\":50,\"minLength\":1,\"pattern\":\"^[_.@A-Za-z0-9-]*$\",\"type\":\"string\"}}},\"ResponsibilityDTO\":{\"title\":\"ResponsibilityDTO\",\"description\":\"Rollerin sahip oldugu sorumluluklari ifade eder. Surec icerisindeki, en kucuk gorev, vazife ve is parcacigini, ifade eder. Bu tanim, Program tarafindan; Modeller ve actionlar uzerinden erisimi ayarlar. Ornek sorumluluk: Kullanici ekleyebilir(bu sayede kullanici ekle, sil, duzenle, kullaniciya departman ata, unvan tanimla vb..) Fatura Hazirlayabilir, Musteri Kaydi yapabilir, Tc Kimlik Biglisine Erisebilir gibi... @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Sorumluluk ismi, Keyi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}},\"PageDefinitionDTO\":{\"title\":\"PageDefinitionDTO\",\"description\":\"Web UI sayfa(route, url) bilgilerini saklanacagi yerdir. Optional, Uygulamamizdaki web page bilgileri hatta bu page lerin yetki kisitlamasida buradan yapilabilir. @author The Aurora Developer team.\",\"required\":[\"name\",\"url\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Uzun detayli aciklama bilgisi.\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Kendine has uniqe isim bilgisi. Sayfa ismi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"parentId\":{\"format\":\"int64\",\"description\":\"page url tanimlarinin birbiriyle olan parent child iliskisi\",\"type\":\"integer\"},\"parentName\":{\"type\":\"string\"},\"shortName\":{\"description\":\"Kisa isim bilgisi.\",\"maxLength\":30,\"minLength\":1,\"type\":\"string\"},\"status\":{\"description\":\"Aktiflik Pasiflik bilgisidir. Pasif ise erisime tamamen kapalidir.\",\"type\":\"boolean\"},\"url\":{\"description\":\"Sayfa veya sayfanin icindeki, servis cagrimi yapacak url bilgisidir. Sayfanin ana urlsi veya event icinde olabilir.\",\"maxLength\":1000,\"minLength\":1,\"type\":\"string\"}}},\"MenuNodeDTO\":{\"title\":\"MenuNodeDTO\",\"description\":\"Menulerin tanimlarinin yapildigi yerdir. @author The Aurora Developer team.\",\"required\":[\"i18nName\",\"name\",\"stateRef\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Menuye ait aciklama bilgisidir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"i18nName\":{\"description\":\"Menuye ait i18n bilgisidir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"icon\":{\"description\":\"Menunun isminin yaninda gorunecek icon yoludur. bu yol genelde bir url'dir veya dosya yoludur.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"leaf\":{\"description\":\"Menu dal mi, yaprak mi belirlemek icin kullanilir. eger true ise bunun altinda menu yoktur bu bir sayfayi acmak icin kullanilir. false ise ust menudur.\",\"type\":\"boolean\"},\"name\":{\"description\":\"Menuye ait isim bilgisidir. Menulerde gorunecek isimdir. Onemlidir.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Menunun listede goruntulenecek sirasidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"pageId\":{\"format\":\"int64\",\"description\":\"Menu Node page urllerle olan bagini gostermektedir.\",\"type\":\"integer\"},\"pageUrl\":{\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"string\"},\"parentId\":{\"format\":\"int64\",\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"integer\"},\"parentName\":{\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"string\"},\"stateRef\":{\"description\":\"Menunun acacagi state referans bilgisi Orn:#/visitor\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"status\":{\"description\":\"Aktif pasiflik bilgisidir.\",\"type\":\"boolean\"},\"subMenus\":{\"description\":\"Menulerin icerdigi alt menuleri listeler..\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/MenuNodeDTO\"}},\"translation\":{\"$ref\":\"#/definitions/MenuNodeLangDTO\"}}},\"MenuNodeLangDTO\":{\"title\":\"MenuNodeLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"langCode\":{\"description\":\"Dil kodu code bilgisinin icermektedir.\",\"type\":\"string\"},\"langId\":{\"format\":\"int64\",\"description\":\"Dil kodu id bilgisinin icermektedir.\",\"type\":\"integer\"},\"langName\":{\"description\":\"Dil kodu adidir.\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/AuthorityDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/role-management/{id}/menus" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getAuthorityMenus" + }, + "id": { + "element": "string", + "content": "getAuthorityMenusUsingGET" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "id" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/MenuNodeCheckVM\"},\"definitions\":{\"MenuNodeCheckVM\":{\"title\":\"MenuNodeCheckVM\",\"type\":\"object\",\"properties\":{\"description\":{\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"isChecked\":{\"type\":\"boolean\"},\"name\":{\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"type\":\"integer\"},\"parentId\":{\"format\":\"int64\",\"type\":\"integer\"},\"status\":{\"type\":\"boolean\"},\"subMenus\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/MenuNodeCheckVM\"}}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/MenuNodeCheckVM" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/role-management/{id}/merge-menus" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "putMergeAuthorityMenus" + }, + "id": { + "element": "string", + "content": "putMergeAuthorityMenusUsingPUT" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "id" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "[\n {\n \"description\": \"Duis qui id nostrud\",\n \"id\": 92233028,\n \"isChecked\": true,\n \"name\": \"consectetur sit exercitation\",\n \"orderPriority\": -72184261,\n \"parentId\": 90405372,\n \"status\": false,\n \"subMenus\": []\n }\n]" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/MenuNodeCheckVM\"},\"definitions\":{\"MenuNodeCheckVM\":{\"title\":\"MenuNodeCheckVM\",\"type\":\"object\",\"properties\":{\"description\":{\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"isChecked\":{\"type\":\"boolean\"},\"name\":{\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"type\":\"integer\"},\"parentId\":{\"format\":\"int64\",\"type\":\"integer\"},\"status\":{\"type\":\"boolean\"},\"subMenus\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/MenuNodeCheckVM\"}}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/MenuNodeCheckVM" + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "[\n {\n \"description\": \"esse mollit\",\n \"id\": -18373713,\n \"isChecked\": true,\n \"name\": \"reprehenderit cillum\",\n \"orderPriority\": -45698713,\n \"parentId\": -97914697,\n \"status\": true,\n \"subMenus\": []\n }\n]" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/MenuNodeCheckVM\"},\"definitions\":{\"MenuNodeCheckVM\":{\"title\":\"MenuNodeCheckVM\",\"type\":\"object\",\"properties\":{\"description\":{\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"isChecked\":{\"type\":\"boolean\"},\"name\":{\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"type\":\"integer\"},\"parentId\":{\"format\":\"int64\",\"type\":\"integer\"},\"status\":{\"type\":\"boolean\"},\"subMenus\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/MenuNodeCheckVM\"}}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/MenuNodeCheckVM" + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "[\n {\n \"description\": \"su\",\n \"id\": -11728757,\n \"isChecked\": false,\n \"name\": \"sed\",\n \"orderPriority\": -55384381,\n \"parentId\": -26915422,\n \"status\": true,\n \"subMenus\": []\n }\n]" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/MenuNodeCheckVM\"},\"definitions\":{\"MenuNodeCheckVM\":{\"title\":\"MenuNodeCheckVM\",\"type\":\"object\",\"properties\":{\"description\":{\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"isChecked\":{\"type\":\"boolean\"},\"name\":{\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"type\":\"integer\"},\"parentId\":{\"format\":\"int64\",\"type\":\"integer\"},\"status\":{\"type\":\"boolean\"},\"subMenus\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/MenuNodeCheckVM\"}}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/MenuNodeCheckVM" + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "[\n {\n \"description\": \"magna\",\n \"id\": 32626268,\n \"isChecked\": false,\n \"name\": \"elit deserunt sed Duis\",\n \"orderPriority\": 61751142,\n \"parentId\": 38652142,\n \"status\": false,\n \"subMenus\": []\n }\n]" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/MenuNodeCheckVM\"},\"definitions\":{\"MenuNodeCheckVM\":{\"title\":\"MenuNodeCheckVM\",\"type\":\"object\",\"properties\":{\"description\":{\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"isChecked\":{\"type\":\"boolean\"},\"name\":{\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"type\":\"integer\"},\"parentId\":{\"format\":\"int64\",\"type\":\"integer\"},\"status\":{\"type\":\"boolean\"},\"subMenus\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/MenuNodeCheckVM\"}}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/MenuNodeCheckVM" + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "[\n {\n \"description\": \"commodo ex reprehender\",\n \"id\": 45007497,\n \"isChecked\": false,\n \"name\": \"Lorem cillum dolor\",\n \"orderPriority\": -40611462,\n \"parentId\": -1456941,\n \"status\": false,\n \"subMenus\": []\n }\n]" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/MenuNodeCheckVM\"},\"definitions\":{\"MenuNodeCheckVM\":{\"title\":\"MenuNodeCheckVM\",\"type\":\"object\",\"properties\":{\"description\":{\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"isChecked\":{\"type\":\"boolean\"},\"name\":{\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"type\":\"integer\"},\"parentId\":{\"format\":\"int64\",\"type\":\"integer\"},\"status\":{\"type\":\"boolean\"},\"subMenus\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/MenuNodeCheckVM\"}}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/MenuNodeCheckVM" + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/role-management/{id}/merge-pages" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "putMergeAuthorityPages" + }, + "id": { + "element": "string", + "content": "putMergeAuthorityPagesUsingPUT" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "id" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "[\n {\n \"description\": \"sed consequat cillum nulla au\",\n \"id\": -4299779,\n \"isChecked\": true,\n \"name\": \"elit minim incididunt\",\n \"status\": false\n }\n]" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/PageDefinitionCheckVM\"},\"definitions\":{\"PageDefinitionCheckVM\":{\"title\":\"PageDefinitionCheckVM\",\"type\":\"object\",\"properties\":{\"description\":{\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"isChecked\":{\"type\":\"boolean\"},\"name\":{\"type\":\"string\"},\"status\":{\"type\":\"boolean\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/PageDefinitionCheckVM" + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "[\n {\n \"description\": \"nulla\",\n \"id\": -20968944,\n \"isChecked\": false,\n \"name\": \"sit elit laboris\",\n \"status\": true\n }\n]" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/PageDefinitionCheckVM\"},\"definitions\":{\"PageDefinitionCheckVM\":{\"title\":\"PageDefinitionCheckVM\",\"type\":\"object\",\"properties\":{\"description\":{\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"isChecked\":{\"type\":\"boolean\"},\"name\":{\"type\":\"string\"},\"status\":{\"type\":\"boolean\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/PageDefinitionCheckVM" + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "[\n {\n \"description\": \"voluptate com\",\n \"id\": 50800682,\n \"isChecked\": true,\n \"name\": \"anim cillum quis\",\n \"status\": true\n }\n]" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/PageDefinitionCheckVM\"},\"definitions\":{\"PageDefinitionCheckVM\":{\"title\":\"PageDefinitionCheckVM\",\"type\":\"object\",\"properties\":{\"description\":{\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"isChecked\":{\"type\":\"boolean\"},\"name\":{\"type\":\"string\"},\"status\":{\"type\":\"boolean\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/PageDefinitionCheckVM" + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "[\n {\n \"description\": \"\",\n \"id\": 61832566,\n \"isChecked\": false,\n \"name\": \"aliquip minim veniam in in\",\n \"status\": true\n }\n]" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/PageDefinitionCheckVM\"},\"definitions\":{\"PageDefinitionCheckVM\":{\"title\":\"PageDefinitionCheckVM\",\"type\":\"object\",\"properties\":{\"description\":{\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"isChecked\":{\"type\":\"boolean\"},\"name\":{\"type\":\"string\"},\"status\":{\"type\":\"boolean\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/PageDefinitionCheckVM" + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "[\n {\n \"description\": \"\",\n \"id\": -15505539,\n \"isChecked\": true,\n \"name\": \"proident cupidatat nostrud anim\",\n \"status\": false\n }\n]" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/PageDefinitionCheckVM\"},\"definitions\":{\"PageDefinitionCheckVM\":{\"title\":\"PageDefinitionCheckVM\",\"type\":\"object\",\"properties\":{\"description\":{\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"isChecked\":{\"type\":\"boolean\"},\"name\":{\"type\":\"string\"},\"status\":{\"type\":\"boolean\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/PageDefinitionCheckVM" + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/role-management/{id}/merge-responsibilities" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "putMergeResponsibilities" + }, + "id": { + "element": "string", + "content": "putMergeResponsibilitiesUsingPUT" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "id" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "[\n {\n \"description\": \"labore et\",\n \"id\": -60805871,\n \"isChecked\": true,\n \"name\": \"Ut amet magna\",\n \"orderPriority\": -29067554,\n \"status\": true\n }\n]" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ResponsibilityCheckVM\"},\"definitions\":{\"ResponsibilityCheckVM\":{\"title\":\"ResponsibilityCheckVM\",\"type\":\"object\",\"properties\":{\"description\":{\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"isChecked\":{\"type\":\"boolean\"},\"name\":{\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"type\":\"integer\"},\"status\":{\"type\":\"boolean\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/ResponsibilityCheckVM" + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "[\n {\n \"description\": \"voluptate\",\n \"id\": -24707357,\n \"isChecked\": false,\n \"name\": \"sit ex aliqua culpa\",\n \"orderPriority\": -20168246,\n \"status\": true\n }\n]" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ResponsibilityCheckVM\"},\"definitions\":{\"ResponsibilityCheckVM\":{\"title\":\"ResponsibilityCheckVM\",\"type\":\"object\",\"properties\":{\"description\":{\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"isChecked\":{\"type\":\"boolean\"},\"name\":{\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"type\":\"integer\"},\"status\":{\"type\":\"boolean\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/ResponsibilityCheckVM" + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "[\n {\n \"description\": \"do sunt adipisicing occaecat dolore\",\n \"id\": 2390781,\n \"isChecked\": false,\n \"name\": \"velit in nostrud cillum\",\n \"orderPriority\": 46498744,\n \"status\": false\n }\n]" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ResponsibilityCheckVM\"},\"definitions\":{\"ResponsibilityCheckVM\":{\"title\":\"ResponsibilityCheckVM\",\"type\":\"object\",\"properties\":{\"description\":{\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"isChecked\":{\"type\":\"boolean\"},\"name\":{\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"type\":\"integer\"},\"status\":{\"type\":\"boolean\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/ResponsibilityCheckVM" + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "[\n {\n \"description\": \"in Excepteur\",\n \"id\": 61094091,\n \"isChecked\": false,\n \"name\": \"dolore sint\",\n \"orderPriority\": -3833315,\n \"status\": true\n }\n]" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ResponsibilityCheckVM\"},\"definitions\":{\"ResponsibilityCheckVM\":{\"title\":\"ResponsibilityCheckVM\",\"type\":\"object\",\"properties\":{\"description\":{\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"isChecked\":{\"type\":\"boolean\"},\"name\":{\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"type\":\"integer\"},\"status\":{\"type\":\"boolean\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/ResponsibilityCheckVM" + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "[\n {\n \"description\": \"est qui culpa\",\n \"id\": 41496269,\n \"isChecked\": true,\n \"name\": \"dolore sint\",\n \"orderPriority\": -15313567,\n \"status\": false\n }\n]" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ResponsibilityCheckVM\"},\"definitions\":{\"ResponsibilityCheckVM\":{\"title\":\"ResponsibilityCheckVM\",\"type\":\"object\",\"properties\":{\"description\":{\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"isChecked\":{\"type\":\"boolean\"},\"name\":{\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"type\":\"integer\"},\"status\":{\"type\":\"boolean\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/ResponsibilityCheckVM" + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/role-management/{id}/merge-users" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "putMergeUsers" + }, + "id": { + "element": "string", + "content": "putMergeUsersUsingPUT" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "id" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "[\n {\n \"email\": \"nulla\",\n \"firstName\": \"reprehenderit\",\n \"id\": 81895830,\n \"imageUrl\": \"aute enim voluptate dolore\",\n \"isChecked\": true,\n \"lastName\": \"amet labore elit sint\",\n \"login\": \"buLZbA\"\n }\n]" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/UserCheckVM\"},\"definitions\":{\"UserCheckVM\":{\"title\":\"UserCheckVM\",\"type\":\"object\",\"properties\":{\"email\":{\"maxLength\":254,\"minLength\":5,\"type\":\"string\"},\"firstName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"imageUrl\":{\"maxLength\":256,\"minLength\":0,\"type\":\"string\"},\"isChecked\":{\"type\":\"boolean\"},\"lastName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"login\":{\"maxLength\":50,\"minLength\":1,\"pattern\":\"^[_.@A-Za-z0-9-]*$\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/UserCheckVM" + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "[\n {\n \"email\": \"tempor exercitation Ut minim commodo\",\n \"firstName\": \"adipisicing do\",\n \"id\": -94414714,\n \"imageUrl\": \"commodo in ut\",\n \"isChecked\": false,\n \"lastName\": \"\",\n \"login\": \"bK\"\n }\n]" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/UserCheckVM\"},\"definitions\":{\"UserCheckVM\":{\"title\":\"UserCheckVM\",\"type\":\"object\",\"properties\":{\"email\":{\"maxLength\":254,\"minLength\":5,\"type\":\"string\"},\"firstName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"imageUrl\":{\"maxLength\":256,\"minLength\":0,\"type\":\"string\"},\"isChecked\":{\"type\":\"boolean\"},\"lastName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"login\":{\"maxLength\":50,\"minLength\":1,\"pattern\":\"^[_.@A-Za-z0-9-]*$\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/UserCheckVM" + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "[\n {\n \"email\": \"nisi ad dolore Lorem\",\n \"firstName\": \"ut\",\n \"id\": 54152425,\n \"imageUrl\": \"incididunt cillum\",\n \"isChecked\": false,\n \"lastName\": \"aliqua ex\",\n \"login\": \"IvgcOONcvf\"\n }\n]" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/UserCheckVM\"},\"definitions\":{\"UserCheckVM\":{\"title\":\"UserCheckVM\",\"type\":\"object\",\"properties\":{\"email\":{\"maxLength\":254,\"minLength\":5,\"type\":\"string\"},\"firstName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"imageUrl\":{\"maxLength\":256,\"minLength\":0,\"type\":\"string\"},\"isChecked\":{\"type\":\"boolean\"},\"lastName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"login\":{\"maxLength\":50,\"minLength\":1,\"pattern\":\"^[_.@A-Za-z0-9-]*$\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/UserCheckVM" + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "[\n {\n \"email\": \"Duis minim\",\n \"firstName\": \"dolor do\",\n \"id\": -64222194,\n \"imageUrl\": \"est\",\n \"isChecked\": false,\n \"lastName\": \"occaec\",\n \"login\": \"tJX8@HXn\"\n }\n]" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/UserCheckVM\"},\"definitions\":{\"UserCheckVM\":{\"title\":\"UserCheckVM\",\"type\":\"object\",\"properties\":{\"email\":{\"maxLength\":254,\"minLength\":5,\"type\":\"string\"},\"firstName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"imageUrl\":{\"maxLength\":256,\"minLength\":0,\"type\":\"string\"},\"isChecked\":{\"type\":\"boolean\"},\"lastName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"login\":{\"maxLength\":50,\"minLength\":1,\"pattern\":\"^[_.@A-Za-z0-9-]*$\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/UserCheckVM" + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "[\n {\n \"email\": \"ut commodo nulla amet\",\n \"firstName\": \"cupidatat\",\n \"id\": -17168218,\n \"imageUrl\": \"aliquip\",\n \"isChecked\": false,\n \"lastName\": \"anim ullamco Duis\",\n \"login\": \"-GbNAjdT@\"\n }\n]" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/UserCheckVM\"},\"definitions\":{\"UserCheckVM\":{\"title\":\"UserCheckVM\",\"type\":\"object\",\"properties\":{\"email\":{\"maxLength\":254,\"minLength\":5,\"type\":\"string\"},\"firstName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"imageUrl\":{\"maxLength\":256,\"minLength\":0,\"type\":\"string\"},\"isChecked\":{\"type\":\"boolean\"},\"lastName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"login\":{\"maxLength\":50,\"minLength\":1,\"pattern\":\"^[_.@A-Za-z0-9-]*$\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/UserCheckVM" + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/role-management/{id}/pages" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getAuthorityPages" + }, + "id": { + "element": "string", + "content": "getAuthorityPagesUsingGET" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/role-management/{id}/pages{?isChecked,page,pageName,size,sort*}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "id" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "isChecked" + } + }, + "content": { + "key": { + "element": "string", + "content": "isChecked" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Page number of the requested page" + } + }, + "content": { + "key": { + "element": "string", + "content": "page" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "pageName" + } + }, + "content": { + "key": { + "element": "string", + "content": "pageName" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Size of a page" + } + }, + "content": { + "key": { + "element": "string", + "content": "size" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported." + } + }, + "content": { + "key": { + "element": "string", + "content": "sort" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/PageDefinitionCheckVM\"},\"definitions\":{\"PageDefinitionCheckVM\":{\"title\":\"PageDefinitionCheckVM\",\"type\":\"object\",\"properties\":{\"description\":{\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"isChecked\":{\"type\":\"boolean\"},\"name\":{\"type\":\"string\"},\"status\":{\"type\":\"boolean\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/PageDefinitionCheckVM" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/role-management/{id}/responsibilities" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getResponsibilities" + }, + "id": { + "element": "string", + "content": "getResponsibilitiesUsingGET" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/role-management/{id}/responsibilities{?isChecked,page,responsibilityName,size,sort*}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "id" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "isChecked" + } + }, + "content": { + "key": { + "element": "string", + "content": "isChecked" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Page number of the requested page" + } + }, + "content": { + "key": { + "element": "string", + "content": "page" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "responsibilityName" + } + }, + "content": { + "key": { + "element": "string", + "content": "responsibilityName" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Size of a page" + } + }, + "content": { + "key": { + "element": "string", + "content": "size" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported." + } + }, + "content": { + "key": { + "element": "string", + "content": "sort" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ResponsibilityCheckVM\"},\"definitions\":{\"ResponsibilityCheckVM\":{\"title\":\"ResponsibilityCheckVM\",\"type\":\"object\",\"properties\":{\"description\":{\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"isChecked\":{\"type\":\"boolean\"},\"name\":{\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"type\":\"integer\"},\"status\":{\"type\":\"boolean\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/ResponsibilityCheckVM" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/role-management/{id}/users" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getUsers" + }, + "id": { + "element": "string", + "content": "getUsersUsingGET" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/role-management/{id}/users{?isChecked,page,size,sort*,userEmail}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "id" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "isChecked" + } + }, + "content": { + "key": { + "element": "string", + "content": "isChecked" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Page number of the requested page" + } + }, + "content": { + "key": { + "element": "string", + "content": "page" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Size of a page" + } + }, + "content": { + "key": { + "element": "string", + "content": "size" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported." + } + }, + "content": { + "key": { + "element": "string", + "content": "sort" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "userEmail" + } + }, + "content": { + "key": { + "element": "string", + "content": "userEmail" + }, + "value": { + "element": "string" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/UserCheckVM\"},\"definitions\":{\"UserCheckVM\":{\"title\":\"UserCheckVM\",\"type\":\"object\",\"properties\":{\"email\":{\"maxLength\":254,\"minLength\":5,\"type\":\"string\"},\"firstName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"imageUrl\":{\"maxLength\":256,\"minLength\":0,\"type\":\"string\"},\"isChecked\":{\"type\":\"boolean\"},\"lastName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"login\":{\"maxLength\":50,\"minLength\":1,\"pattern\":\"^[_.@A-Za-z0-9-]*$\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/UserCheckVM" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "category", + "meta": { + "title": { + "element": "string", + "content": "error-code-resource" + }, + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "resourceGroup" + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Error Code Resource" + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/error-codes" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getAllErrorCodes" + }, + "id": { + "element": "string", + "content": "getAllErrorCodesUsingGET" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/error-codes{?page,size,sort*}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Page number of the requested page" + } + }, + "content": { + "key": { + "element": "string", + "content": "page" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Size of a page" + } + }, + "content": { + "key": { + "element": "string", + "content": "size" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported." + } + }, + "content": { + "key": { + "element": "string", + "content": "sort" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ErrorCodeDTO\"},\"definitions\":{\"ErrorCodeDTO\":{\"title\":\"ErrorCodeDTO\",\"description\":\"Business Exceptionlar icin olusturulmus yapidir. Hata kodlari bu objede saklanir. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"code\":{\"description\":\"hata kodu ,\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Error Code Unique Key\",\"type\":\"integer\"},\"message\":{\"description\":\"Hata mesajinin acik bir sekilde loglanacak kismi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/ErrorCodeDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "updateErrorCode" + }, + "id": { + "element": "string", + "content": "updateErrorCodeUsingPUT" + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"code\": \"in non laborum\",\n \"id\": -81046810,\n \"message\": \"nostrud nisi\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ErrorCodeDTO\",\"description\":\"Business Exceptionlar icin olusturulmus yapidir. Hata kodlari bu objede saklanir. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"code\":{\"description\":\"hata kodu ,\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Error Code Unique Key\",\"type\":\"integer\"},\"message\":{\"description\":\"Hata mesajinin acik bir sekilde loglanacak kismi\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ErrorCodeDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ErrorCodeDTO\",\"description\":\"Business Exceptionlar icin olusturulmus yapidir. Hata kodlari bu objede saklanir. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"code\":{\"description\":\"hata kodu ,\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Error Code Unique Key\",\"type\":\"integer\"},\"message\":{\"description\":\"Hata mesajinin acik bir sekilde loglanacak kismi\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ErrorCodeDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"code\": \"elit laboris et commodo consectetur\",\n \"id\": 72907820,\n \"message\": \"sit\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ErrorCodeDTO\",\"description\":\"Business Exceptionlar icin olusturulmus yapidir. Hata kodlari bu objede saklanir. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"code\":{\"description\":\"hata kodu ,\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Error Code Unique Key\",\"type\":\"integer\"},\"message\":{\"description\":\"Hata mesajinin acik bir sekilde loglanacak kismi\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ErrorCodeDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"code\": \"ipsum in pariatur veniam sit\",\n \"id\": 23722189,\n \"message\": \"aliqua\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ErrorCodeDTO\",\"description\":\"Business Exceptionlar icin olusturulmus yapidir. Hata kodlari bu objede saklanir. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"code\":{\"description\":\"hata kodu ,\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Error Code Unique Key\",\"type\":\"integer\"},\"message\":{\"description\":\"Hata mesajinin acik bir sekilde loglanacak kismi\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ErrorCodeDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"code\": \"pariatur non magna nisi dolore\",\n \"id\": 73506907,\n \"message\": \"amet aute ut cupidatat\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ErrorCodeDTO\",\"description\":\"Business Exceptionlar icin olusturulmus yapidir. Hata kodlari bu objede saklanir. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"code\":{\"description\":\"hata kodu ,\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Error Code Unique Key\",\"type\":\"integer\"},\"message\":{\"description\":\"Hata mesajinin acik bir sekilde loglanacak kismi\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ErrorCodeDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"code\": \"tempor et\",\n \"id\": -19846337,\n \"message\": \"in qui ipsum\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ErrorCodeDTO\",\"description\":\"Business Exceptionlar icin olusturulmus yapidir. Hata kodlari bu objede saklanir. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"code\":{\"description\":\"hata kodu ,\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Error Code Unique Key\",\"type\":\"integer\"},\"message\":{\"description\":\"Hata mesajinin acik bir sekilde loglanacak kismi\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ErrorCodeDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "createErrorCode" + }, + "id": { + "element": "string", + "content": "createErrorCodeUsingPOST" + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"code\": \"nostrud magna sint Lorem mollit\",\n \"id\": 44224146,\n \"message\": \"occaecat\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ErrorCodeDTO\",\"description\":\"Business Exceptionlar icin olusturulmus yapidir. Hata kodlari bu objede saklanir. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"code\":{\"description\":\"hata kodu ,\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Error Code Unique Key\",\"type\":\"integer\"},\"message\":{\"description\":\"Hata mesajinin acik bir sekilde loglanacak kismi\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ErrorCodeDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ErrorCodeDTO\",\"description\":\"Business Exceptionlar icin olusturulmus yapidir. Hata kodlari bu objede saklanir. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"code\":{\"description\":\"hata kodu ,\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Error Code Unique Key\",\"type\":\"integer\"},\"message\":{\"description\":\"Hata mesajinin acik bir sekilde loglanacak kismi\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ErrorCodeDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"code\": \"sed\",\n \"id\": 68300474,\n \"message\": \"amet ipsum in anim\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ErrorCodeDTO\",\"description\":\"Business Exceptionlar icin olusturulmus yapidir. Hata kodlari bu objede saklanir. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"code\":{\"description\":\"hata kodu ,\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Error Code Unique Key\",\"type\":\"integer\"},\"message\":{\"description\":\"Hata mesajinin acik bir sekilde loglanacak kismi\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ErrorCodeDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"code\": \"cupidatat\",\n \"id\": -4700542,\n \"message\": \"laborum\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ErrorCodeDTO\",\"description\":\"Business Exceptionlar icin olusturulmus yapidir. Hata kodlari bu objede saklanir. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"code\":{\"description\":\"hata kodu ,\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Error Code Unique Key\",\"type\":\"integer\"},\"message\":{\"description\":\"Hata mesajinin acik bir sekilde loglanacak kismi\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ErrorCodeDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"code\": \"cupidatat dolore deserunt labore\",\n \"id\": -83509562,\n \"message\": \"consequat\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ErrorCodeDTO\",\"description\":\"Business Exceptionlar icin olusturulmus yapidir. Hata kodlari bu objede saklanir. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"code\":{\"description\":\"hata kodu ,\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Error Code Unique Key\",\"type\":\"integer\"},\"message\":{\"description\":\"Hata mesajinin acik bir sekilde loglanacak kismi\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ErrorCodeDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"code\": \"in do esse\",\n \"id\": -10411799,\n \"message\": \"voluptate ex adipisi\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ErrorCodeDTO\",\"description\":\"Business Exceptionlar icin olusturulmus yapidir. Hata kodlari bu objede saklanir. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"code\":{\"description\":\"hata kodu ,\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Error Code Unique Key\",\"type\":\"integer\"},\"message\":{\"description\":\"Hata mesajinin acik bir sekilde loglanacak kismi\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ErrorCodeDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/error-codes/{id}" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getErrorCode" + }, + "id": { + "element": "string", + "content": "getErrorCodeUsingGET" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "id" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ErrorCodeDTO\",\"description\":\"Business Exceptionlar icin olusturulmus yapidir. Hata kodlari bu objede saklanir. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"code\":{\"description\":\"hata kodu ,\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Error Code Unique Key\",\"type\":\"integer\"},\"message\":{\"description\":\"Hata mesajinin acik bir sekilde loglanacak kismi\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ErrorCodeDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "deleteErrorCode" + }, + "id": { + "element": "string", + "content": "deleteErrorCodeUsingDELETE" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "id" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "204" + } + }, + "content": [ + { + "element": "copy", + "content": "No Content" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "category", + "meta": { + "title": { + "element": "string", + "content": "geographic-boundary-tree-resource" + }, + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "resourceGroup" + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Geographic Boundary Tree Resource" + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/geographic-boundary-trees/name" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getAllByNameContains" + }, + "id": { + "element": "string", + "content": "getAllByNameContainsUsingGET" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/geographic-boundary-trees/name{?name,page,size,sort*}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "name" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Page number of the requested page" + } + }, + "content": { + "key": { + "element": "string", + "content": "page" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Size of a page" + } + }, + "content": { + "key": { + "element": "string", + "content": "size" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported." + } + }, + "content": { + "key": { + "element": "string", + "content": "sort" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/GeographicBoundaryTreeDTO\"},\"definitions\":{\"GeographicBoundaryTreeDTO\":{\"title\":\"GeographicBoundaryTreeDTO\",\"description\":\"Adres Datalarinin tutuldugu yerdir. Ornek Data: Turkiye, Istanbul, Uskudar, Kisikli Mahallesi, Hanimseti sokak gibi verileri tutar @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"code\":{\"type\":\"string\"},\"createdBy\":{\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"lastModifiedBy\":{\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"name\":{\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"type\":\"integer\"},\"parentCode\":{\"type\":\"string\"},\"parentId\":{\"format\":\"int64\",\"type\":\"integer\"},\"parentName\":{\"type\":\"string\"},\"parentTypeName\":{\"type\":\"string\"},\"relationName\":{\"type\":\"string\"},\"status\":{\"type\":\"boolean\"},\"subCount\":{\"format\":\"int32\",\"type\":\"integer\"},\"subs\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/GeographicBoundaryTreeDTO\"}},\"typeName\":{\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/GeographicBoundaryTreeDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/geographic-boundary-trees/parent-code" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getAllByParentCode" + }, + "id": { + "element": "string", + "content": "getAllByParentCodeUsingGET" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/geographic-boundary-trees/parent-code{?page,parentCode,size,sort*}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Page number of the requested page" + } + }, + "content": { + "key": { + "element": "string", + "content": "page" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "parentCode" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "parentCode" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Size of a page" + } + }, + "content": { + "key": { + "element": "string", + "content": "size" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported." + } + }, + "content": { + "key": { + "element": "string", + "content": "sort" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/GeographicBoundaryTreeDTO\"},\"definitions\":{\"GeographicBoundaryTreeDTO\":{\"title\":\"GeographicBoundaryTreeDTO\",\"description\":\"Adres Datalarinin tutuldugu yerdir. Ornek Data: Turkiye, Istanbul, Uskudar, Kisikli Mahallesi, Hanimseti sokak gibi verileri tutar @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"code\":{\"type\":\"string\"},\"createdBy\":{\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"lastModifiedBy\":{\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"name\":{\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"type\":\"integer\"},\"parentCode\":{\"type\":\"string\"},\"parentId\":{\"format\":\"int64\",\"type\":\"integer\"},\"parentName\":{\"type\":\"string\"},\"parentTypeName\":{\"type\":\"string\"},\"relationName\":{\"type\":\"string\"},\"status\":{\"type\":\"boolean\"},\"subCount\":{\"format\":\"int32\",\"type\":\"integer\"},\"subs\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/GeographicBoundaryTreeDTO\"}},\"typeName\":{\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/GeographicBoundaryTreeDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/geographic-boundary-trees/parent-id" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getAllByParentId" + }, + "id": { + "element": "string", + "content": "getAllByParentIdUsingGET" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/geographic-boundary-trees/parent-id{?page,parentId,size,sort*}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Page number of the requested page" + } + }, + "content": { + "key": { + "element": "string", + "content": "page" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "parentId" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "parentId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Size of a page" + } + }, + "content": { + "key": { + "element": "string", + "content": "size" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported." + } + }, + "content": { + "key": { + "element": "string", + "content": "sort" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/GeographicBoundaryTreeDTO\"},\"definitions\":{\"GeographicBoundaryTreeDTO\":{\"title\":\"GeographicBoundaryTreeDTO\",\"description\":\"Adres Datalarinin tutuldugu yerdir. Ornek Data: Turkiye, Istanbul, Uskudar, Kisikli Mahallesi, Hanimseti sokak gibi verileri tutar @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"code\":{\"type\":\"string\"},\"createdBy\":{\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"lastModifiedBy\":{\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"name\":{\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"type\":\"integer\"},\"parentCode\":{\"type\":\"string\"},\"parentId\":{\"format\":\"int64\",\"type\":\"integer\"},\"parentName\":{\"type\":\"string\"},\"parentTypeName\":{\"type\":\"string\"},\"relationName\":{\"type\":\"string\"},\"status\":{\"type\":\"boolean\"},\"subCount\":{\"format\":\"int32\",\"type\":\"integer\"},\"subs\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/GeographicBoundaryTreeDTO\"}},\"typeName\":{\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/GeographicBoundaryTreeDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/geographic-boundary-trees/parent-name" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getAllByParentName" + }, + "id": { + "element": "string", + "content": "getAllByParentNameUsingGET" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/geographic-boundary-trees/parent-name{?page,parentName,size,sort*}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Page number of the requested page" + } + }, + "content": { + "key": { + "element": "string", + "content": "page" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "parentName" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "parentName" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Size of a page" + } + }, + "content": { + "key": { + "element": "string", + "content": "size" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported." + } + }, + "content": { + "key": { + "element": "string", + "content": "sort" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/GeographicBoundaryTreeDTO\"},\"definitions\":{\"GeographicBoundaryTreeDTO\":{\"title\":\"GeographicBoundaryTreeDTO\",\"description\":\"Adres Datalarinin tutuldugu yerdir. Ornek Data: Turkiye, Istanbul, Uskudar, Kisikli Mahallesi, Hanimseti sokak gibi verileri tutar @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"code\":{\"type\":\"string\"},\"createdBy\":{\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"lastModifiedBy\":{\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"name\":{\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"type\":\"integer\"},\"parentCode\":{\"type\":\"string\"},\"parentId\":{\"format\":\"int64\",\"type\":\"integer\"},\"parentName\":{\"type\":\"string\"},\"parentTypeName\":{\"type\":\"string\"},\"relationName\":{\"type\":\"string\"},\"status\":{\"type\":\"boolean\"},\"subCount\":{\"format\":\"int32\",\"type\":\"integer\"},\"subs\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/GeographicBoundaryTreeDTO\"}},\"typeName\":{\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/GeographicBoundaryTreeDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/geographic-boundary-trees/parent-type-name" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getAllByParentTypeName" + }, + "id": { + "element": "string", + "content": "getAllByParentTypeNameUsingGET" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/geographic-boundary-trees/parent-type-name{?page,parentTypeName,size,sort*}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Page number of the requested page" + } + }, + "content": { + "key": { + "element": "string", + "content": "page" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "parentTypeName" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "parentTypeName" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Size of a page" + } + }, + "content": { + "key": { + "element": "string", + "content": "size" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported." + } + }, + "content": { + "key": { + "element": "string", + "content": "sort" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/GeographicBoundaryTreeDTO\"},\"definitions\":{\"GeographicBoundaryTreeDTO\":{\"title\":\"GeographicBoundaryTreeDTO\",\"description\":\"Adres Datalarinin tutuldugu yerdir. Ornek Data: Turkiye, Istanbul, Uskudar, Kisikli Mahallesi, Hanimseti sokak gibi verileri tutar @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"code\":{\"type\":\"string\"},\"createdBy\":{\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"lastModifiedBy\":{\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"name\":{\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"type\":\"integer\"},\"parentCode\":{\"type\":\"string\"},\"parentId\":{\"format\":\"int64\",\"type\":\"integer\"},\"parentName\":{\"type\":\"string\"},\"parentTypeName\":{\"type\":\"string\"},\"relationName\":{\"type\":\"string\"},\"status\":{\"type\":\"boolean\"},\"subCount\":{\"format\":\"int32\",\"type\":\"integer\"},\"subs\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/GeographicBoundaryTreeDTO\"}},\"typeName\":{\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/GeographicBoundaryTreeDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/geographic-boundary-trees/type-name" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getAllByTypeName" + }, + "id": { + "element": "string", + "content": "getAllByTypeNameUsingGET" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/geographic-boundary-trees/type-name{?page,size,sort*,typeName}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Page number of the requested page" + } + }, + "content": { + "key": { + "element": "string", + "content": "page" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Size of a page" + } + }, + "content": { + "key": { + "element": "string", + "content": "size" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported." + } + }, + "content": { + "key": { + "element": "string", + "content": "sort" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "typeName" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "typeName" + }, + "value": { + "element": "string" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/GeographicBoundaryTreeDTO\"},\"definitions\":{\"GeographicBoundaryTreeDTO\":{\"title\":\"GeographicBoundaryTreeDTO\",\"description\":\"Adres Datalarinin tutuldugu yerdir. Ornek Data: Turkiye, Istanbul, Uskudar, Kisikli Mahallesi, Hanimseti sokak gibi verileri tutar @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"code\":{\"type\":\"string\"},\"createdBy\":{\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"lastModifiedBy\":{\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"name\":{\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"type\":\"integer\"},\"parentCode\":{\"type\":\"string\"},\"parentId\":{\"format\":\"int64\",\"type\":\"integer\"},\"parentName\":{\"type\":\"string\"},\"parentTypeName\":{\"type\":\"string\"},\"relationName\":{\"type\":\"string\"},\"status\":{\"type\":\"boolean\"},\"subCount\":{\"format\":\"int32\",\"type\":\"integer\"},\"subs\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/GeographicBoundaryTreeDTO\"}},\"typeName\":{\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/GeographicBoundaryTreeDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/geographic-boundary-trees/{id}" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getOne" + }, + "id": { + "element": "string", + "content": "getOneUsingGET" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "id" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/GeographicBoundaryTreeDTO\"}],\"definitions\":{\"GeographicBoundaryTreeDTO\":{\"title\":\"GeographicBoundaryTreeDTO\",\"description\":\"Adres Datalarinin tutuldugu yerdir. Ornek Data: Turkiye, Istanbul, Uskudar, Kisikli Mahallesi, Hanimseti sokak gibi verileri tutar @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"code\":{\"type\":\"string\"},\"createdBy\":{\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"lastModifiedBy\":{\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"name\":{\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"type\":\"integer\"},\"parentCode\":{\"type\":\"string\"},\"parentId\":{\"format\":\"int64\",\"type\":\"integer\"},\"parentName\":{\"type\":\"string\"},\"parentTypeName\":{\"type\":\"string\"},\"relationName\":{\"type\":\"string\"},\"status\":{\"type\":\"boolean\"},\"subCount\":{\"format\":\"int32\",\"type\":\"integer\"},\"subs\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/GeographicBoundaryTreeDTO\"}},\"typeName\":{\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/GeographicBoundaryTreeDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "category", + "meta": { + "title": { + "element": "string", + "content": "activity-type-lang-resource" + }, + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "resourceGroup" + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Activity Type Lang Resource" + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/lang/activity-type-langs/owner/{ownerId}" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getAllActivityTypeLangsByOwner" + }, + "id": { + "element": "string", + "content": "getAllActivityTypeLangsByOwnerUsingGET" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/lang/activity-type-langs/owner/{ownerId}{?page,size,sort*}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "ownerId" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "ownerId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Page number of the requested page" + } + }, + "content": { + "key": { + "element": "string", + "content": "page" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Size of a page" + } + }, + "content": { + "key": { + "element": "string", + "content": "size" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported." + } + }, + "content": { + "key": { + "element": "string", + "content": "sort" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ActivityTypeLangDTO\"},\"definitions\":{\"ActivityTypeLangDTO\":{\"title\":\"ActivityTypeLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"langCode\":{\"type\":\"string\"},\"langId\":{\"format\":\"int64\",\"description\":\"Dil kodu bilgisinin icermektedir.\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/ActivityTypeLangDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "category", + "meta": { + "title": { + "element": "string", + "content": "city-lang-resource" + }, + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "resourceGroup" + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "City Lang Resource" + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/lang/city-langs/owner/{ownerId}" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getAllCityLangsByOwner" + }, + "id": { + "element": "string", + "content": "getAllCityLangsByOwnerUsingGET" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/lang/city-langs/owner/{ownerId}{?page,size,sort*}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "ownerId" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "ownerId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Page number of the requested page" + } + }, + "content": { + "key": { + "element": "string", + "content": "page" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Size of a page" + } + }, + "content": { + "key": { + "element": "string", + "content": "size" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported." + } + }, + "content": { + "key": { + "element": "string", + "content": "sort" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/CityLangDTO\"},\"definitions\":{\"CityLangDTO\":{\"title\":\"CityLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"LanguageCodeDTO\":{\"title\":\"LanguageCodeDTO\",\"description\":\"Programin destekledigi dillerin kodlarini icerir Languages codes are ISO_639-1 codes, see http: Codes for the Representation of Names of Languages Codes arranged alphabetically by alpha-3/ISO 639-2 Code Note: ISO 639-2 is the alpha-3 code in Codes for the representation of names of languages-- Part 2. There are 21 languages that have alternative codes for bibliographic or terminology purposes. In those cases, each is listed separately and they are designated as \\\"B\\\" (bibliographic) or \\\"T\\\" (terminology). In all other cases there is only one ISO 639-2 code. Multiple codes assigned to the same language are to be considered synonyms. ISO 639-1 is the alpha-2 code. @author Aurora Developer team.\",\"required\":[\"englishName\",\"iso6392Code\",\"name\"],\"type\":\"object\",\"properties\":{\"attributes\":{\"description\":\"organizasyon tipinin ek alanları.\",\"type\":\"object\",\"additionalProperties\":{\"type\":\"string\"}},\"code\":{\"description\":\"gobal dil kodu. tr, en, fr vb.. ISO 639-1 Code \\\"https:\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"englishName\":{\"description\":\"Dilin ingilizce ismi. kullanim kolayligi icin konulmustur.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"icon\":{\"description\":\"Dil icin icon bilgisi\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"iso6392Code\":{\"description\":\"ISO 639-2 dil kodlari. tur, eng vb.. ISO 639-2 Code \\\"https:\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"dilin original ismi. ENGLISH, TURKCE VS...\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/CityLangDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "category", + "meta": { + "title": { + "element": "string", + "content": "contact-medium-category-lang-resource" + }, + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "resourceGroup" + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Contact Medium Category Lang Resource" + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/lang/contact-medium-category-langs/owner/{ownerId}" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getAllContactMediumCategoryLangsByOwner" + }, + "id": { + "element": "string", + "content": "getAllContactMediumCategoryLangsByOwnerUsingGET" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/lang/contact-medium-category-langs/owner/{ownerId}{?page,size,sort*}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "ownerId" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "ownerId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Page number of the requested page" + } + }, + "content": { + "key": { + "element": "string", + "content": "page" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Size of a page" + } + }, + "content": { + "key": { + "element": "string", + "content": "size" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported." + } + }, + "content": { + "key": { + "element": "string", + "content": "sort" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLangDTO\"},\"definitions\":{\"ContactMediumCategoryLangDTO\":{\"title\":\"ContactMediumCategoryLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"langCode\":{\"type\":\"string\"},\"langId\":{\"format\":\"int64\",\"description\":\"Dil kodu bilgisinin icermektedir.\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/ContactMediumCategoryLangDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "category", + "meta": { + "title": { + "element": "string", + "content": "contact-medium-category-type-lang-resource" + }, + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "resourceGroup" + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Contact Medium Category Type Lang Resource" + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/lang/contact-medium-category-type-langs/owner/{ownerId}" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getAllContactMediumCategoryTypeLangsByOwner" + }, + "id": { + "element": "string", + "content": "getAllContactMediumCategoryTypeLangsByOwnerUsingGET" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/lang/contact-medium-category-type-langs/owner/{ownerId}{?page,size,sort*}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "ownerId" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "ownerId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Page number of the requested page" + } + }, + "content": { + "key": { + "element": "string", + "content": "page" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Size of a page" + } + }, + "content": { + "key": { + "element": "string", + "content": "size" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported." + } + }, + "content": { + "key": { + "element": "string", + "content": "sort" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryTypeLangDTO\"},\"definitions\":{\"ContactMediumCategoryTypeLangDTO\":{\"title\":\"ContactMediumCategoryTypeLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"langCode\":{\"type\":\"string\"},\"langId\":{\"format\":\"int64\",\"description\":\"Dil kodu bilgisinin icermektedir.\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/ContactMediumCategoryTypeLangDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "category", + "meta": { + "title": { + "element": "string", + "content": "country-lang-resource" + }, + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "resourceGroup" + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Country Lang Resource" + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/lang/country-langs/owner/{ownerId}" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getAllCountryLangsByOwner" + }, + "id": { + "element": "string", + "content": "getAllCountryLangsByOwnerUsingGET" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/lang/country-langs/owner/{ownerId}{?page,size,sort*}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "ownerId" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "ownerId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Page number of the requested page" + } + }, + "content": { + "key": { + "element": "string", + "content": "page" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Size of a page" + } + }, + "content": { + "key": { + "element": "string", + "content": "size" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported." + } + }, + "content": { + "key": { + "element": "string", + "content": "sort" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/CountryLangDTO\"},\"definitions\":{\"CountryLangDTO\":{\"title\":\"CountryLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"LanguageCodeDTO\":{\"title\":\"LanguageCodeDTO\",\"description\":\"Programin destekledigi dillerin kodlarini icerir Languages codes are ISO_639-1 codes, see http: Codes for the Representation of Names of Languages Codes arranged alphabetically by alpha-3/ISO 639-2 Code Note: ISO 639-2 is the alpha-3 code in Codes for the representation of names of languages-- Part 2. There are 21 languages that have alternative codes for bibliographic or terminology purposes. In those cases, each is listed separately and they are designated as \\\"B\\\" (bibliographic) or \\\"T\\\" (terminology). In all other cases there is only one ISO 639-2 code. Multiple codes assigned to the same language are to be considered synonyms. ISO 639-1 is the alpha-2 code. @author Aurora Developer team.\",\"required\":[\"englishName\",\"iso6392Code\",\"name\"],\"type\":\"object\",\"properties\":{\"attributes\":{\"description\":\"organizasyon tipinin ek alanları.\",\"type\":\"object\",\"additionalProperties\":{\"type\":\"string\"}},\"code\":{\"description\":\"gobal dil kodu. tr, en, fr vb.. ISO 639-1 Code \\\"https:\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"englishName\":{\"description\":\"Dilin ingilizce ismi. kullanim kolayligi icin konulmustur.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"icon\":{\"description\":\"Dil icin icon bilgisi\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"iso6392Code\":{\"description\":\"ISO 639-2 dil kodlari. tur, eng vb.. ISO 639-2 Code \\\"https:\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"dilin original ismi. ENGLISH, TURKCE VS...\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/CountryLangDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "category", + "meta": { + "title": { + "element": "string", + "content": "district-lang-resource" + }, + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "resourceGroup" + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "District Lang Resource" + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/lang/district-langs/owner/{ownerId}" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getAllDistrictLangsByOwner" + }, + "id": { + "element": "string", + "content": "getAllDistrictLangsByOwnerUsingGET" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/lang/district-langs/owner/{ownerId}{?page,size,sort*}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "ownerId" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "ownerId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Page number of the requested page" + } + }, + "content": { + "key": { + "element": "string", + "content": "page" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Size of a page" + } + }, + "content": { + "key": { + "element": "string", + "content": "size" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported." + } + }, + "content": { + "key": { + "element": "string", + "content": "sort" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/DistrictLangDTO\"},\"definitions\":{\"DistrictLangDTO\":{\"title\":\"DistrictLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"LanguageCodeDTO\":{\"title\":\"LanguageCodeDTO\",\"description\":\"Programin destekledigi dillerin kodlarini icerir Languages codes are ISO_639-1 codes, see http: Codes for the Representation of Names of Languages Codes arranged alphabetically by alpha-3/ISO 639-2 Code Note: ISO 639-2 is the alpha-3 code in Codes for the representation of names of languages-- Part 2. There are 21 languages that have alternative codes for bibliographic or terminology purposes. In those cases, each is listed separately and they are designated as \\\"B\\\" (bibliographic) or \\\"T\\\" (terminology). In all other cases there is only one ISO 639-2 code. Multiple codes assigned to the same language are to be considered synonyms. ISO 639-1 is the alpha-2 code. @author Aurora Developer team.\",\"required\":[\"englishName\",\"iso6392Code\",\"name\"],\"type\":\"object\",\"properties\":{\"attributes\":{\"description\":\"organizasyon tipinin ek alanları.\",\"type\":\"object\",\"additionalProperties\":{\"type\":\"string\"}},\"code\":{\"description\":\"gobal dil kodu. tr, en, fr vb.. ISO 639-1 Code \\\"https:\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"englishName\":{\"description\":\"Dilin ingilizce ismi. kullanim kolayligi icin konulmustur.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"icon\":{\"description\":\"Dil icin icon bilgisi\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"iso6392Code\":{\"description\":\"ISO 639-2 dil kodlari. tur, eng vb.. ISO 639-2 Code \\\"https:\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"dilin original ismi. ENGLISH, TURKCE VS...\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/DistrictLangDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "category", + "meta": { + "title": { + "element": "string", + "content": "geographic-boundary-lang-resource" + }, + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "resourceGroup" + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Geographic Boundary Lang Resource" + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/lang/geographic-boundary-langs/owner/{ownerId}" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getAllGeographicBoundaryLangsByOwner" + }, + "id": { + "element": "string", + "content": "getAllGeographicBoundaryLangsByOwnerUsingGET" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/lang/geographic-boundary-langs/owner/{ownerId}{?page,size,sort*}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "ownerId" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "ownerId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Page number of the requested page" + } + }, + "content": { + "key": { + "element": "string", + "content": "page" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Size of a page" + } + }, + "content": { + "key": { + "element": "string", + "content": "size" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported." + } + }, + "content": { + "key": { + "element": "string", + "content": "sort" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/GeographicBoundaryLangDTO\"},\"definitions\":{\"GeographicBoundaryLangDTO\":{\"title\":\"GeographicBoundaryLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"langCode\":{\"type\":\"string\"},\"langId\":{\"format\":\"int64\",\"description\":\"Dil kodu bilgisinin icermektedir.\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/GeographicBoundaryLangDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "category", + "meta": { + "title": { + "element": "string", + "content": "geographic-boundary-rel-type-lang-resource" + }, + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "resourceGroup" + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Geographic Boundary Rel Type Lang Resource" + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/lang/geographic-boundary-rel-type-langs/owner/{ownerId}" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getAllGeographicBoundaryRelTypeLangsByOwner" + }, + "id": { + "element": "string", + "content": "getAllGeographicBoundaryRelTypeLangsByOwnerUsingGET" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/lang/geographic-boundary-rel-type-langs/owner/{ownerId}{?page,size,sort*}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "ownerId" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "ownerId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Page number of the requested page" + } + }, + "content": { + "key": { + "element": "string", + "content": "page" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Size of a page" + } + }, + "content": { + "key": { + "element": "string", + "content": "size" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported." + } + }, + "content": { + "key": { + "element": "string", + "content": "sort" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/GeographicBoundaryRelTypeLangDTO\"},\"definitions\":{\"GeographicBoundaryRelTypeLangDTO\":{\"title\":\"GeographicBoundaryRelTypeLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"langCode\":{\"type\":\"string\"},\"langId\":{\"format\":\"int64\",\"description\":\"Dil kodu bilgisinin icermektedir.\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/GeographicBoundaryRelTypeLangDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "category", + "meta": { + "title": { + "element": "string", + "content": "geographic-boundary-type-lang-resource" + }, + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "resourceGroup" + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Geographic Boundary Type Lang Resource" + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/lang/geographic-boundary-type-langs/owner/{ownerId}" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getAllGeographicBoundaryTypeLangsByOwner" + }, + "id": { + "element": "string", + "content": "getAllGeographicBoundaryTypeLangsByOwnerUsingGET" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/lang/geographic-boundary-type-langs/owner/{ownerId}{?page,size,sort*}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "ownerId" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "ownerId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Page number of the requested page" + } + }, + "content": { + "key": { + "element": "string", + "content": "page" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Size of a page" + } + }, + "content": { + "key": { + "element": "string", + "content": "size" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported." + } + }, + "content": { + "key": { + "element": "string", + "content": "sort" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/GeographicBoundaryTypeLangDTO\"},\"definitions\":{\"GeographicBoundaryTypeLangDTO\":{\"title\":\"GeographicBoundaryTypeLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"langCode\":{\"type\":\"string\"},\"langId\":{\"format\":\"int64\",\"description\":\"Dil kodu bilgisinin icermektedir.\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/GeographicBoundaryTypeLangDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "category", + "meta": { + "title": { + "element": "string", + "content": "language-code-resource" + }, + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "resourceGroup" + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Language Code Resource" + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/lang/language-codes" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getAllLanguageCodes" + }, + "id": { + "element": "string", + "content": "getAllLanguageCodesUsingGET" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/lang/language-codes{?code%2econtains,code%2eequals,code%2ein*,code%2especified,description%2econtains,description%2eequals,description%2ein*,description%2especified,englishName%2econtains,englishName%2eequals,englishName%2ein*,englishName%2especified,icon%2econtains,icon%2eequals,icon%2ein*,icon%2especified,id%2eequals,id%2egreaterOrEqualThan,id%2egreaterThan,id%2ein*,id%2elessOrEqualThan,id%2elessThan,id%2especified,iso6392Code%2econtains,iso6392Code%2eequals,iso6392Code%2ein*,iso6392Code%2especified,name%2econtains,name%2eequals,name%2ein*,name%2especified,orderPriority%2eequals,orderPriority%2egreaterOrEqualThan,orderPriority%2egreaterThan,orderPriority%2ein*,orderPriority%2elessOrEqualThan,orderPriority%2elessThan,orderPriority%2especified,page,size,sort*,status%2eequals,status%2ein*,status%2especified}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "code.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "code.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "code.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "code.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "englishName.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "englishName.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "englishName.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "englishName.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "icon.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "icon.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "icon.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "icon.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "iso6392Code.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "iso6392Code.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "iso6392Code.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "iso6392Code.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Page number of the requested page" + } + }, + "content": { + "key": { + "element": "string", + "content": "page" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Size of a page" + } + }, + "content": { + "key": { + "element": "string", + "content": "size" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported." + } + }, + "content": { + "key": { + "element": "string", + "content": "sort" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status.equals" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "boolean" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status.specified" + }, + "value": { + "element": "boolean" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"definitions\":{\"LanguageCodeDTO\":{\"title\":\"LanguageCodeDTO\",\"description\":\"Programin destekledigi dillerin kodlarini icerir Languages codes are ISO_639-1 codes, see http: Codes for the Representation of Names of Languages Codes arranged alphabetically by alpha-3/ISO 639-2 Code Note: ISO 639-2 is the alpha-3 code in Codes for the representation of names of languages-- Part 2. There are 21 languages that have alternative codes for bibliographic or terminology purposes. In those cases, each is listed separately and they are designated as \\\"B\\\" (bibliographic) or \\\"T\\\" (terminology). In all other cases there is only one ISO 639-2 code. Multiple codes assigned to the same language are to be considered synonyms. ISO 639-1 is the alpha-2 code. @author Aurora Developer team.\",\"required\":[\"englishName\",\"iso6392Code\",\"name\"],\"type\":\"object\",\"properties\":{\"attributes\":{\"description\":\"organizasyon tipinin ek alanları.\",\"type\":\"object\",\"additionalProperties\":{\"type\":\"string\"}},\"code\":{\"description\":\"gobal dil kodu. tr, en, fr vb.. ISO 639-1 Code \\\"https:\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"englishName\":{\"description\":\"Dilin ingilizce ismi. kullanim kolayligi icin konulmustur.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"icon\":{\"description\":\"Dil icin icon bilgisi\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"iso6392Code\":{\"description\":\"ISO 639-2 dil kodlari. tur, eng vb.. ISO 639-2 Code \\\"https:\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"dilin original ismi. ENGLISH, TURKCE VS...\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/LanguageCodeDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/lang/language-codes/count" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "countLanguageCodes" + }, + "id": { + "element": "string", + "content": "countLanguageCodesUsingGET" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/lang/language-codes/count{?code%2econtains,code%2eequals,code%2ein*,code%2especified,description%2econtains,description%2eequals,description%2ein*,description%2especified,englishName%2econtains,englishName%2eequals,englishName%2ein*,englishName%2especified,icon%2econtains,icon%2eequals,icon%2ein*,icon%2especified,id%2eequals,id%2egreaterOrEqualThan,id%2egreaterThan,id%2ein*,id%2elessOrEqualThan,id%2elessThan,id%2especified,iso6392Code%2econtains,iso6392Code%2eequals,iso6392Code%2ein*,iso6392Code%2especified,name%2econtains,name%2eequals,name%2ein*,name%2especified,orderPriority%2eequals,orderPriority%2egreaterOrEqualThan,orderPriority%2egreaterThan,orderPriority%2ein*,orderPriority%2elessOrEqualThan,orderPriority%2elessThan,orderPriority%2especified,status%2eequals,status%2ein*,status%2especified}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "code.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "code.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "code.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "code.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "englishName.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "englishName.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "englishName.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "englishName.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "icon.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "icon.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "icon.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "icon.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "iso6392Code.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "iso6392Code.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "iso6392Code.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "iso6392Code.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status.equals" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "boolean" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status.specified" + }, + "value": { + "element": "boolean" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"format\":\"int64\",\"type\":\"integer\"}" + }, + { + "element": "dataStructure", + "content": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'int64'" + } + } + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/lang/language-codes/{id}" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getLanguageCode" + }, + "id": { + "element": "string", + "content": "getLanguageCodeUsingGET" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "id" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"LanguageCodeDTO\",\"description\":\"Programin destekledigi dillerin kodlarini icerir Languages codes are ISO_639-1 codes, see http: Codes for the Representation of Names of Languages Codes arranged alphabetically by alpha-3/ISO 639-2 Code Note: ISO 639-2 is the alpha-3 code in Codes for the representation of names of languages-- Part 2. There are 21 languages that have alternative codes for bibliographic or terminology purposes. In those cases, each is listed separately and they are designated as \\\"B\\\" (bibliographic) or \\\"T\\\" (terminology). In all other cases there is only one ISO 639-2 code. Multiple codes assigned to the same language are to be considered synonyms. ISO 639-1 is the alpha-2 code. @author Aurora Developer team.\",\"required\":[\"englishName\",\"iso6392Code\",\"name\"],\"type\":\"object\",\"properties\":{\"attributes\":{\"description\":\"organizasyon tipinin ek alanları.\",\"type\":\"object\",\"additionalProperties\":{\"type\":\"string\"}},\"code\":{\"description\":\"gobal dil kodu. tr, en, fr vb.. ISO 639-1 Code \\\"https:\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"englishName\":{\"description\":\"Dilin ingilizce ismi. kullanim kolayligi icin konulmustur.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"icon\":{\"description\":\"Dil icin icon bilgisi\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"iso6392Code\":{\"description\":\"ISO 639-2 dil kodlari. tur, eng vb.. ISO 639-2 Code \\\"https:\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"dilin original ismi. ENGLISH, TURKCE VS...\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/LanguageCodeDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "category", + "meta": { + "title": { + "element": "string", + "content": "menu-node-lang-resource" + }, + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "resourceGroup" + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Menu Node Lang Resource" + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/lang/menu-node-langs/owner/{ownerId}" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getAllMenuNodeLangsByOwner" + }, + "id": { + "element": "string", + "content": "getAllMenuNodeLangsByOwnerUsingGET" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/lang/menu-node-langs/owner/{ownerId}{?page,size,sort*}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "ownerId" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "ownerId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Page number of the requested page" + } + }, + "content": { + "key": { + "element": "string", + "content": "page" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Size of a page" + } + }, + "content": { + "key": { + "element": "string", + "content": "size" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported." + } + }, + "content": { + "key": { + "element": "string", + "content": "sort" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/MenuNodeLangDTO\"},\"definitions\":{\"MenuNodeLangDTO\":{\"title\":\"MenuNodeLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"langCode\":{\"description\":\"Dil kodu code bilgisinin icermektedir.\",\"type\":\"string\"},\"langId\":{\"format\":\"int64\",\"description\":\"Dil kodu id bilgisinin icermektedir.\",\"type\":\"integer\"},\"langName\":{\"description\":\"Dil kodu adidir.\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/MenuNodeLangDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "category", + "meta": { + "title": { + "element": "string", + "content": "organization-lang-resource" + }, + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "resourceGroup" + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Organization Lang Resource" + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/lang/organization-langs/owner/{ownerId}" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getAllOrganizationLangsByOwner" + }, + "id": { + "element": "string", + "content": "getAllOrganizationLangsByOwnerUsingGET" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/lang/organization-langs/owner/{ownerId}{?page,size,sort*}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "ownerId" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "ownerId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Page number of the requested page" + } + }, + "content": { + "key": { + "element": "string", + "content": "page" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Size of a page" + } + }, + "content": { + "key": { + "element": "string", + "content": "size" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported." + } + }, + "content": { + "key": { + "element": "string", + "content": "sort" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/OrganizationLangDTO\"},\"definitions\":{\"OrganizationLangDTO\":{\"title\":\"OrganizationLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"langCode\":{\"description\":\"Dil kod bilgisi\",\"type\":\"string\"},\"langId\":{\"format\":\"int64\",\"description\":\"Dil kodu bilgisinin icermektedir.\",\"type\":\"integer\"},\"langName\":{\"description\":\"Dil kodu adidir.\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/OrganizationLangDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "category", + "meta": { + "title": { + "element": "string", + "content": "party-relation-type-lang-resource" + }, + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "resourceGroup" + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Party Relation Type Lang Resource" + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/lang/party-relation-type-langs/owner/{ownerId}" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getAllPartyRelationTypeLangsByOwner" + }, + "id": { + "element": "string", + "content": "getAllPartyRelationTypeLangsByOwnerUsingGET" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/lang/party-relation-type-langs/owner/{ownerId}{?page,size,sort*}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "ownerId" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "ownerId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Page number of the requested page" + } + }, + "content": { + "key": { + "element": "string", + "content": "page" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Size of a page" + } + }, + "content": { + "key": { + "element": "string", + "content": "size" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported." + } + }, + "content": { + "key": { + "element": "string", + "content": "sort" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/PartyRelationTypeLangDTO\"},\"definitions\":{\"PartyRelationTypeLangDTO\":{\"title\":\"PartyRelationTypeLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"langCode\":{\"type\":\"string\"},\"langId\":{\"format\":\"int64\",\"description\":\"Dil kodu bilgisinin icermektedir.\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/PartyRelationTypeLangDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "category", + "meta": { + "title": { + "element": "string", + "content": "party-role-type-lang-resource" + }, + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "resourceGroup" + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Party Role Type Lang Resource" + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/lang/party-role-type-langs/owner/{ownerId}" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getAllPartyRoleTypeLangsByOwner" + }, + "id": { + "element": "string", + "content": "getAllPartyRoleTypeLangsByOwnerUsingGET" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/lang/party-role-type-langs/owner/{ownerId}{?page,size,sort*}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "ownerId" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "ownerId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Page number of the requested page" + } + }, + "content": { + "key": { + "element": "string", + "content": "page" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Size of a page" + } + }, + "content": { + "key": { + "element": "string", + "content": "size" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported." + } + }, + "content": { + "key": { + "element": "string", + "content": "sort" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/PartyRoleTypeLangDTO\"},\"definitions\":{\"PartyRoleTypeLangDTO\":{\"title\":\"PartyRoleTypeLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"langCode\":{\"type\":\"string\"},\"langId\":{\"format\":\"int64\",\"description\":\"Dil kodu bilgisinin icermektedir.\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/PartyRoleTypeLangDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "category", + "meta": { + "title": { + "element": "string", + "content": "reference-code-lang-resource" + }, + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "resourceGroup" + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Reference Code Lang Resource" + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/lang/reference-code-langs/owner/{ownerId}" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getAllReferenceCodeLangsByOwner" + }, + "id": { + "element": "string", + "content": "getAllReferenceCodeLangsByOwnerUsingGET" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/lang/reference-code-langs/owner/{ownerId}{?page,size,sort*}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "ownerId" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "ownerId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Page number of the requested page" + } + }, + "content": { + "key": { + "element": "string", + "content": "page" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Size of a page" + } + }, + "content": { + "key": { + "element": "string", + "content": "size" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported." + } + }, + "content": { + "key": { + "element": "string", + "content": "sort" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ReferenceCodeLangDTO\"},\"definitions\":{\"ReferenceCodeLangDTO\":{\"title\":\"ReferenceCodeLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"langCode\":{\"description\":\"Dil kod bilgisi.\",\"type\":\"string\"},\"langId\":{\"format\":\"int64\",\"description\":\"Dil kodu bilgisinin icermektedir.\",\"type\":\"integer\"},\"langName\":{\"description\":\"Dil kodu adidir.\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/ReferenceCodeLangDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "category", + "meta": { + "title": { + "element": "string", + "content": "state-address-lang-resource" + }, + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "resourceGroup" + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "State Address Lang Resource" + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/lang/state-address-langs/owner/{ownerId}" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getAllStateAddressLangsByOwner" + }, + "id": { + "element": "string", + "content": "getAllStateAddressLangsByOwnerUsingGET" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/lang/state-address-langs/owner/{ownerId}{?page,size,sort*}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "ownerId" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "ownerId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Page number of the requested page" + } + }, + "content": { + "key": { + "element": "string", + "content": "page" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Size of a page" + } + }, + "content": { + "key": { + "element": "string", + "content": "size" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported." + } + }, + "content": { + "key": { + "element": "string", + "content": "sort" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/StateAddressLangDTO\"},\"definitions\":{\"StateAddressLangDTO\":{\"title\":\"StateAddressLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lang\":{\"$ref\":\"#/definitions/LanguageCodeDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}},\"LanguageCodeDTO\":{\"title\":\"LanguageCodeDTO\",\"description\":\"Programin destekledigi dillerin kodlarini icerir Languages codes are ISO_639-1 codes, see http: Codes for the Representation of Names of Languages Codes arranged alphabetically by alpha-3/ISO 639-2 Code Note: ISO 639-2 is the alpha-3 code in Codes for the representation of names of languages-- Part 2. There are 21 languages that have alternative codes for bibliographic or terminology purposes. In those cases, each is listed separately and they are designated as \\\"B\\\" (bibliographic) or \\\"T\\\" (terminology). In all other cases there is only one ISO 639-2 code. Multiple codes assigned to the same language are to be considered synonyms. ISO 639-1 is the alpha-2 code. @author Aurora Developer team.\",\"required\":[\"englishName\",\"iso6392Code\",\"name\"],\"type\":\"object\",\"properties\":{\"attributes\":{\"description\":\"organizasyon tipinin ek alanları.\",\"type\":\"object\",\"additionalProperties\":{\"type\":\"string\"}},\"code\":{\"description\":\"gobal dil kodu. tr, en, fr vb.. ISO 639-1 Code \\\"https:\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"englishName\":{\"description\":\"Dilin ingilizce ismi. kullanim kolayligi icin konulmustur.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"icon\":{\"description\":\"Dil icin icon bilgisi\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"iso6392Code\":{\"description\":\"ISO 639-2 dil kodlari. tur, eng vb.. ISO 639-2 Code \\\"https:\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"dilin original ismi. ENGLISH, TURKCE VS...\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/StateAddressLangDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "category", + "meta": { + "title": { + "element": "string", + "content": "log-option-type-resource" + }, + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "resourceGroup" + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Log Option Type Resource" + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/log-option-types" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getAllLogOptionTypes" + }, + "id": { + "element": "string", + "content": "getAllLogOptionTypesUsingGET" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/log-option-types{?page,size,sort*}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Page number of the requested page" + } + }, + "content": { + "key": { + "element": "string", + "content": "page" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Size of a page" + } + }, + "content": { + "key": { + "element": "string", + "content": "size" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported." + } + }, + "content": { + "key": { + "element": "string", + "content": "sort" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/LogOptionTypeDTO\"},\"definitions\":{\"LogOptionTypeDTO\":{\"title\":\"LogOptionTypeDTO\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"maxLength\":100,\"minLength\":2,\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/LogOptionTypeDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "updateLogOptionType" + }, + "id": { + "element": "string", + "content": "updateLogOptionTypeUsingPUT" + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"name\": \"dolor pariatur\",\n \"createdBy\": \"v\",\n \"createdDate\": \"1953-03-11T10:50:13.279Z\",\n \"description\": \"sint ex deserunt mollit nostrud\",\n \"id\": -55142793,\n \"lastModifiedBy\": \"culpa sit cillum\",\n \"lastModifiedDate\": \"1979-07-08T03:30:08.524Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"LogOptionTypeDTO\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"maxLength\":100,\"minLength\":2,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/LogOptionTypeDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"LogOptionTypeDTO\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"maxLength\":100,\"minLength\":2,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/LogOptionTypeDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"name\": \"consequat ad\",\n \"createdBy\": \"qui nulla\",\n \"createdDate\": \"1988-10-18T18:25:33.141Z\",\n \"description\": \"irure\",\n \"id\": -97179241,\n \"lastModifiedBy\": \"d\",\n \"lastModifiedDate\": \"1967-02-11T17:23:43.493Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"LogOptionTypeDTO\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"maxLength\":100,\"minLength\":2,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/LogOptionTypeDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"name\": \"do \",\n \"createdBy\": \"eiusmod Lorem sunt fugiat ea\",\n \"createdDate\": \"1969-09-18T18:15:05.160Z\",\n \"description\": \"sed esse o\",\n \"id\": 54218930,\n \"lastModifiedBy\": \"cillum deserunt labore aliqua\",\n \"lastModifiedDate\": \"1969-09-20T06:58:06.794Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"LogOptionTypeDTO\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"maxLength\":100,\"minLength\":2,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/LogOptionTypeDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"name\": \"reprehenderit deserunt voluptate et\",\n \"createdBy\": \"est Excepteur\",\n \"createdDate\": \"1981-08-26T14:19:36.734Z\",\n \"description\": \"dolor exercitation\",\n \"id\": 57038641,\n \"lastModifiedBy\": \"veniam laboris fugiat\",\n \"lastModifiedDate\": \"2008-07-19T11:55:01.148Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"LogOptionTypeDTO\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"maxLength\":100,\"minLength\":2,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/LogOptionTypeDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"name\": \"ullamco fugiat elit\",\n \"createdBy\": \"labore velit deserunt\",\n \"createdDate\": \"1999-03-07T17:39:04.809Z\",\n \"description\": \"ad deserunt\",\n \"id\": 93346534,\n \"lastModifiedBy\": \"non do laboris proident\",\n \"lastModifiedDate\": \"2011-11-19T03:22:24.911Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"LogOptionTypeDTO\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"maxLength\":100,\"minLength\":2,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/LogOptionTypeDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "createLogOptionType" + }, + "id": { + "element": "string", + "content": "createLogOptionTypeUsingPOST" + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"name\": \"irure sunt Ut tempor\",\n \"createdBy\": \"id Ut nisi cillum\",\n \"createdDate\": \"1988-09-06T04:49:58.160Z\",\n \"description\": \"Lorem incididunt\",\n \"id\": 76592547,\n \"lastModifiedBy\": \"sunt velit nisi reprehenderit\",\n \"lastModifiedDate\": \"2007-10-26T03:42:24.159Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"LogOptionTypeDTO\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"maxLength\":100,\"minLength\":2,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/LogOptionTypeDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"LogOptionTypeDTO\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"maxLength\":100,\"minLength\":2,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/LogOptionTypeDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"name\": \"Lorem\",\n \"createdBy\": \"reprehenderit enim veniam\",\n \"createdDate\": \"2014-12-11T10:05:32.077Z\",\n \"description\": \"fugiat sint Ut occaecat Excepteur\",\n \"id\": 23330162,\n \"lastModifiedBy\": \"incididunt ad reprehenderit\",\n \"lastModifiedDate\": \"1943-09-02T12:22:54.517Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"LogOptionTypeDTO\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"maxLength\":100,\"minLength\":2,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/LogOptionTypeDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"name\": \"mollit proident dolor\",\n \"createdBy\": \"laborum\",\n \"createdDate\": \"1952-04-24T09:06:33.927Z\",\n \"description\": \"dolor nisi officia\",\n \"id\": 44278263,\n \"lastModifiedBy\": \"in qui deserunt veniam est\",\n \"lastModifiedDate\": \"2004-03-22T08:38:55.654Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"LogOptionTypeDTO\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"maxLength\":100,\"minLength\":2,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/LogOptionTypeDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"name\": \"aliquip commod\",\n \"createdBy\": \"minim adipisicing\",\n \"createdDate\": \"1981-10-27T23:13:56.501Z\",\n \"description\": \"dolor officia magna qui nulla\",\n \"id\": -21238396,\n \"lastModifiedBy\": \"la\",\n \"lastModifiedDate\": \"1994-05-13T20:52:51.112Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"LogOptionTypeDTO\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"maxLength\":100,\"minLength\":2,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/LogOptionTypeDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"name\": \"ea commodo velit\",\n \"createdBy\": \"deserunt exercitation pariatur\",\n \"createdDate\": \"1954-10-19T08:12:14.480Z\",\n \"description\": \"in proident laboris mollit cillum\",\n \"id\": -86403140,\n \"lastModifiedBy\": \"aute et sed Lorem cupidatat\",\n \"lastModifiedDate\": \"1985-08-14T13:17:06.965Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"LogOptionTypeDTO\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"maxLength\":100,\"minLength\":2,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/LogOptionTypeDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/log-option-types/{id}" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getLogOptionType" + }, + "id": { + "element": "string", + "content": "getLogOptionTypeUsingGET" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "id" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"LogOptionTypeDTO\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"maxLength\":100,\"minLength\":2,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/LogOptionTypeDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "deleteLogOptionType" + }, + "id": { + "element": "string", + "content": "deleteLogOptionTypeUsingDELETE" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "id" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "204" + } + }, + "content": [ + { + "element": "copy", + "content": "No Content" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "category", + "meta": { + "title": { + "element": "string", + "content": "log-option-resource" + }, + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "resourceGroup" + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Log Option Resource" + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/log-options" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getAllLogOptions" + }, + "id": { + "element": "string", + "content": "getAllLogOptionsUsingGET" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/log-options{?id%2eequals,id%2egreaterOrEqualThan,id%2egreaterThan,id%2ein*,id%2elessOrEqualThan,id%2elessThan,id%2especified,methodId%2eequals,methodId%2egreaterOrEqualThan,methodId%2egreaterThan,methodId%2ein*,methodId%2elessOrEqualThan,methodId%2elessThan,methodId%2especified,optionType%2eequals,optionType%2ein*,optionType%2especified,page,size,sort*}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "methodId.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "methodId.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "methodId.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "methodId.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "methodId.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "methodId.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "methodId.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "optionType.equals" + }, + "value": { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "LEVEL_0" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "LEVEL_1" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "LEVEL_2" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "LEVEL_3" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "LEVEL_4" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "LEVEL_5" + } + ] + } + } + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "optionType.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "LEVEL_0" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "LEVEL_1" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "LEVEL_2" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "LEVEL_3" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "LEVEL_4" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "LEVEL_5" + } + ] + } + } + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "optionType.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Page number of the requested page" + } + }, + "content": { + "key": { + "element": "string", + "content": "page" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Size of a page" + } + }, + "content": { + "key": { + "element": "string", + "content": "size" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported." + } + }, + "content": { + "key": { + "element": "string", + "content": "sort" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/LogOptionDTO\"},\"definitions\":{\"LogOptionDTO\":{\"title\":\"LogOptionDTO\",\"description\":\"Methodlarin Loglama yontemini, seklini yonetmek icin kullanilacaktir. Her methoda bir ozellik atanir ve bu yontem uzerine loglama yapilir. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"methodFullName\":{\"type\":\"string\"},\"methodId\":{\"format\":\"int64\",\"description\":\"methodlara-yetkilere sorumluluk eslestirme\",\"type\":\"integer\"},\"optionType\":{\"description\":\"loglama yontemi. input loglansin, input ve output loglansin, input ve output haricinde sadece hata loglansin\",\"enum\":[\"LEVEL_0\",\"LEVEL_1\",\"LEVEL_2\",\"LEVEL_3\",\"LEVEL_4\",\"LEVEL_5\"],\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/LogOptionDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "updateLogOption" + }, + "id": { + "element": "string", + "content": "updateLogOptionUsingPUT" + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"id\": 21510462,\n \"methodFullName\": \"amet commod\",\n \"methodId\": 86252872,\n \"optionType\": \"LEVEL_1\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"LogOptionDTO\",\"description\":\"Methodlarin Loglama yontemini, seklini yonetmek icin kullanilacaktir. Her methoda bir ozellik atanir ve bu yontem uzerine loglama yapilir. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"methodFullName\":{\"type\":\"string\"},\"methodId\":{\"format\":\"int64\",\"description\":\"methodlara-yetkilere sorumluluk eslestirme\",\"type\":\"integer\"},\"optionType\":{\"description\":\"loglama yontemi. input loglansin, input ve output loglansin, input ve output haricinde sadece hata loglansin\",\"enum\":[\"LEVEL_0\",\"LEVEL_1\",\"LEVEL_2\",\"LEVEL_3\",\"LEVEL_4\",\"LEVEL_5\"],\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/LogOptionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"LogOptionDTO\",\"description\":\"Methodlarin Loglama yontemini, seklini yonetmek icin kullanilacaktir. Her methoda bir ozellik atanir ve bu yontem uzerine loglama yapilir. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"methodFullName\":{\"type\":\"string\"},\"methodId\":{\"format\":\"int64\",\"description\":\"methodlara-yetkilere sorumluluk eslestirme\",\"type\":\"integer\"},\"optionType\":{\"description\":\"loglama yontemi. input loglansin, input ve output loglansin, input ve output haricinde sadece hata loglansin\",\"enum\":[\"LEVEL_0\",\"LEVEL_1\",\"LEVEL_2\",\"LEVEL_3\",\"LEVEL_4\",\"LEVEL_5\"],\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/LogOptionDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"id\": -10211181,\n \"methodFullName\": \"con\",\n \"methodId\": -84037601,\n \"optionType\": \"LEVEL_1\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"LogOptionDTO\",\"description\":\"Methodlarin Loglama yontemini, seklini yonetmek icin kullanilacaktir. Her methoda bir ozellik atanir ve bu yontem uzerine loglama yapilir. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"methodFullName\":{\"type\":\"string\"},\"methodId\":{\"format\":\"int64\",\"description\":\"methodlara-yetkilere sorumluluk eslestirme\",\"type\":\"integer\"},\"optionType\":{\"description\":\"loglama yontemi. input loglansin, input ve output loglansin, input ve output haricinde sadece hata loglansin\",\"enum\":[\"LEVEL_0\",\"LEVEL_1\",\"LEVEL_2\",\"LEVEL_3\",\"LEVEL_4\",\"LEVEL_5\"],\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/LogOptionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"id\": -67234759,\n \"methodFullName\": \"consec\",\n \"methodId\": 97068146,\n \"optionType\": \"LEVEL_4\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"LogOptionDTO\",\"description\":\"Methodlarin Loglama yontemini, seklini yonetmek icin kullanilacaktir. Her methoda bir ozellik atanir ve bu yontem uzerine loglama yapilir. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"methodFullName\":{\"type\":\"string\"},\"methodId\":{\"format\":\"int64\",\"description\":\"methodlara-yetkilere sorumluluk eslestirme\",\"type\":\"integer\"},\"optionType\":{\"description\":\"loglama yontemi. input loglansin, input ve output loglansin, input ve output haricinde sadece hata loglansin\",\"enum\":[\"LEVEL_0\",\"LEVEL_1\",\"LEVEL_2\",\"LEVEL_3\",\"LEVEL_4\",\"LEVEL_5\"],\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/LogOptionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"id\": -3011499,\n \"methodFullName\": \"laboris esse eu se\",\n \"methodId\": 74375991,\n \"optionType\": \"LEVEL_1\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"LogOptionDTO\",\"description\":\"Methodlarin Loglama yontemini, seklini yonetmek icin kullanilacaktir. Her methoda bir ozellik atanir ve bu yontem uzerine loglama yapilir. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"methodFullName\":{\"type\":\"string\"},\"methodId\":{\"format\":\"int64\",\"description\":\"methodlara-yetkilere sorumluluk eslestirme\",\"type\":\"integer\"},\"optionType\":{\"description\":\"loglama yontemi. input loglansin, input ve output loglansin, input ve output haricinde sadece hata loglansin\",\"enum\":[\"LEVEL_0\",\"LEVEL_1\",\"LEVEL_2\",\"LEVEL_3\",\"LEVEL_4\",\"LEVEL_5\"],\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/LogOptionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"id\": -30174888,\n \"methodFullName\": \"pariatur\",\n \"methodId\": -21943946,\n \"optionType\": \"LEVEL_0\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"LogOptionDTO\",\"description\":\"Methodlarin Loglama yontemini, seklini yonetmek icin kullanilacaktir. Her methoda bir ozellik atanir ve bu yontem uzerine loglama yapilir. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"methodFullName\":{\"type\":\"string\"},\"methodId\":{\"format\":\"int64\",\"description\":\"methodlara-yetkilere sorumluluk eslestirme\",\"type\":\"integer\"},\"optionType\":{\"description\":\"loglama yontemi. input loglansin, input ve output loglansin, input ve output haricinde sadece hata loglansin\",\"enum\":[\"LEVEL_0\",\"LEVEL_1\",\"LEVEL_2\",\"LEVEL_3\",\"LEVEL_4\",\"LEVEL_5\"],\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/LogOptionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "createLogOption" + }, + "id": { + "element": "string", + "content": "createLogOptionUsingPOST" + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"id\": 40062493,\n \"methodFullName\": \"nostrud ut\",\n \"methodId\": -15005141,\n \"optionType\": \"LEVEL_2\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"LogOptionDTO\",\"description\":\"Methodlarin Loglama yontemini, seklini yonetmek icin kullanilacaktir. Her methoda bir ozellik atanir ve bu yontem uzerine loglama yapilir. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"methodFullName\":{\"type\":\"string\"},\"methodId\":{\"format\":\"int64\",\"description\":\"methodlara-yetkilere sorumluluk eslestirme\",\"type\":\"integer\"},\"optionType\":{\"description\":\"loglama yontemi. input loglansin, input ve output loglansin, input ve output haricinde sadece hata loglansin\",\"enum\":[\"LEVEL_0\",\"LEVEL_1\",\"LEVEL_2\",\"LEVEL_3\",\"LEVEL_4\",\"LEVEL_5\"],\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/LogOptionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"LogOptionDTO\",\"description\":\"Methodlarin Loglama yontemini, seklini yonetmek icin kullanilacaktir. Her methoda bir ozellik atanir ve bu yontem uzerine loglama yapilir. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"methodFullName\":{\"type\":\"string\"},\"methodId\":{\"format\":\"int64\",\"description\":\"methodlara-yetkilere sorumluluk eslestirme\",\"type\":\"integer\"},\"optionType\":{\"description\":\"loglama yontemi. input loglansin, input ve output loglansin, input ve output haricinde sadece hata loglansin\",\"enum\":[\"LEVEL_0\",\"LEVEL_1\",\"LEVEL_2\",\"LEVEL_3\",\"LEVEL_4\",\"LEVEL_5\"],\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/LogOptionDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"id\": 37767752,\n \"methodFullName\": \"aliqua sed\",\n \"methodId\": 15227112,\n \"optionType\": \"LEVEL_1\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"LogOptionDTO\",\"description\":\"Methodlarin Loglama yontemini, seklini yonetmek icin kullanilacaktir. Her methoda bir ozellik atanir ve bu yontem uzerine loglama yapilir. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"methodFullName\":{\"type\":\"string\"},\"methodId\":{\"format\":\"int64\",\"description\":\"methodlara-yetkilere sorumluluk eslestirme\",\"type\":\"integer\"},\"optionType\":{\"description\":\"loglama yontemi. input loglansin, input ve output loglansin, input ve output haricinde sadece hata loglansin\",\"enum\":[\"LEVEL_0\",\"LEVEL_1\",\"LEVEL_2\",\"LEVEL_3\",\"LEVEL_4\",\"LEVEL_5\"],\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/LogOptionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"id\": 53153747,\n \"methodFullName\": \"aliquip fugiat mollit deserunt\",\n \"methodId\": -6952848,\n \"optionType\": \"LEVEL_4\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"LogOptionDTO\",\"description\":\"Methodlarin Loglama yontemini, seklini yonetmek icin kullanilacaktir. Her methoda bir ozellik atanir ve bu yontem uzerine loglama yapilir. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"methodFullName\":{\"type\":\"string\"},\"methodId\":{\"format\":\"int64\",\"description\":\"methodlara-yetkilere sorumluluk eslestirme\",\"type\":\"integer\"},\"optionType\":{\"description\":\"loglama yontemi. input loglansin, input ve output loglansin, input ve output haricinde sadece hata loglansin\",\"enum\":[\"LEVEL_0\",\"LEVEL_1\",\"LEVEL_2\",\"LEVEL_3\",\"LEVEL_4\",\"LEVEL_5\"],\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/LogOptionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"id\": 67336092,\n \"methodFullName\": \"dolor et minim qui in\",\n \"methodId\": 39944359,\n \"optionType\": \"LEVEL_3\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"LogOptionDTO\",\"description\":\"Methodlarin Loglama yontemini, seklini yonetmek icin kullanilacaktir. Her methoda bir ozellik atanir ve bu yontem uzerine loglama yapilir. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"methodFullName\":{\"type\":\"string\"},\"methodId\":{\"format\":\"int64\",\"description\":\"methodlara-yetkilere sorumluluk eslestirme\",\"type\":\"integer\"},\"optionType\":{\"description\":\"loglama yontemi. input loglansin, input ve output loglansin, input ve output haricinde sadece hata loglansin\",\"enum\":[\"LEVEL_0\",\"LEVEL_1\",\"LEVEL_2\",\"LEVEL_3\",\"LEVEL_4\",\"LEVEL_5\"],\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/LogOptionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"id\": 84349171,\n \"methodFullName\": \"do magna qui irure\",\n \"methodId\": -75547328,\n \"optionType\": \"LEVEL_1\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"LogOptionDTO\",\"description\":\"Methodlarin Loglama yontemini, seklini yonetmek icin kullanilacaktir. Her methoda bir ozellik atanir ve bu yontem uzerine loglama yapilir. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"methodFullName\":{\"type\":\"string\"},\"methodId\":{\"format\":\"int64\",\"description\":\"methodlara-yetkilere sorumluluk eslestirme\",\"type\":\"integer\"},\"optionType\":{\"description\":\"loglama yontemi. input loglansin, input ve output loglansin, input ve output haricinde sadece hata loglansin\",\"enum\":[\"LEVEL_0\",\"LEVEL_1\",\"LEVEL_2\",\"LEVEL_3\",\"LEVEL_4\",\"LEVEL_5\"],\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/LogOptionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/log-options/all" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getAllLogOptionsWithoutCriteria" + }, + "id": { + "element": "string", + "content": "getAllLogOptionsWithoutCriteriaUsingGET" + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/LogOptionDTO\"},\"definitions\":{\"LogOptionDTO\":{\"title\":\"LogOptionDTO\",\"description\":\"Methodlarin Loglama yontemini, seklini yonetmek icin kullanilacaktir. Her methoda bir ozellik atanir ve bu yontem uzerine loglama yapilir. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"methodFullName\":{\"type\":\"string\"},\"methodId\":{\"format\":\"int64\",\"description\":\"methodlara-yetkilere sorumluluk eslestirme\",\"type\":\"integer\"},\"optionType\":{\"description\":\"loglama yontemi. input loglansin, input ve output loglansin, input ve output haricinde sadece hata loglansin\",\"enum\":[\"LEVEL_0\",\"LEVEL_1\",\"LEVEL_2\",\"LEVEL_3\",\"LEVEL_4\",\"LEVEL_5\"],\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/LogOptionDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/log-options/class" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "updateLogOptionsOfClass" + }, + "id": { + "element": "string", + "content": "updateLogOptionsOfClassUsingPUT" + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "[\n {\n \"id\": -32354605,\n \"methodFullName\": \"aute dolor\",\n \"methodId\": -14047955,\n \"optionType\": \"LEVEL_0\"\n }\n]" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/LogOptionDTO\"},\"definitions\":{\"LogOptionDTO\":{\"title\":\"LogOptionDTO\",\"description\":\"Methodlarin Loglama yontemini, seklini yonetmek icin kullanilacaktir. Her methoda bir ozellik atanir ve bu yontem uzerine loglama yapilir. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"methodFullName\":{\"type\":\"string\"},\"methodId\":{\"format\":\"int64\",\"description\":\"methodlara-yetkilere sorumluluk eslestirme\",\"type\":\"integer\"},\"optionType\":{\"description\":\"loglama yontemi. input loglansin, input ve output loglansin, input ve output haricinde sadece hata loglansin\",\"enum\":[\"LEVEL_0\",\"LEVEL_1\",\"LEVEL_2\",\"LEVEL_3\",\"LEVEL_4\",\"LEVEL_5\"],\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/LogOptionDTO" + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "[\n {\n \"id\": -69887451,\n \"methodFullName\": \"qui ea in aliquip nostrud\",\n \"methodId\": -85600550,\n \"optionType\": \"LEVEL_4\"\n }\n]" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/LogOptionDTO\"},\"definitions\":{\"LogOptionDTO\":{\"title\":\"LogOptionDTO\",\"description\":\"Methodlarin Loglama yontemini, seklini yonetmek icin kullanilacaktir. Her methoda bir ozellik atanir ve bu yontem uzerine loglama yapilir. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"methodFullName\":{\"type\":\"string\"},\"methodId\":{\"format\":\"int64\",\"description\":\"methodlara-yetkilere sorumluluk eslestirme\",\"type\":\"integer\"},\"optionType\":{\"description\":\"loglama yontemi. input loglansin, input ve output loglansin, input ve output haricinde sadece hata loglansin\",\"enum\":[\"LEVEL_0\",\"LEVEL_1\",\"LEVEL_2\",\"LEVEL_3\",\"LEVEL_4\",\"LEVEL_5\"],\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/LogOptionDTO" + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "[\n {\n \"id\": -96054099,\n \"methodFullName\": \"sint amet non reprehenderit\",\n \"methodId\": -46384190,\n \"optionType\": \"LEVEL_4\"\n }\n]" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/LogOptionDTO\"},\"definitions\":{\"LogOptionDTO\":{\"title\":\"LogOptionDTO\",\"description\":\"Methodlarin Loglama yontemini, seklini yonetmek icin kullanilacaktir. Her methoda bir ozellik atanir ve bu yontem uzerine loglama yapilir. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"methodFullName\":{\"type\":\"string\"},\"methodId\":{\"format\":\"int64\",\"description\":\"methodlara-yetkilere sorumluluk eslestirme\",\"type\":\"integer\"},\"optionType\":{\"description\":\"loglama yontemi. input loglansin, input ve output loglansin, input ve output haricinde sadece hata loglansin\",\"enum\":[\"LEVEL_0\",\"LEVEL_1\",\"LEVEL_2\",\"LEVEL_3\",\"LEVEL_4\",\"LEVEL_5\"],\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/LogOptionDTO" + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "[\n {\n \"id\": -88335550,\n \"methodFullName\": \"adip\",\n \"methodId\": 60987301,\n \"optionType\": \"LEVEL_5\"\n }\n]" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/LogOptionDTO\"},\"definitions\":{\"LogOptionDTO\":{\"title\":\"LogOptionDTO\",\"description\":\"Methodlarin Loglama yontemini, seklini yonetmek icin kullanilacaktir. Her methoda bir ozellik atanir ve bu yontem uzerine loglama yapilir. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"methodFullName\":{\"type\":\"string\"},\"methodId\":{\"format\":\"int64\",\"description\":\"methodlara-yetkilere sorumluluk eslestirme\",\"type\":\"integer\"},\"optionType\":{\"description\":\"loglama yontemi. input loglansin, input ve output loglansin, input ve output haricinde sadece hata loglansin\",\"enum\":[\"LEVEL_0\",\"LEVEL_1\",\"LEVEL_2\",\"LEVEL_3\",\"LEVEL_4\",\"LEVEL_5\"],\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/LogOptionDTO" + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "[\n {\n \"id\": 53458251,\n \"methodFullName\": \"officia dolore sint id cillum\",\n \"methodId\": -6105240,\n \"optionType\": \"LEVEL_1\"\n }\n]" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/LogOptionDTO\"},\"definitions\":{\"LogOptionDTO\":{\"title\":\"LogOptionDTO\",\"description\":\"Methodlarin Loglama yontemini, seklini yonetmek icin kullanilacaktir. Her methoda bir ozellik atanir ve bu yontem uzerine loglama yapilir. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"methodFullName\":{\"type\":\"string\"},\"methodId\":{\"format\":\"int64\",\"description\":\"methodlara-yetkilere sorumluluk eslestirme\",\"type\":\"integer\"},\"optionType\":{\"description\":\"loglama yontemi. input loglansin, input ve output loglansin, input ve output haricinde sadece hata loglansin\",\"enum\":[\"LEVEL_0\",\"LEVEL_1\",\"LEVEL_2\",\"LEVEL_3\",\"LEVEL_4\",\"LEVEL_5\"],\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/LogOptionDTO" + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/log-options/count" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "countLogOptions" + }, + "id": { + "element": "string", + "content": "countLogOptionsUsingGET" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/log-options/count{?id%2eequals,id%2egreaterOrEqualThan,id%2egreaterThan,id%2ein*,id%2elessOrEqualThan,id%2elessThan,id%2especified,methodId%2eequals,methodId%2egreaterOrEqualThan,methodId%2egreaterThan,methodId%2ein*,methodId%2elessOrEqualThan,methodId%2elessThan,methodId%2especified,optionType%2eequals,optionType%2ein*,optionType%2especified}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "methodId.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "methodId.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "methodId.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "methodId.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "methodId.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "methodId.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "methodId.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "optionType.equals" + }, + "value": { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "LEVEL_0" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "LEVEL_1" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "LEVEL_2" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "LEVEL_3" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "LEVEL_4" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "LEVEL_5" + } + ] + } + } + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "optionType.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "LEVEL_0" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "LEVEL_1" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "LEVEL_2" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "LEVEL_3" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "LEVEL_4" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "LEVEL_5" + } + ] + } + } + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "optionType.specified" + }, + "value": { + "element": "boolean" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"format\":\"int64\",\"type\":\"integer\"}" + }, + { + "element": "dataStructure", + "content": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'int64'" + } + } + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/log-options/{id}" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getLogOption" + }, + "id": { + "element": "string", + "content": "getLogOptionUsingGET" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "id" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"LogOptionDTO\",\"description\":\"Methodlarin Loglama yontemini, seklini yonetmek icin kullanilacaktir. Her methoda bir ozellik atanir ve bu yontem uzerine loglama yapilir. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"methodFullName\":{\"type\":\"string\"},\"methodId\":{\"format\":\"int64\",\"description\":\"methodlara-yetkilere sorumluluk eslestirme\",\"type\":\"integer\"},\"optionType\":{\"description\":\"loglama yontemi. input loglansin, input ve output loglansin, input ve output haricinde sadece hata loglansin\",\"enum\":[\"LEVEL_0\",\"LEVEL_1\",\"LEVEL_2\",\"LEVEL_3\",\"LEVEL_4\",\"LEVEL_5\"],\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/LogOptionDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "deleteLogOption" + }, + "id": { + "element": "string", + "content": "deleteLogOptionUsingDELETE" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "id" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "204" + } + }, + "content": [ + { + "element": "copy", + "content": "No Content" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "category", + "meta": { + "title": { + "element": "string", + "content": "logging-browser-event-resource" + }, + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "resourceGroup" + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Logging Browser Event Resource" + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/logging-browser-events" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getAllLoggingBrowserEvents" + }, + "id": { + "element": "string", + "content": "getAllLoggingBrowserEventsUsingGET" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/logging-browser-events{?browserVersion%2econtains,browserVersion%2eequals,browserVersion%2ein*,browserVersion%2especified,channelEventId%2econtains,channelEventId%2eequals,channelEventId%2ein*,channelEventId%2especified,channelName%2econtains,channelName%2eequals,channelName%2ein*,channelName%2especified,currentRoute%2econtains,currentRoute%2eequals,currentRoute%2ein*,currentRoute%2especified,data%2econtains,data%2eequals,data%2ein*,data%2especified,endTime%2eequals,endTime%2egreaterOrEqualThan,endTime%2egreaterThan,endTime%2ein%5B0%5D%2edayOfMonth,endTime%2ein%5B0%5D%2edayOfWeek,endTime%2ein%5B0%5D%2edayOfYear,endTime%2ein%5B0%5D%2ehour,endTime%2ein%5B0%5D%2eminute,endTime%2ein%5B0%5D%2emonth,endTime%2ein%5B0%5D%2emonthValue,endTime%2ein%5B0%5D%2enano,endTime%2ein%5B0%5D%2eoffset%2eid,endTime%2ein%5B0%5D%2eoffset%2erules%2efixedOffset,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitionRules%5B0%5D%2edayOfMonthIndicator,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitionRules%5B0%5D%2edayOfWeek,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitionRules%5B0%5D%2elocalTime%2ehour,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitionRules%5B0%5D%2elocalTime%2eminute,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitionRules%5B0%5D%2elocalTime%2enano,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitionRules%5B0%5D%2elocalTime%2esecond,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitionRules%5B0%5D%2emidnightEndOfDay,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitionRules%5B0%5D%2emonth,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitionRules%5B0%5D%2etimeDefinition,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2edateTimeAfter,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2edateTimeBefore,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2eduration%2enano,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2eduration%2enegative,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2eduration%2eseconds,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2eduration%2eunits%5B0%5D%2edateBased,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2eduration%2eunits%5B0%5D%2edurationEstimated,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2eduration%2eunits%5B0%5D%2etimeBased,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2eduration%2ezero,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2egap,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2einstant,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2eoverlap,endTime%2ein%5B0%5D%2eoffset%2etotalSeconds,endTime%2ein%5B0%5D%2esecond,endTime%2ein%5B0%5D%2eyear,endTime%2ein%5B0%5D%2ezone%2eid,endTime%2ein%5B0%5D%2ezone%2erules%2efixedOffset,endTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2edayOfMonthIndicator,endTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2edayOfWeek,endTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2elocalTime%2ehour,endTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2elocalTime%2eminute,endTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2elocalTime%2enano,endTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2elocalTime%2esecond,endTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2emidnightEndOfDay,endTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2emonth,endTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2eoffsetAfter%2eid,endTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2eoffsetAfter%2etotalSeconds,endTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2eoffsetBefore%2eid,endTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2eoffsetBefore%2etotalSeconds,endTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2estandardOffset%2eid,endTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2estandardOffset%2etotalSeconds,endTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2etimeDefinition,endTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2edateTimeAfter,endTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2edateTimeBefore,endTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eduration%2enano,endTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eduration%2enegative,endTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eduration%2eseconds,endTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eduration%2eunits%5B0%5D%2edateBased,endTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eduration%2eunits%5B0%5D%2edurationEstimated,endTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eduration%2eunits%5B0%5D%2etimeBased,endTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eduration%2ezero,endTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2egap,endTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2einstant,endTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eoffsetAfter%2eid,endTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eoffsetAfter%2etotalSeconds,endTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eoffsetBefore%2eid,endTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eoffsetBefore%2etotalSeconds,endTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eoverlap,endTime%2elessOrEqualThan,endTime%2elessThan,endTime%2especified,eventType%2econtains,eventType%2eequals,eventType%2ein*,eventType%2especified,id%2eequals,id%2egreaterOrEqualThan,id%2egreaterThan,id%2ein*,id%2elessOrEqualThan,id%2elessThan,id%2especified,page,requestMethod%2econtains,requestMethod%2eequals,requestMethod%2ein*,requestMethod%2especified,requestUrl%2econtains,requestUrl%2eequals,requestUrl%2ein*,requestUrl%2especified,responseStatus%2econtains,responseStatus%2eequals,responseStatus%2ein*,responseStatus%2especified,size,sort*,startTime%2eequals,startTime%2egreaterOrEqualThan,startTime%2egreaterThan,startTime%2ein%5B0%5D%2edayOfMonth,startTime%2ein%5B0%5D%2edayOfWeek,startTime%2ein%5B0%5D%2edayOfYear,startTime%2ein%5B0%5D%2ehour,startTime%2ein%5B0%5D%2eminute,startTime%2ein%5B0%5D%2emonth,startTime%2ein%5B0%5D%2emonthValue,startTime%2ein%5B0%5D%2enano,startTime%2ein%5B0%5D%2eoffset%2eid,startTime%2ein%5B0%5D%2eoffset%2erules%2efixedOffset,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitionRules%5B0%5D%2edayOfMonthIndicator,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitionRules%5B0%5D%2edayOfWeek,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitionRules%5B0%5D%2elocalTime%2ehour,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitionRules%5B0%5D%2elocalTime%2eminute,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitionRules%5B0%5D%2elocalTime%2enano,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitionRules%5B0%5D%2elocalTime%2esecond,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitionRules%5B0%5D%2emidnightEndOfDay,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitionRules%5B0%5D%2emonth,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitionRules%5B0%5D%2etimeDefinition,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2edateTimeAfter,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2edateTimeBefore,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2eduration%2enano,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2eduration%2enegative,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2eduration%2eseconds,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2eduration%2eunits%5B0%5D%2edateBased,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2eduration%2eunits%5B0%5D%2edurationEstimated,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2eduration%2eunits%5B0%5D%2etimeBased,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2eduration%2ezero,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2egap,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2einstant,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2eoverlap,startTime%2ein%5B0%5D%2eoffset%2etotalSeconds,startTime%2ein%5B0%5D%2esecond,startTime%2ein%5B0%5D%2eyear,startTime%2ein%5B0%5D%2ezone%2eid,startTime%2ein%5B0%5D%2ezone%2erules%2efixedOffset,startTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2edayOfMonthIndicator,startTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2edayOfWeek,startTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2elocalTime%2ehour,startTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2elocalTime%2eminute,startTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2elocalTime%2enano,startTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2elocalTime%2esecond,startTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2emidnightEndOfDay,startTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2emonth,startTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2eoffsetAfter%2eid,startTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2eoffsetAfter%2etotalSeconds,startTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2eoffsetBefore%2eid,startTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2eoffsetBefore%2etotalSeconds,startTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2estandardOffset%2eid,startTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2estandardOffset%2etotalSeconds,startTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2etimeDefinition,startTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2edateTimeAfter,startTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2edateTimeBefore,startTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eduration%2enano,startTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eduration%2enegative,startTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eduration%2eseconds,startTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eduration%2eunits%5B0%5D%2edateBased,startTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eduration%2eunits%5B0%5D%2edurationEstimated,startTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eduration%2eunits%5B0%5D%2etimeBased,startTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eduration%2ezero,startTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2egap,startTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2einstant,startTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eoffsetAfter%2eid,startTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eoffsetAfter%2etotalSeconds,startTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eoffsetBefore%2eid,startTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eoffsetBefore%2etotalSeconds,startTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eoverlap,startTime%2elessOrEqualThan,startTime%2elessThan,startTime%2especified}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "browserVersion.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "browserVersion.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "browserVersion.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "browserVersion.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "channelEventId.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "channelEventId.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "channelEventId.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "channelEventId.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "channelName.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "channelName.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "channelName.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "channelName.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "currentRoute.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "currentRoute.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "currentRoute.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "currentRoute.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "data.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "data.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "data.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "data.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.greaterOrEqualThan" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.greaterThan" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].dayOfMonth" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].dayOfWeek" + }, + "value": { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "FRIDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MONDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SATURDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SUNDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "THURSDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "TUESDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "WEDNESDAY" + } + ] + } + } + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].dayOfYear" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].hour" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].minute" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].month" + }, + "value": { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "APRIL" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "AUGUST" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "DECEMBER" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "FEBRUARY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "JANUARY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "JULY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "JUNE" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MARCH" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "NOVEMBER" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "OCTOBER" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SEPTEMBER" + } + ] + } + } + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].monthValue" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].nano" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.id" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.fixedOffset" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitionRules[0].dayOfMonthIndicator" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitionRules[0].dayOfWeek" + }, + "value": { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "FRIDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MONDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SATURDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SUNDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "THURSDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "TUESDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "WEDNESDAY" + } + ] + } + } + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitionRules[0].localTime.hour" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitionRules[0].localTime.minute" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitionRules[0].localTime.nano" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitionRules[0].localTime.second" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitionRules[0].midnightEndOfDay" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitionRules[0].month" + }, + "value": { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "APRIL" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "AUGUST" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "DECEMBER" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "FEBRUARY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "JANUARY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "JULY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "JUNE" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MARCH" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "NOVEMBER" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "OCTOBER" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SEPTEMBER" + } + ] + } + } + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitionRules[0].timeDefinition" + }, + "value": { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "STANDARD" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "UTC" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "WALL" + } + ] + } + } + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitions[0].dateTimeAfter" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitions[0].dateTimeBefore" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitions[0].duration.nano" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitions[0].duration.negative" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitions[0].duration.seconds" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitions[0].duration.units[0].dateBased" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitions[0].duration.units[0].durationEstimated" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitions[0].duration.units[0].timeBased" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitions[0].duration.zero" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitions[0].gap" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitions[0].instant" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitions[0].overlap" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.totalSeconds" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].second" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].year" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.id" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.fixedOffset" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitionRules[0].dayOfMonthIndicator" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitionRules[0].dayOfWeek" + }, + "value": { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "FRIDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MONDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SATURDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SUNDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "THURSDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "TUESDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "WEDNESDAY" + } + ] + } + } + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitionRules[0].localTime.hour" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitionRules[0].localTime.minute" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitionRules[0].localTime.nano" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitionRules[0].localTime.second" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitionRules[0].midnightEndOfDay" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitionRules[0].month" + }, + "value": { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "APRIL" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "AUGUST" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "DECEMBER" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "FEBRUARY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "JANUARY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "JULY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "JUNE" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MARCH" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "NOVEMBER" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "OCTOBER" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SEPTEMBER" + } + ] + } + } + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitionRules[0].offsetAfter.id" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitionRules[0].offsetAfter.totalSeconds" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitionRules[0].offsetBefore.id" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitionRules[0].offsetBefore.totalSeconds" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitionRules[0].standardOffset.id" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitionRules[0].standardOffset.totalSeconds" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitionRules[0].timeDefinition" + }, + "value": { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "STANDARD" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "UTC" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "WALL" + } + ] + } + } + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitions[0].dateTimeAfter" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitions[0].dateTimeBefore" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitions[0].duration.nano" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitions[0].duration.negative" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitions[0].duration.seconds" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitions[0].duration.units[0].dateBased" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitions[0].duration.units[0].durationEstimated" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitions[0].duration.units[0].timeBased" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitions[0].duration.zero" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitions[0].gap" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitions[0].instant" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitions[0].offsetAfter.id" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitions[0].offsetAfter.totalSeconds" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitions[0].offsetBefore.id" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitions[0].offsetBefore.totalSeconds" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitions[0].overlap" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.lessOrEqualThan" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.lessThan" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "eventType.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "eventType.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "eventType.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "eventType.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Page number of the requested page" + } + }, + "content": { + "key": { + "element": "string", + "content": "page" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "requestMethod.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "requestMethod.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "requestMethod.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "requestMethod.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "requestUrl.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "requestUrl.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "requestUrl.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "requestUrl.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "responseStatus.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "responseStatus.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "responseStatus.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "responseStatus.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Size of a page" + } + }, + "content": { + "key": { + "element": "string", + "content": "size" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported." + } + }, + "content": { + "key": { + "element": "string", + "content": "sort" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.greaterOrEqualThan" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.greaterThan" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].dayOfMonth" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].dayOfWeek" + }, + "value": { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "FRIDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MONDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SATURDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SUNDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "THURSDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "TUESDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "WEDNESDAY" + } + ] + } + } + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].dayOfYear" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].hour" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].minute" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].month" + }, + "value": { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "APRIL" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "AUGUST" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "DECEMBER" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "FEBRUARY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "JANUARY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "JULY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "JUNE" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MARCH" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "NOVEMBER" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "OCTOBER" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SEPTEMBER" + } + ] + } + } + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].monthValue" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].nano" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.id" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.fixedOffset" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitionRules[0].dayOfMonthIndicator" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitionRules[0].dayOfWeek" + }, + "value": { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "FRIDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MONDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SATURDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SUNDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "THURSDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "TUESDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "WEDNESDAY" + } + ] + } + } + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitionRules[0].localTime.hour" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitionRules[0].localTime.minute" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitionRules[0].localTime.nano" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitionRules[0].localTime.second" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitionRules[0].midnightEndOfDay" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitionRules[0].month" + }, + "value": { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "APRIL" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "AUGUST" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "DECEMBER" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "FEBRUARY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "JANUARY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "JULY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "JUNE" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MARCH" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "NOVEMBER" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "OCTOBER" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SEPTEMBER" + } + ] + } + } + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitionRules[0].timeDefinition" + }, + "value": { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "STANDARD" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "UTC" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "WALL" + } + ] + } + } + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitions[0].dateTimeAfter" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitions[0].dateTimeBefore" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitions[0].duration.nano" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitions[0].duration.negative" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitions[0].duration.seconds" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitions[0].duration.units[0].dateBased" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitions[0].duration.units[0].durationEstimated" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitions[0].duration.units[0].timeBased" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitions[0].duration.zero" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitions[0].gap" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitions[0].instant" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitions[0].overlap" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.totalSeconds" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].second" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].year" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.id" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.fixedOffset" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitionRules[0].dayOfMonthIndicator" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitionRules[0].dayOfWeek" + }, + "value": { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "FRIDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MONDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SATURDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SUNDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "THURSDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "TUESDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "WEDNESDAY" + } + ] + } + } + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitionRules[0].localTime.hour" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitionRules[0].localTime.minute" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitionRules[0].localTime.nano" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitionRules[0].localTime.second" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitionRules[0].midnightEndOfDay" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitionRules[0].month" + }, + "value": { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "APRIL" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "AUGUST" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "DECEMBER" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "FEBRUARY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "JANUARY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "JULY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "JUNE" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MARCH" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "NOVEMBER" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "OCTOBER" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SEPTEMBER" + } + ] + } + } + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitionRules[0].offsetAfter.id" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitionRules[0].offsetAfter.totalSeconds" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitionRules[0].offsetBefore.id" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitionRules[0].offsetBefore.totalSeconds" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitionRules[0].standardOffset.id" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitionRules[0].standardOffset.totalSeconds" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitionRules[0].timeDefinition" + }, + "value": { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "STANDARD" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "UTC" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "WALL" + } + ] + } + } + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitions[0].dateTimeAfter" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitions[0].dateTimeBefore" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitions[0].duration.nano" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitions[0].duration.negative" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitions[0].duration.seconds" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitions[0].duration.units[0].dateBased" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitions[0].duration.units[0].durationEstimated" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitions[0].duration.units[0].timeBased" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitions[0].duration.zero" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitions[0].gap" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitions[0].instant" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitions[0].offsetAfter.id" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitions[0].offsetAfter.totalSeconds" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitions[0].offsetBefore.id" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitions[0].offsetBefore.totalSeconds" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitions[0].overlap" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.lessOrEqualThan" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.lessThan" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.specified" + }, + "value": { + "element": "boolean" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/LoggingBrowserEventDTO\"},\"definitions\":{\"LoggingBrowserEventDTO\":{\"title\":\"LoggingBrowserEventDTO\",\"description\":\"Browser eventlerini loglamak icin kullanilmaktadir. Uygulamamiz browserdan calistiginda, sayfa gecislerini-url degisimlerini ve servis cagrimlarini loglamak icin kullaniyoruz. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"browserVersion\":{\"description\":\"browser bilgisi\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"channelEventId\":{\"description\":\"Channel EventID, UI event id dir. servis cagrimi yapan uygulamanin kendine verdigi isim\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"channelName\":{\"description\":\"Log kanal Bilgisi. Uygulama, web, desktop, mobil\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"currentRoute\":{\"description\":\"rest api url bilgisi, parametreler haric\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"data\":{\"description\":\"geri kalan hersey.\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"endTime\":{\"format\":\"date-time\",\"description\":\"Servis response zamani\",\"type\":\"string\"},\"eventType\":{\"description\":\"event type\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"requestMethod\":{\"description\":\"Request Methodu\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"requestUrl\":{\"description\":\"rest api url bilgisi, parametreler haric\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"responseStatus\":{\"description\":\"response status\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"startTime\":{\"format\":\"date-time\",\"description\":\"Servis tetiklenme zamani\",\"type\":\"string\"},\"userName\":{\"description\":\"Kullanici Adi bilgisidir.\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/LoggingBrowserEventDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "updateLoggingBrowserEvent" + }, + "id": { + "element": "string", + "content": "updateLoggingBrowserEventUsingPUT" + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"browserVersion\": \"enim ea\",\n \"channelEventId\": \"qui eu cillum adipisicing aliqua\",\n \"channelName\": \"ea\",\n \"currentRoute\": \"do laborum sunt nostrud\",\n \"data\": \"velit non aute dolor\",\n \"endTime\": \"2010-03-14T06:33:45.889Z\",\n \"eventType\": \"Lorem eu aute\",\n \"id\": -22678201,\n \"requestMethod\": \"irure Lorem in ullamco\",\n \"requestUrl\": \"in tempor do minim\",\n \"responseStatus\": \"quis fugiat et sed Excepteur\",\n \"startTime\": \"2008-01-23T20:22:34.114Z\",\n \"userName\": \"iru\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"LoggingBrowserEventDTO\",\"description\":\"Browser eventlerini loglamak icin kullanilmaktadir. Uygulamamiz browserdan calistiginda, sayfa gecislerini-url degisimlerini ve servis cagrimlarini loglamak icin kullaniyoruz. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"browserVersion\":{\"description\":\"browser bilgisi\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"channelEventId\":{\"description\":\"Channel EventID, UI event id dir. servis cagrimi yapan uygulamanin kendine verdigi isim\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"channelName\":{\"description\":\"Log kanal Bilgisi. Uygulama, web, desktop, mobil\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"currentRoute\":{\"description\":\"rest api url bilgisi, parametreler haric\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"data\":{\"description\":\"geri kalan hersey.\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"endTime\":{\"format\":\"date-time\",\"description\":\"Servis response zamani\",\"type\":\"string\"},\"eventType\":{\"description\":\"event type\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"requestMethod\":{\"description\":\"Request Methodu\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"requestUrl\":{\"description\":\"rest api url bilgisi, parametreler haric\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"responseStatus\":{\"description\":\"response status\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"startTime\":{\"format\":\"date-time\",\"description\":\"Servis tetiklenme zamani\",\"type\":\"string\"},\"userName\":{\"description\":\"Kullanici Adi bilgisidir.\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/LoggingBrowserEventDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"LoggingBrowserEventDTO\",\"description\":\"Browser eventlerini loglamak icin kullanilmaktadir. Uygulamamiz browserdan calistiginda, sayfa gecislerini-url degisimlerini ve servis cagrimlarini loglamak icin kullaniyoruz. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"browserVersion\":{\"description\":\"browser bilgisi\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"channelEventId\":{\"description\":\"Channel EventID, UI event id dir. servis cagrimi yapan uygulamanin kendine verdigi isim\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"channelName\":{\"description\":\"Log kanal Bilgisi. Uygulama, web, desktop, mobil\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"currentRoute\":{\"description\":\"rest api url bilgisi, parametreler haric\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"data\":{\"description\":\"geri kalan hersey.\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"endTime\":{\"format\":\"date-time\",\"description\":\"Servis response zamani\",\"type\":\"string\"},\"eventType\":{\"description\":\"event type\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"requestMethod\":{\"description\":\"Request Methodu\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"requestUrl\":{\"description\":\"rest api url bilgisi, parametreler haric\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"responseStatus\":{\"description\":\"response status\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"startTime\":{\"format\":\"date-time\",\"description\":\"Servis tetiklenme zamani\",\"type\":\"string\"},\"userName\":{\"description\":\"Kullanici Adi bilgisidir.\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/LoggingBrowserEventDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"browserVersion\": \"commodo\",\n \"channelEventId\": \"exercitation sit\",\n \"channelName\": \"exercitation deserunt\",\n \"currentRoute\": \"aliqua tempor\",\n \"data\": \"labore\",\n \"endTime\": \"2003-03-03T03:40:44.653Z\",\n \"eventType\": \"eiusmod nulla sed velit\",\n \"id\": 44595392,\n \"requestMethod\": \"ex\",\n \"requestUrl\": \"nostrud mollit aliquip\",\n \"responseStatus\": \"aliquip laboris aliqua irure\",\n \"startTime\": \"2001-09-16T12:21:48.391Z\",\n \"userName\": \"sunt ex\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"LoggingBrowserEventDTO\",\"description\":\"Browser eventlerini loglamak icin kullanilmaktadir. Uygulamamiz browserdan calistiginda, sayfa gecislerini-url degisimlerini ve servis cagrimlarini loglamak icin kullaniyoruz. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"browserVersion\":{\"description\":\"browser bilgisi\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"channelEventId\":{\"description\":\"Channel EventID, UI event id dir. servis cagrimi yapan uygulamanin kendine verdigi isim\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"channelName\":{\"description\":\"Log kanal Bilgisi. Uygulama, web, desktop, mobil\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"currentRoute\":{\"description\":\"rest api url bilgisi, parametreler haric\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"data\":{\"description\":\"geri kalan hersey.\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"endTime\":{\"format\":\"date-time\",\"description\":\"Servis response zamani\",\"type\":\"string\"},\"eventType\":{\"description\":\"event type\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"requestMethod\":{\"description\":\"Request Methodu\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"requestUrl\":{\"description\":\"rest api url bilgisi, parametreler haric\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"responseStatus\":{\"description\":\"response status\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"startTime\":{\"format\":\"date-time\",\"description\":\"Servis tetiklenme zamani\",\"type\":\"string\"},\"userName\":{\"description\":\"Kullanici Adi bilgisidir.\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/LoggingBrowserEventDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"browserVersion\": \"aute incididunt irure ad\",\n \"channelEventId\": \"quis reprehenderit amet sed mollit\",\n \"channelName\": \"non Ut irure pariatur\",\n \"currentRoute\": \"incididunt\",\n \"data\": \"enim reprehenderit dolore exercitation elit\",\n \"endTime\": \"1978-10-28T06:36:38.596Z\",\n \"eventType\": \"ut quis dolor\",\n \"id\": 34003442,\n \"requestMethod\": \"ullamco qui dolor voluptate\",\n \"requestUrl\": \"magna\",\n \"responseStatus\": \"elit culpa sed mollit do\",\n \"startTime\": \"1944-12-19T06:15:14.403Z\",\n \"userName\": \"tempor aliqua culpa est labore\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"LoggingBrowserEventDTO\",\"description\":\"Browser eventlerini loglamak icin kullanilmaktadir. Uygulamamiz browserdan calistiginda, sayfa gecislerini-url degisimlerini ve servis cagrimlarini loglamak icin kullaniyoruz. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"browserVersion\":{\"description\":\"browser bilgisi\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"channelEventId\":{\"description\":\"Channel EventID, UI event id dir. servis cagrimi yapan uygulamanin kendine verdigi isim\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"channelName\":{\"description\":\"Log kanal Bilgisi. Uygulama, web, desktop, mobil\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"currentRoute\":{\"description\":\"rest api url bilgisi, parametreler haric\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"data\":{\"description\":\"geri kalan hersey.\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"endTime\":{\"format\":\"date-time\",\"description\":\"Servis response zamani\",\"type\":\"string\"},\"eventType\":{\"description\":\"event type\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"requestMethod\":{\"description\":\"Request Methodu\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"requestUrl\":{\"description\":\"rest api url bilgisi, parametreler haric\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"responseStatus\":{\"description\":\"response status\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"startTime\":{\"format\":\"date-time\",\"description\":\"Servis tetiklenme zamani\",\"type\":\"string\"},\"userName\":{\"description\":\"Kullanici Adi bilgisidir.\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/LoggingBrowserEventDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"browserVersion\": \"consequat quis\",\n \"channelEventId\": \"ex\",\n \"channelName\": \"est eiusmod\",\n \"currentRoute\": \"ut velit sed\",\n \"data\": \"ut Ut\",\n \"endTime\": \"1997-10-09T23:47:02.349Z\",\n \"eventType\": \"elit dolore\",\n \"id\": -76134929,\n \"requestMethod\": \"culpa laboris\",\n \"requestUrl\": \"mollit volupta\",\n \"responseStatus\": \"id ut anim\",\n \"startTime\": \"1992-05-25T22:53:16.402Z\",\n \"userName\": \"ipsum sint fugiat\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"LoggingBrowserEventDTO\",\"description\":\"Browser eventlerini loglamak icin kullanilmaktadir. Uygulamamiz browserdan calistiginda, sayfa gecislerini-url degisimlerini ve servis cagrimlarini loglamak icin kullaniyoruz. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"browserVersion\":{\"description\":\"browser bilgisi\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"channelEventId\":{\"description\":\"Channel EventID, UI event id dir. servis cagrimi yapan uygulamanin kendine verdigi isim\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"channelName\":{\"description\":\"Log kanal Bilgisi. Uygulama, web, desktop, mobil\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"currentRoute\":{\"description\":\"rest api url bilgisi, parametreler haric\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"data\":{\"description\":\"geri kalan hersey.\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"endTime\":{\"format\":\"date-time\",\"description\":\"Servis response zamani\",\"type\":\"string\"},\"eventType\":{\"description\":\"event type\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"requestMethod\":{\"description\":\"Request Methodu\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"requestUrl\":{\"description\":\"rest api url bilgisi, parametreler haric\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"responseStatus\":{\"description\":\"response status\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"startTime\":{\"format\":\"date-time\",\"description\":\"Servis tetiklenme zamani\",\"type\":\"string\"},\"userName\":{\"description\":\"Kullanici Adi bilgisidir.\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/LoggingBrowserEventDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"browserVersion\": \"do enim sunt ea ut\",\n \"channelEventId\": \"deserunt\",\n \"channelName\": \"deserunt Lorem sit\",\n \"currentRoute\": \"occaecat sit\",\n \"data\": \"nostrud dolore elit commodo\",\n \"endTime\": \"2019-07-23T14:13:01.658Z\",\n \"eventType\": \"nisi\",\n \"id\": 23306740,\n \"requestMethod\": \"officia\",\n \"requestUrl\": \"qui voluptate nostrud dolor esse\",\n \"responseStatus\": \"ex labore laborum tempor\",\n \"startTime\": \"1994-07-24T02:40:51.787Z\",\n \"userName\": \"veniam aliqua adipisicing\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"LoggingBrowserEventDTO\",\"description\":\"Browser eventlerini loglamak icin kullanilmaktadir. Uygulamamiz browserdan calistiginda, sayfa gecislerini-url degisimlerini ve servis cagrimlarini loglamak icin kullaniyoruz. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"browserVersion\":{\"description\":\"browser bilgisi\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"channelEventId\":{\"description\":\"Channel EventID, UI event id dir. servis cagrimi yapan uygulamanin kendine verdigi isim\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"channelName\":{\"description\":\"Log kanal Bilgisi. Uygulama, web, desktop, mobil\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"currentRoute\":{\"description\":\"rest api url bilgisi, parametreler haric\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"data\":{\"description\":\"geri kalan hersey.\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"endTime\":{\"format\":\"date-time\",\"description\":\"Servis response zamani\",\"type\":\"string\"},\"eventType\":{\"description\":\"event type\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"requestMethod\":{\"description\":\"Request Methodu\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"requestUrl\":{\"description\":\"rest api url bilgisi, parametreler haric\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"responseStatus\":{\"description\":\"response status\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"startTime\":{\"format\":\"date-time\",\"description\":\"Servis tetiklenme zamani\",\"type\":\"string\"},\"userName\":{\"description\":\"Kullanici Adi bilgisidir.\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/LoggingBrowserEventDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "createLoggingBrowserEvent" + }, + "id": { + "element": "string", + "content": "createLoggingBrowserEventUsingPOST" + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"browserVersion\": \"in amet\",\n \"channelEventId\": \"ea\",\n \"channelName\": \"magna ea do Excepteur\",\n \"currentRoute\": \"do dolor\",\n \"data\": \"ullamco\",\n \"endTime\": \"1999-05-18T06:05:29.773Z\",\n \"eventType\": \"et\",\n \"id\": -38199804,\n \"requestMethod\": \"consectetur sint non exercitation eu\",\n \"requestUrl\": \"et nostrud\",\n \"responseStatus\": \"Duis exercitation in\",\n \"startTime\": \"1998-04-14T18:13:59.662Z\",\n \"userName\": \"fugiat\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"LoggingBrowserEventDTO\",\"description\":\"Browser eventlerini loglamak icin kullanilmaktadir. Uygulamamiz browserdan calistiginda, sayfa gecislerini-url degisimlerini ve servis cagrimlarini loglamak icin kullaniyoruz. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"browserVersion\":{\"description\":\"browser bilgisi\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"channelEventId\":{\"description\":\"Channel EventID, UI event id dir. servis cagrimi yapan uygulamanin kendine verdigi isim\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"channelName\":{\"description\":\"Log kanal Bilgisi. Uygulama, web, desktop, mobil\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"currentRoute\":{\"description\":\"rest api url bilgisi, parametreler haric\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"data\":{\"description\":\"geri kalan hersey.\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"endTime\":{\"format\":\"date-time\",\"description\":\"Servis response zamani\",\"type\":\"string\"},\"eventType\":{\"description\":\"event type\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"requestMethod\":{\"description\":\"Request Methodu\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"requestUrl\":{\"description\":\"rest api url bilgisi, parametreler haric\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"responseStatus\":{\"description\":\"response status\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"startTime\":{\"format\":\"date-time\",\"description\":\"Servis tetiklenme zamani\",\"type\":\"string\"},\"userName\":{\"description\":\"Kullanici Adi bilgisidir.\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/LoggingBrowserEventDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"LoggingBrowserEventDTO\",\"description\":\"Browser eventlerini loglamak icin kullanilmaktadir. Uygulamamiz browserdan calistiginda, sayfa gecislerini-url degisimlerini ve servis cagrimlarini loglamak icin kullaniyoruz. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"browserVersion\":{\"description\":\"browser bilgisi\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"channelEventId\":{\"description\":\"Channel EventID, UI event id dir. servis cagrimi yapan uygulamanin kendine verdigi isim\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"channelName\":{\"description\":\"Log kanal Bilgisi. Uygulama, web, desktop, mobil\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"currentRoute\":{\"description\":\"rest api url bilgisi, parametreler haric\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"data\":{\"description\":\"geri kalan hersey.\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"endTime\":{\"format\":\"date-time\",\"description\":\"Servis response zamani\",\"type\":\"string\"},\"eventType\":{\"description\":\"event type\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"requestMethod\":{\"description\":\"Request Methodu\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"requestUrl\":{\"description\":\"rest api url bilgisi, parametreler haric\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"responseStatus\":{\"description\":\"response status\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"startTime\":{\"format\":\"date-time\",\"description\":\"Servis tetiklenme zamani\",\"type\":\"string\"},\"userName\":{\"description\":\"Kullanici Adi bilgisidir.\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/LoggingBrowserEventDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"browserVersion\": \"aliquip\",\n \"channelEventId\": \"adipisicing tempor dolore quis ad\",\n \"channelName\": \"enim mollit tempor\",\n \"currentRoute\": \"aliqua\",\n \"data\": \"consequat labore ea officia eiusmod\",\n \"endTime\": \"1994-12-27T12:00:46.539Z\",\n \"eventType\": \"consectetur Duis\",\n \"id\": -5897963,\n \"requestMethod\": \"proident amet non enim\",\n \"requestUrl\": \"dolor amet irure laborum\",\n \"responseStatus\": \"irure cupidatat ipsum Ut\",\n \"startTime\": \"1969-01-18T20:12:45.126Z\",\n \"userName\": \"ut dolor sunt\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"LoggingBrowserEventDTO\",\"description\":\"Browser eventlerini loglamak icin kullanilmaktadir. Uygulamamiz browserdan calistiginda, sayfa gecislerini-url degisimlerini ve servis cagrimlarini loglamak icin kullaniyoruz. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"browserVersion\":{\"description\":\"browser bilgisi\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"channelEventId\":{\"description\":\"Channel EventID, UI event id dir. servis cagrimi yapan uygulamanin kendine verdigi isim\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"channelName\":{\"description\":\"Log kanal Bilgisi. Uygulama, web, desktop, mobil\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"currentRoute\":{\"description\":\"rest api url bilgisi, parametreler haric\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"data\":{\"description\":\"geri kalan hersey.\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"endTime\":{\"format\":\"date-time\",\"description\":\"Servis response zamani\",\"type\":\"string\"},\"eventType\":{\"description\":\"event type\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"requestMethod\":{\"description\":\"Request Methodu\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"requestUrl\":{\"description\":\"rest api url bilgisi, parametreler haric\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"responseStatus\":{\"description\":\"response status\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"startTime\":{\"format\":\"date-time\",\"description\":\"Servis tetiklenme zamani\",\"type\":\"string\"},\"userName\":{\"description\":\"Kullanici Adi bilgisidir.\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/LoggingBrowserEventDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"browserVersion\": \"pariatur culpa dolor incididunt\",\n \"channelEventId\": \"in exercitation aute\",\n \"channelName\": \"sit in Lorem velit\",\n \"currentRoute\": \"proident laboris ipsum et\",\n \"data\": \"et ut aliquip fu\",\n \"endTime\": \"1948-11-22T03:49:58.159Z\",\n \"eventType\": \"laboris\",\n \"id\": 65560536,\n \"requestMethod\": \"in laboris\",\n \"requestUrl\": \"dolor exercitation et aute\",\n \"responseStatus\": \"tempor qui reprehenderit proident\",\n \"startTime\": \"1976-10-03T02:03:58.657Z\",\n \"userName\": \"qu\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"LoggingBrowserEventDTO\",\"description\":\"Browser eventlerini loglamak icin kullanilmaktadir. Uygulamamiz browserdan calistiginda, sayfa gecislerini-url degisimlerini ve servis cagrimlarini loglamak icin kullaniyoruz. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"browserVersion\":{\"description\":\"browser bilgisi\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"channelEventId\":{\"description\":\"Channel EventID, UI event id dir. servis cagrimi yapan uygulamanin kendine verdigi isim\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"channelName\":{\"description\":\"Log kanal Bilgisi. Uygulama, web, desktop, mobil\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"currentRoute\":{\"description\":\"rest api url bilgisi, parametreler haric\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"data\":{\"description\":\"geri kalan hersey.\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"endTime\":{\"format\":\"date-time\",\"description\":\"Servis response zamani\",\"type\":\"string\"},\"eventType\":{\"description\":\"event type\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"requestMethod\":{\"description\":\"Request Methodu\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"requestUrl\":{\"description\":\"rest api url bilgisi, parametreler haric\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"responseStatus\":{\"description\":\"response status\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"startTime\":{\"format\":\"date-time\",\"description\":\"Servis tetiklenme zamani\",\"type\":\"string\"},\"userName\":{\"description\":\"Kullanici Adi bilgisidir.\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/LoggingBrowserEventDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"browserVersion\": \"amet\",\n \"channelEventId\": \"minim ex incididunt\",\n \"channelName\": \"dolore ipsum deserunt et\",\n \"currentRoute\": \"eiusmod in amet non mollit\",\n \"data\": \"culpa\",\n \"endTime\": \"1942-11-22T11:18:06.313Z\",\n \"eventType\": \"Ut Duis incididunt cillum velit\",\n \"id\": 8828120,\n \"requestMethod\": \"officia consectetur laborum\",\n \"requestUrl\": \"magna in\",\n \"responseStatus\": \"eu\",\n \"startTime\": \"1956-12-24T12:17:14.590Z\",\n \"userName\": \"dolore sed adipisicing\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"LoggingBrowserEventDTO\",\"description\":\"Browser eventlerini loglamak icin kullanilmaktadir. Uygulamamiz browserdan calistiginda, sayfa gecislerini-url degisimlerini ve servis cagrimlarini loglamak icin kullaniyoruz. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"browserVersion\":{\"description\":\"browser bilgisi\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"channelEventId\":{\"description\":\"Channel EventID, UI event id dir. servis cagrimi yapan uygulamanin kendine verdigi isim\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"channelName\":{\"description\":\"Log kanal Bilgisi. Uygulama, web, desktop, mobil\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"currentRoute\":{\"description\":\"rest api url bilgisi, parametreler haric\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"data\":{\"description\":\"geri kalan hersey.\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"endTime\":{\"format\":\"date-time\",\"description\":\"Servis response zamani\",\"type\":\"string\"},\"eventType\":{\"description\":\"event type\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"requestMethod\":{\"description\":\"Request Methodu\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"requestUrl\":{\"description\":\"rest api url bilgisi, parametreler haric\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"responseStatus\":{\"description\":\"response status\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"startTime\":{\"format\":\"date-time\",\"description\":\"Servis tetiklenme zamani\",\"type\":\"string\"},\"userName\":{\"description\":\"Kullanici Adi bilgisidir.\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/LoggingBrowserEventDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"browserVersion\": \"in\",\n \"channelEventId\": \"adipisicing quis sunt labore ipsum\",\n \"channelName\": \"reprehenderit aute irure\",\n \"currentRoute\": \"et laboris minim veniam\",\n \"data\": \"nulla qui Lorem in nisi\",\n \"endTime\": \"2015-08-24T10:58:23.536Z\",\n \"eventType\": \"pariatur\",\n \"id\": 50713337,\n \"requestMethod\": \"dolore\",\n \"requestUrl\": \"sed ullamco dolor Lorem Duis\",\n \"responseStatus\": \"ut aute ipsum\",\n \"startTime\": \"2015-06-16T07:49:06.869Z\",\n \"userName\": \"Ut Excepteur est\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"LoggingBrowserEventDTO\",\"description\":\"Browser eventlerini loglamak icin kullanilmaktadir. Uygulamamiz browserdan calistiginda, sayfa gecislerini-url degisimlerini ve servis cagrimlarini loglamak icin kullaniyoruz. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"browserVersion\":{\"description\":\"browser bilgisi\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"channelEventId\":{\"description\":\"Channel EventID, UI event id dir. servis cagrimi yapan uygulamanin kendine verdigi isim\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"channelName\":{\"description\":\"Log kanal Bilgisi. Uygulama, web, desktop, mobil\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"currentRoute\":{\"description\":\"rest api url bilgisi, parametreler haric\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"data\":{\"description\":\"geri kalan hersey.\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"endTime\":{\"format\":\"date-time\",\"description\":\"Servis response zamani\",\"type\":\"string\"},\"eventType\":{\"description\":\"event type\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"requestMethod\":{\"description\":\"Request Methodu\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"requestUrl\":{\"description\":\"rest api url bilgisi, parametreler haric\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"responseStatus\":{\"description\":\"response status\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"startTime\":{\"format\":\"date-time\",\"description\":\"Servis tetiklenme zamani\",\"type\":\"string\"},\"userName\":{\"description\":\"Kullanici Adi bilgisidir.\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/LoggingBrowserEventDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/logging-browser-events/browser/config" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getLoggingConfig" + }, + "id": { + "element": "string", + "content": "getLoggingConfigUsingGET" + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/LoggingBrowserConfigDTO\"}],\"definitions\":{\"LoggingBrowserConfigDTO\":{\"title\":\"LoggingBrowserConfigDTO\",\"type\":\"object\",\"properties\":{\"enabled\":{\"type\":\"boolean\"},\"loggingTypes\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/LoggingBrowserEventTypeDTO\"}}}},\"LoggingBrowserEventTypeDTO\":{\"title\":\"LoggingBrowserEventTypeDTO\",\"type\":\"object\",\"properties\":{\"typeName\":{\"type\":\"string\"},\"value\":{\"type\":\"boolean\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/LoggingBrowserConfigDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/logging-browser-events/browser/log" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "createLoggingBrowserEvents" + }, + "id": { + "element": "string", + "content": "createLoggingBrowserEventsUsingPUT" + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "[\n {\n \"browserVersion\": \"anim\",\n \"channelEventId\": \"ea amet proident incididunt\",\n \"channelName\": \"nulla sint aute\",\n \"currentRoute\": \"ut\",\n \"data\": \"cillum do eiusmod labore officia\",\n \"endTime\": \"1941-10-25T13:09:20.999Z\",\n \"eventType\": \"nisi\",\n \"id\": -8975568,\n \"requestMethod\": \"incididunt nisi pariatur Lorem\",\n \"requestUrl\": \"non nisi do\",\n \"responseStatus\": \"ut \",\n \"startTime\": \"1991-03-21T06:37:32.204Z\",\n \"userName\": \"la\"\n }\n]" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/LoggingBrowserEventDTO\"},\"definitions\":{\"LoggingBrowserEventDTO\":{\"title\":\"LoggingBrowserEventDTO\",\"description\":\"Browser eventlerini loglamak icin kullanilmaktadir. Uygulamamiz browserdan calistiginda, sayfa gecislerini-url degisimlerini ve servis cagrimlarini loglamak icin kullaniyoruz. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"browserVersion\":{\"description\":\"browser bilgisi\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"channelEventId\":{\"description\":\"Channel EventID, UI event id dir. servis cagrimi yapan uygulamanin kendine verdigi isim\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"channelName\":{\"description\":\"Log kanal Bilgisi. Uygulama, web, desktop, mobil\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"currentRoute\":{\"description\":\"rest api url bilgisi, parametreler haric\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"data\":{\"description\":\"geri kalan hersey.\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"endTime\":{\"format\":\"date-time\",\"description\":\"Servis response zamani\",\"type\":\"string\"},\"eventType\":{\"description\":\"event type\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"requestMethod\":{\"description\":\"Request Methodu\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"requestUrl\":{\"description\":\"rest api url bilgisi, parametreler haric\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"responseStatus\":{\"description\":\"response status\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"startTime\":{\"format\":\"date-time\",\"description\":\"Servis tetiklenme zamani\",\"type\":\"string\"},\"userName\":{\"description\":\"Kullanici Adi bilgisidir.\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/LoggingBrowserEventDTO" + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "[\n {\n \"browserVersion\": \"non Excepteur dolore\",\n \"channelEventId\": \"veniam officia tempor\",\n \"channelName\": \"nisi Lor\",\n \"currentRoute\": \"quis\",\n \"data\": \"pariatur\",\n \"endTime\": \"1945-12-07T11:35:16.188Z\",\n \"eventType\": \"Lorem\",\n \"id\": 78485227,\n \"requestMethod\": \"nisi ut sunt irure in\",\n \"requestUrl\": \"minim ad Ut\",\n \"responseStatus\": \"minim et\",\n \"startTime\": \"2011-02-28T17:00:44.232Z\",\n \"userName\": \"minim\"\n }\n]" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/LoggingBrowserEventDTO\"},\"definitions\":{\"LoggingBrowserEventDTO\":{\"title\":\"LoggingBrowserEventDTO\",\"description\":\"Browser eventlerini loglamak icin kullanilmaktadir. Uygulamamiz browserdan calistiginda, sayfa gecislerini-url degisimlerini ve servis cagrimlarini loglamak icin kullaniyoruz. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"browserVersion\":{\"description\":\"browser bilgisi\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"channelEventId\":{\"description\":\"Channel EventID, UI event id dir. servis cagrimi yapan uygulamanin kendine verdigi isim\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"channelName\":{\"description\":\"Log kanal Bilgisi. Uygulama, web, desktop, mobil\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"currentRoute\":{\"description\":\"rest api url bilgisi, parametreler haric\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"data\":{\"description\":\"geri kalan hersey.\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"endTime\":{\"format\":\"date-time\",\"description\":\"Servis response zamani\",\"type\":\"string\"},\"eventType\":{\"description\":\"event type\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"requestMethod\":{\"description\":\"Request Methodu\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"requestUrl\":{\"description\":\"rest api url bilgisi, parametreler haric\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"responseStatus\":{\"description\":\"response status\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"startTime\":{\"format\":\"date-time\",\"description\":\"Servis tetiklenme zamani\",\"type\":\"string\"},\"userName\":{\"description\":\"Kullanici Adi bilgisidir.\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/LoggingBrowserEventDTO" + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "[\n {\n \"browserVersion\": \"dolore tempor ipsum\",\n \"channelEventId\": \"do dolor sed\",\n \"channelName\": \"eu aliqua ut\",\n \"currentRoute\": \"non\",\n \"data\": \"labore culpa Duis dolore\",\n \"endTime\": \"2020-01-01T21:26:56.531Z\",\n \"eventType\": \"id aliquip\",\n \"id\": 43360929,\n \"requestMethod\": \"in adipisicing\",\n \"requestUrl\": \"est pariatur in\",\n \"responseStatus\": \"eu dolore ipsum\",\n \"startTime\": \"1998-01-06T12:32:46.325Z\",\n \"userName\": \"ullamco laborum quis ut\"\n }\n]" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/LoggingBrowserEventDTO\"},\"definitions\":{\"LoggingBrowserEventDTO\":{\"title\":\"LoggingBrowserEventDTO\",\"description\":\"Browser eventlerini loglamak icin kullanilmaktadir. Uygulamamiz browserdan calistiginda, sayfa gecislerini-url degisimlerini ve servis cagrimlarini loglamak icin kullaniyoruz. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"browserVersion\":{\"description\":\"browser bilgisi\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"channelEventId\":{\"description\":\"Channel EventID, UI event id dir. servis cagrimi yapan uygulamanin kendine verdigi isim\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"channelName\":{\"description\":\"Log kanal Bilgisi. Uygulama, web, desktop, mobil\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"currentRoute\":{\"description\":\"rest api url bilgisi, parametreler haric\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"data\":{\"description\":\"geri kalan hersey.\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"endTime\":{\"format\":\"date-time\",\"description\":\"Servis response zamani\",\"type\":\"string\"},\"eventType\":{\"description\":\"event type\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"requestMethod\":{\"description\":\"Request Methodu\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"requestUrl\":{\"description\":\"rest api url bilgisi, parametreler haric\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"responseStatus\":{\"description\":\"response status\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"startTime\":{\"format\":\"date-time\",\"description\":\"Servis tetiklenme zamani\",\"type\":\"string\"},\"userName\":{\"description\":\"Kullanici Adi bilgisidir.\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/LoggingBrowserEventDTO" + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "[\n {\n \"browserVersion\": \"rep\",\n \"channelEventId\": \"ea Duis irure laborum\",\n \"channelName\": \"sint\",\n \"currentRoute\": \"qui fugiat dolor sit\",\n \"data\": \"aliqua reprehenderit\",\n \"endTime\": \"1990-05-17T19:51:45.739Z\",\n \"eventType\": \"sint amet pariatur volupta\",\n \"id\": 77132078,\n \"requestMethod\": \"id adipisicing\",\n \"requestUrl\": \"nostrud sunt tempor\",\n \"responseStatus\": \"ullamco dolor\",\n \"startTime\": \"1973-03-26T11:45:17.276Z\",\n \"userName\": \"velit\"\n }\n]" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/LoggingBrowserEventDTO\"},\"definitions\":{\"LoggingBrowserEventDTO\":{\"title\":\"LoggingBrowserEventDTO\",\"description\":\"Browser eventlerini loglamak icin kullanilmaktadir. Uygulamamiz browserdan calistiginda, sayfa gecislerini-url degisimlerini ve servis cagrimlarini loglamak icin kullaniyoruz. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"browserVersion\":{\"description\":\"browser bilgisi\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"channelEventId\":{\"description\":\"Channel EventID, UI event id dir. servis cagrimi yapan uygulamanin kendine verdigi isim\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"channelName\":{\"description\":\"Log kanal Bilgisi. Uygulama, web, desktop, mobil\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"currentRoute\":{\"description\":\"rest api url bilgisi, parametreler haric\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"data\":{\"description\":\"geri kalan hersey.\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"endTime\":{\"format\":\"date-time\",\"description\":\"Servis response zamani\",\"type\":\"string\"},\"eventType\":{\"description\":\"event type\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"requestMethod\":{\"description\":\"Request Methodu\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"requestUrl\":{\"description\":\"rest api url bilgisi, parametreler haric\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"responseStatus\":{\"description\":\"response status\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"startTime\":{\"format\":\"date-time\",\"description\":\"Servis tetiklenme zamani\",\"type\":\"string\"},\"userName\":{\"description\":\"Kullanici Adi bilgisidir.\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/LoggingBrowserEventDTO" + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "[\n {\n \"browserVersion\": \"aute esse amet incididunt\",\n \"channelEventId\": \"irure sed laborum\",\n \"channelName\": \"occaecat\",\n \"currentRoute\": \"dolore in\",\n \"data\": \"nostrud exercitation\",\n \"endTime\": \"1961-06-08T19:47:49.949Z\",\n \"eventType\": \"ut dolore\",\n \"id\": -40015467,\n \"requestMethod\": \"occaecat u\",\n \"requestUrl\": \"dolore nostrud anim inc\",\n \"responseStatus\": \"esse ipsum quis\",\n \"startTime\": \"1949-01-25T07:40:14.154Z\",\n \"userName\": \"culp\"\n }\n]" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/LoggingBrowserEventDTO\"},\"definitions\":{\"LoggingBrowserEventDTO\":{\"title\":\"LoggingBrowserEventDTO\",\"description\":\"Browser eventlerini loglamak icin kullanilmaktadir. Uygulamamiz browserdan calistiginda, sayfa gecislerini-url degisimlerini ve servis cagrimlarini loglamak icin kullaniyoruz. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"browserVersion\":{\"description\":\"browser bilgisi\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"channelEventId\":{\"description\":\"Channel EventID, UI event id dir. servis cagrimi yapan uygulamanin kendine verdigi isim\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"channelName\":{\"description\":\"Log kanal Bilgisi. Uygulama, web, desktop, mobil\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"currentRoute\":{\"description\":\"rest api url bilgisi, parametreler haric\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"data\":{\"description\":\"geri kalan hersey.\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"endTime\":{\"format\":\"date-time\",\"description\":\"Servis response zamani\",\"type\":\"string\"},\"eventType\":{\"description\":\"event type\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"requestMethod\":{\"description\":\"Request Methodu\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"requestUrl\":{\"description\":\"rest api url bilgisi, parametreler haric\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"responseStatus\":{\"description\":\"response status\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"startTime\":{\"format\":\"date-time\",\"description\":\"Servis tetiklenme zamani\",\"type\":\"string\"},\"userName\":{\"description\":\"Kullanici Adi bilgisidir.\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/LoggingBrowserEventDTO" + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/logging-browser-events/count" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "countLoggingBrowserEvents" + }, + "id": { + "element": "string", + "content": "countLoggingBrowserEventsUsingGET" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/logging-browser-events/count{?browserVersion%2econtains,browserVersion%2eequals,browserVersion%2ein*,browserVersion%2especified,channelEventId%2econtains,channelEventId%2eequals,channelEventId%2ein*,channelEventId%2especified,channelName%2econtains,channelName%2eequals,channelName%2ein*,channelName%2especified,currentRoute%2econtains,currentRoute%2eequals,currentRoute%2ein*,currentRoute%2especified,data%2econtains,data%2eequals,data%2ein*,data%2especified,endTime%2eequals,endTime%2egreaterOrEqualThan,endTime%2egreaterThan,endTime%2ein%5B0%5D%2edayOfMonth,endTime%2ein%5B0%5D%2edayOfWeek,endTime%2ein%5B0%5D%2edayOfYear,endTime%2ein%5B0%5D%2ehour,endTime%2ein%5B0%5D%2eminute,endTime%2ein%5B0%5D%2emonth,endTime%2ein%5B0%5D%2emonthValue,endTime%2ein%5B0%5D%2enano,endTime%2ein%5B0%5D%2eoffset%2eid,endTime%2ein%5B0%5D%2eoffset%2erules%2efixedOffset,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitionRules%5B0%5D%2edayOfMonthIndicator,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitionRules%5B0%5D%2edayOfWeek,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitionRules%5B0%5D%2elocalTime%2ehour,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitionRules%5B0%5D%2elocalTime%2eminute,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitionRules%5B0%5D%2elocalTime%2enano,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitionRules%5B0%5D%2elocalTime%2esecond,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitionRules%5B0%5D%2emidnightEndOfDay,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitionRules%5B0%5D%2emonth,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitionRules%5B0%5D%2etimeDefinition,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2edateTimeAfter,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2edateTimeBefore,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2eduration%2enano,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2eduration%2enegative,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2eduration%2eseconds,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2eduration%2eunits%5B0%5D%2edateBased,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2eduration%2eunits%5B0%5D%2edurationEstimated,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2eduration%2eunits%5B0%5D%2etimeBased,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2eduration%2ezero,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2egap,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2einstant,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2eoverlap,endTime%2ein%5B0%5D%2eoffset%2etotalSeconds,endTime%2ein%5B0%5D%2esecond,endTime%2ein%5B0%5D%2eyear,endTime%2ein%5B0%5D%2ezone%2eid,endTime%2ein%5B0%5D%2ezone%2erules%2efixedOffset,endTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2edayOfMonthIndicator,endTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2edayOfWeek,endTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2elocalTime%2ehour,endTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2elocalTime%2eminute,endTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2elocalTime%2enano,endTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2elocalTime%2esecond,endTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2emidnightEndOfDay,endTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2emonth,endTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2eoffsetAfter%2eid,endTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2eoffsetAfter%2etotalSeconds,endTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2eoffsetBefore%2eid,endTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2eoffsetBefore%2etotalSeconds,endTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2estandardOffset%2eid,endTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2estandardOffset%2etotalSeconds,endTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2etimeDefinition,endTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2edateTimeAfter,endTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2edateTimeBefore,endTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eduration%2enano,endTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eduration%2enegative,endTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eduration%2eseconds,endTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eduration%2eunits%5B0%5D%2edateBased,endTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eduration%2eunits%5B0%5D%2edurationEstimated,endTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eduration%2eunits%5B0%5D%2etimeBased,endTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eduration%2ezero,endTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2egap,endTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2einstant,endTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eoffsetAfter%2eid,endTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eoffsetAfter%2etotalSeconds,endTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eoffsetBefore%2eid,endTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eoffsetBefore%2etotalSeconds,endTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eoverlap,endTime%2elessOrEqualThan,endTime%2elessThan,endTime%2especified,eventType%2econtains,eventType%2eequals,eventType%2ein*,eventType%2especified,id%2eequals,id%2egreaterOrEqualThan,id%2egreaterThan,id%2ein*,id%2elessOrEqualThan,id%2elessThan,id%2especified,requestMethod%2econtains,requestMethod%2eequals,requestMethod%2ein*,requestMethod%2especified,requestUrl%2econtains,requestUrl%2eequals,requestUrl%2ein*,requestUrl%2especified,responseStatus%2econtains,responseStatus%2eequals,responseStatus%2ein*,responseStatus%2especified,startTime%2eequals,startTime%2egreaterOrEqualThan,startTime%2egreaterThan,startTime%2ein%5B0%5D%2edayOfMonth,startTime%2ein%5B0%5D%2edayOfWeek,startTime%2ein%5B0%5D%2edayOfYear,startTime%2ein%5B0%5D%2ehour,startTime%2ein%5B0%5D%2eminute,startTime%2ein%5B0%5D%2emonth,startTime%2ein%5B0%5D%2emonthValue,startTime%2ein%5B0%5D%2enano,startTime%2ein%5B0%5D%2eoffset%2eid,startTime%2ein%5B0%5D%2eoffset%2erules%2efixedOffset,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitionRules%5B0%5D%2edayOfMonthIndicator,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitionRules%5B0%5D%2edayOfWeek,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitionRules%5B0%5D%2elocalTime%2ehour,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitionRules%5B0%5D%2elocalTime%2eminute,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitionRules%5B0%5D%2elocalTime%2enano,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitionRules%5B0%5D%2elocalTime%2esecond,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitionRules%5B0%5D%2emidnightEndOfDay,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitionRules%5B0%5D%2emonth,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitionRules%5B0%5D%2etimeDefinition,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2edateTimeAfter,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2edateTimeBefore,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2eduration%2enano,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2eduration%2enegative,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2eduration%2eseconds,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2eduration%2eunits%5B0%5D%2edateBased,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2eduration%2eunits%5B0%5D%2edurationEstimated,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2eduration%2eunits%5B0%5D%2etimeBased,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2eduration%2ezero,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2egap,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2einstant,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2eoverlap,startTime%2ein%5B0%5D%2eoffset%2etotalSeconds,startTime%2ein%5B0%5D%2esecond,startTime%2ein%5B0%5D%2eyear,startTime%2ein%5B0%5D%2ezone%2eid,startTime%2ein%5B0%5D%2ezone%2erules%2efixedOffset,startTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2edayOfMonthIndicator,startTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2edayOfWeek,startTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2elocalTime%2ehour,startTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2elocalTime%2eminute,startTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2elocalTime%2enano,startTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2elocalTime%2esecond,startTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2emidnightEndOfDay,startTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2emonth,startTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2eoffsetAfter%2eid,startTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2eoffsetAfter%2etotalSeconds,startTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2eoffsetBefore%2eid,startTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2eoffsetBefore%2etotalSeconds,startTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2estandardOffset%2eid,startTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2estandardOffset%2etotalSeconds,startTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2etimeDefinition,startTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2edateTimeAfter,startTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2edateTimeBefore,startTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eduration%2enano,startTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eduration%2enegative,startTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eduration%2eseconds,startTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eduration%2eunits%5B0%5D%2edateBased,startTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eduration%2eunits%5B0%5D%2edurationEstimated,startTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eduration%2eunits%5B0%5D%2etimeBased,startTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eduration%2ezero,startTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2egap,startTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2einstant,startTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eoffsetAfter%2eid,startTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eoffsetAfter%2etotalSeconds,startTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eoffsetBefore%2eid,startTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eoffsetBefore%2etotalSeconds,startTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eoverlap,startTime%2elessOrEqualThan,startTime%2elessThan,startTime%2especified}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "browserVersion.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "browserVersion.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "browserVersion.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "browserVersion.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "channelEventId.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "channelEventId.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "channelEventId.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "channelEventId.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "channelName.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "channelName.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "channelName.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "channelName.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "currentRoute.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "currentRoute.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "currentRoute.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "currentRoute.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "data.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "data.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "data.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "data.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.greaterOrEqualThan" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.greaterThan" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].dayOfMonth" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].dayOfWeek" + }, + "value": { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "FRIDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MONDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SATURDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SUNDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "THURSDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "TUESDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "WEDNESDAY" + } + ] + } + } + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].dayOfYear" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].hour" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].minute" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].month" + }, + "value": { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "APRIL" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "AUGUST" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "DECEMBER" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "FEBRUARY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "JANUARY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "JULY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "JUNE" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MARCH" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "NOVEMBER" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "OCTOBER" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SEPTEMBER" + } + ] + } + } + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].monthValue" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].nano" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.id" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.fixedOffset" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitionRules[0].dayOfMonthIndicator" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitionRules[0].dayOfWeek" + }, + "value": { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "FRIDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MONDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SATURDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SUNDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "THURSDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "TUESDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "WEDNESDAY" + } + ] + } + } + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitionRules[0].localTime.hour" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitionRules[0].localTime.minute" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitionRules[0].localTime.nano" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitionRules[0].localTime.second" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitionRules[0].midnightEndOfDay" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitionRules[0].month" + }, + "value": { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "APRIL" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "AUGUST" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "DECEMBER" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "FEBRUARY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "JANUARY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "JULY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "JUNE" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MARCH" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "NOVEMBER" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "OCTOBER" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SEPTEMBER" + } + ] + } + } + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitionRules[0].timeDefinition" + }, + "value": { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "STANDARD" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "UTC" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "WALL" + } + ] + } + } + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitions[0].dateTimeAfter" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitions[0].dateTimeBefore" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitions[0].duration.nano" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitions[0].duration.negative" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitions[0].duration.seconds" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitions[0].duration.units[0].dateBased" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitions[0].duration.units[0].durationEstimated" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitions[0].duration.units[0].timeBased" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitions[0].duration.zero" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitions[0].gap" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitions[0].instant" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitions[0].overlap" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.totalSeconds" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].second" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].year" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.id" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.fixedOffset" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitionRules[0].dayOfMonthIndicator" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitionRules[0].dayOfWeek" + }, + "value": { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "FRIDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MONDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SATURDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SUNDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "THURSDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "TUESDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "WEDNESDAY" + } + ] + } + } + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitionRules[0].localTime.hour" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitionRules[0].localTime.minute" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitionRules[0].localTime.nano" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitionRules[0].localTime.second" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitionRules[0].midnightEndOfDay" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitionRules[0].month" + }, + "value": { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "APRIL" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "AUGUST" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "DECEMBER" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "FEBRUARY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "JANUARY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "JULY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "JUNE" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MARCH" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "NOVEMBER" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "OCTOBER" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SEPTEMBER" + } + ] + } + } + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitionRules[0].offsetAfter.id" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitionRules[0].offsetAfter.totalSeconds" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitionRules[0].offsetBefore.id" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitionRules[0].offsetBefore.totalSeconds" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitionRules[0].standardOffset.id" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitionRules[0].standardOffset.totalSeconds" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitionRules[0].timeDefinition" + }, + "value": { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "STANDARD" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "UTC" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "WALL" + } + ] + } + } + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitions[0].dateTimeAfter" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitions[0].dateTimeBefore" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitions[0].duration.nano" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitions[0].duration.negative" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitions[0].duration.seconds" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitions[0].duration.units[0].dateBased" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitions[0].duration.units[0].durationEstimated" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitions[0].duration.units[0].timeBased" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitions[0].duration.zero" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitions[0].gap" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitions[0].instant" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitions[0].offsetAfter.id" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitions[0].offsetAfter.totalSeconds" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitions[0].offsetBefore.id" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitions[0].offsetBefore.totalSeconds" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitions[0].overlap" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.lessOrEqualThan" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.lessThan" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "eventType.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "eventType.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "eventType.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "eventType.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "requestMethod.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "requestMethod.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "requestMethod.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "requestMethod.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "requestUrl.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "requestUrl.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "requestUrl.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "requestUrl.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "responseStatus.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "responseStatus.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "responseStatus.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "responseStatus.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.greaterOrEqualThan" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.greaterThan" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].dayOfMonth" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].dayOfWeek" + }, + "value": { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "FRIDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MONDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SATURDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SUNDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "THURSDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "TUESDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "WEDNESDAY" + } + ] + } + } + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].dayOfYear" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].hour" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].minute" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].month" + }, + "value": { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "APRIL" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "AUGUST" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "DECEMBER" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "FEBRUARY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "JANUARY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "JULY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "JUNE" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MARCH" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "NOVEMBER" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "OCTOBER" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SEPTEMBER" + } + ] + } + } + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].monthValue" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].nano" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.id" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.fixedOffset" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitionRules[0].dayOfMonthIndicator" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitionRules[0].dayOfWeek" + }, + "value": { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "FRIDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MONDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SATURDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SUNDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "THURSDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "TUESDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "WEDNESDAY" + } + ] + } + } + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitionRules[0].localTime.hour" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitionRules[0].localTime.minute" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitionRules[0].localTime.nano" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitionRules[0].localTime.second" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitionRules[0].midnightEndOfDay" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitionRules[0].month" + }, + "value": { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "APRIL" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "AUGUST" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "DECEMBER" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "FEBRUARY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "JANUARY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "JULY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "JUNE" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MARCH" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "NOVEMBER" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "OCTOBER" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SEPTEMBER" + } + ] + } + } + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitionRules[0].timeDefinition" + }, + "value": { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "STANDARD" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "UTC" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "WALL" + } + ] + } + } + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitions[0].dateTimeAfter" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitions[0].dateTimeBefore" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitions[0].duration.nano" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitions[0].duration.negative" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitions[0].duration.seconds" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitions[0].duration.units[0].dateBased" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitions[0].duration.units[0].durationEstimated" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitions[0].duration.units[0].timeBased" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitions[0].duration.zero" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitions[0].gap" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitions[0].instant" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitions[0].overlap" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.totalSeconds" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].second" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].year" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.id" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.fixedOffset" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitionRules[0].dayOfMonthIndicator" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitionRules[0].dayOfWeek" + }, + "value": { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "FRIDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MONDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SATURDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SUNDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "THURSDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "TUESDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "WEDNESDAY" + } + ] + } + } + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitionRules[0].localTime.hour" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitionRules[0].localTime.minute" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitionRules[0].localTime.nano" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitionRules[0].localTime.second" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitionRules[0].midnightEndOfDay" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitionRules[0].month" + }, + "value": { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "APRIL" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "AUGUST" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "DECEMBER" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "FEBRUARY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "JANUARY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "JULY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "JUNE" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MARCH" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "NOVEMBER" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "OCTOBER" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SEPTEMBER" + } + ] + } + } + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitionRules[0].offsetAfter.id" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitionRules[0].offsetAfter.totalSeconds" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitionRules[0].offsetBefore.id" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitionRules[0].offsetBefore.totalSeconds" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitionRules[0].standardOffset.id" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitionRules[0].standardOffset.totalSeconds" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitionRules[0].timeDefinition" + }, + "value": { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "STANDARD" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "UTC" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "WALL" + } + ] + } + } + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitions[0].dateTimeAfter" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitions[0].dateTimeBefore" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitions[0].duration.nano" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitions[0].duration.negative" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitions[0].duration.seconds" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitions[0].duration.units[0].dateBased" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitions[0].duration.units[0].durationEstimated" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitions[0].duration.units[0].timeBased" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitions[0].duration.zero" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitions[0].gap" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitions[0].instant" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitions[0].offsetAfter.id" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitions[0].offsetAfter.totalSeconds" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitions[0].offsetBefore.id" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitions[0].offsetBefore.totalSeconds" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitions[0].overlap" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.lessOrEqualThan" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.lessThan" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.specified" + }, + "value": { + "element": "boolean" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"format\":\"int64\",\"type\":\"integer\"}" + }, + { + "element": "dataStructure", + "content": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'int64'" + } + } + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/logging-browser-events/{id}" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getLoggingBrowserEvent" + }, + "id": { + "element": "string", + "content": "getLoggingBrowserEventUsingGET" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "id" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"LoggingBrowserEventDTO\",\"description\":\"Browser eventlerini loglamak icin kullanilmaktadir. Uygulamamiz browserdan calistiginda, sayfa gecislerini-url degisimlerini ve servis cagrimlarini loglamak icin kullaniyoruz. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"browserVersion\":{\"description\":\"browser bilgisi\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"channelEventId\":{\"description\":\"Channel EventID, UI event id dir. servis cagrimi yapan uygulamanin kendine verdigi isim\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"channelName\":{\"description\":\"Log kanal Bilgisi. Uygulama, web, desktop, mobil\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"currentRoute\":{\"description\":\"rest api url bilgisi, parametreler haric\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"data\":{\"description\":\"geri kalan hersey.\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"endTime\":{\"format\":\"date-time\",\"description\":\"Servis response zamani\",\"type\":\"string\"},\"eventType\":{\"description\":\"event type\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"requestMethod\":{\"description\":\"Request Methodu\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"requestUrl\":{\"description\":\"rest api url bilgisi, parametreler haric\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"responseStatus\":{\"description\":\"response status\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"startTime\":{\"format\":\"date-time\",\"description\":\"Servis tetiklenme zamani\",\"type\":\"string\"},\"userName\":{\"description\":\"Kullanici Adi bilgisidir.\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/LoggingBrowserEventDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "deleteLoggingBrowserEvent" + }, + "id": { + "element": "string", + "content": "deleteLoggingBrowserEventUsingDELETE" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "id" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "204" + } + }, + "content": [ + { + "element": "copy", + "content": "No Content" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/public/logging-browser-events/browser/config" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getLoggingConfig" + }, + "id": { + "element": "string", + "content": "getLoggingConfigUsingGET_1" + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/LoggingBrowserConfigDTO\"}],\"definitions\":{\"LoggingBrowserConfigDTO\":{\"title\":\"LoggingBrowserConfigDTO\",\"type\":\"object\",\"properties\":{\"enabled\":{\"type\":\"boolean\"},\"loggingTypes\":{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/LoggingBrowserEventTypeDTO\"}}}},\"LoggingBrowserEventTypeDTO\":{\"title\":\"LoggingBrowserEventTypeDTO\",\"type\":\"object\",\"properties\":{\"typeName\":{\"type\":\"string\"},\"value\":{\"type\":\"boolean\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/LoggingBrowserConfigDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/public/logging-browser-events/browser/log" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "createLoggingBrowserEvents" + }, + "id": { + "element": "string", + "content": "createLoggingBrowserEventsUsingPUT_1" + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "[\n {\n \"browserVersion\": \"Excepteur do aliqua incididunt aute\",\n \"channelEventId\": \"ut ex proident\",\n \"channelName\": \"ex ea tempor\",\n \"currentRoute\": \"nostrud qui labore et exercitation\",\n \"data\": \"mollit sint nulla quis in\",\n \"endTime\": \"1962-03-07T13:59:30.962Z\",\n \"eventType\": \"Duis velit ipsum sit nisi\",\n \"id\": 71354511,\n \"requestMethod\": \"sunt enim do dolore qu\",\n \"requestUrl\": \"ad id ex\",\n \"responseStatus\": \"Excepteur eiusmod consequat minim ea\",\n \"startTime\": \"1969-09-02T12:00:23.263Z\",\n \"userName\": \"eiusmod voluptate eu dolore ut\"\n }\n]" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/LoggingBrowserEventDTO\"},\"definitions\":{\"LoggingBrowserEventDTO\":{\"title\":\"LoggingBrowserEventDTO\",\"description\":\"Browser eventlerini loglamak icin kullanilmaktadir. Uygulamamiz browserdan calistiginda, sayfa gecislerini-url degisimlerini ve servis cagrimlarini loglamak icin kullaniyoruz. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"browserVersion\":{\"description\":\"browser bilgisi\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"channelEventId\":{\"description\":\"Channel EventID, UI event id dir. servis cagrimi yapan uygulamanin kendine verdigi isim\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"channelName\":{\"description\":\"Log kanal Bilgisi. Uygulama, web, desktop, mobil\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"currentRoute\":{\"description\":\"rest api url bilgisi, parametreler haric\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"data\":{\"description\":\"geri kalan hersey.\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"endTime\":{\"format\":\"date-time\",\"description\":\"Servis response zamani\",\"type\":\"string\"},\"eventType\":{\"description\":\"event type\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"requestMethod\":{\"description\":\"Request Methodu\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"requestUrl\":{\"description\":\"rest api url bilgisi, parametreler haric\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"responseStatus\":{\"description\":\"response status\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"startTime\":{\"format\":\"date-time\",\"description\":\"Servis tetiklenme zamani\",\"type\":\"string\"},\"userName\":{\"description\":\"Kullanici Adi bilgisidir.\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/LoggingBrowserEventDTO" + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "[\n {\n \"browserVersion\": \"anim do occaecat consectetur\",\n \"channelEventId\": \"commodo aliqua non\",\n \"channelName\": \"labore culpa pariatur\",\n \"currentRoute\": \"ad labore nulla in\",\n \"data\": \"quis est nostrud\",\n \"endTime\": \"2006-02-15T12:08:44.809Z\",\n \"eventType\": \"in sunt magna et eiusmod\",\n \"id\": -4715736,\n \"requestMethod\": \"amet laboris ut\",\n \"requestUrl\": \"deserunt velit aliqua reprehenderit sunt\",\n \"responseStatus\": \"laboris commodo adipisicing\",\n \"startTime\": \"2006-09-26T20:35:36.410Z\",\n \"userName\": \"velit nulla enim aliqua\"\n }\n]" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/LoggingBrowserEventDTO\"},\"definitions\":{\"LoggingBrowserEventDTO\":{\"title\":\"LoggingBrowserEventDTO\",\"description\":\"Browser eventlerini loglamak icin kullanilmaktadir. Uygulamamiz browserdan calistiginda, sayfa gecislerini-url degisimlerini ve servis cagrimlarini loglamak icin kullaniyoruz. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"browserVersion\":{\"description\":\"browser bilgisi\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"channelEventId\":{\"description\":\"Channel EventID, UI event id dir. servis cagrimi yapan uygulamanin kendine verdigi isim\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"channelName\":{\"description\":\"Log kanal Bilgisi. Uygulama, web, desktop, mobil\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"currentRoute\":{\"description\":\"rest api url bilgisi, parametreler haric\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"data\":{\"description\":\"geri kalan hersey.\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"endTime\":{\"format\":\"date-time\",\"description\":\"Servis response zamani\",\"type\":\"string\"},\"eventType\":{\"description\":\"event type\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"requestMethod\":{\"description\":\"Request Methodu\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"requestUrl\":{\"description\":\"rest api url bilgisi, parametreler haric\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"responseStatus\":{\"description\":\"response status\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"startTime\":{\"format\":\"date-time\",\"description\":\"Servis tetiklenme zamani\",\"type\":\"string\"},\"userName\":{\"description\":\"Kullanici Adi bilgisidir.\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/LoggingBrowserEventDTO" + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "[\n {\n \"browserVersion\": \"dolore nulla ut elit laborum\",\n \"channelEventId\": \"do in\",\n \"channelName\": \"non velit\",\n \"currentRoute\": \"aliquip amet\",\n \"data\": \"qui occaecat in\",\n \"endTime\": \"1957-09-17T11:51:29.340Z\",\n \"eventType\": \"elit ipsum\",\n \"id\": 46419969,\n \"requestMethod\": \"laborum id ad\",\n \"requestUrl\": \"aliqua proident aute eu\",\n \"responseStatus\": \"anim nisi do\",\n \"startTime\": \"1983-05-26T02:35:19.274Z\",\n \"userName\": \"ullamco irure ad tempor\"\n }\n]" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/LoggingBrowserEventDTO\"},\"definitions\":{\"LoggingBrowserEventDTO\":{\"title\":\"LoggingBrowserEventDTO\",\"description\":\"Browser eventlerini loglamak icin kullanilmaktadir. Uygulamamiz browserdan calistiginda, sayfa gecislerini-url degisimlerini ve servis cagrimlarini loglamak icin kullaniyoruz. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"browserVersion\":{\"description\":\"browser bilgisi\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"channelEventId\":{\"description\":\"Channel EventID, UI event id dir. servis cagrimi yapan uygulamanin kendine verdigi isim\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"channelName\":{\"description\":\"Log kanal Bilgisi. Uygulama, web, desktop, mobil\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"currentRoute\":{\"description\":\"rest api url bilgisi, parametreler haric\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"data\":{\"description\":\"geri kalan hersey.\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"endTime\":{\"format\":\"date-time\",\"description\":\"Servis response zamani\",\"type\":\"string\"},\"eventType\":{\"description\":\"event type\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"requestMethod\":{\"description\":\"Request Methodu\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"requestUrl\":{\"description\":\"rest api url bilgisi, parametreler haric\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"responseStatus\":{\"description\":\"response status\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"startTime\":{\"format\":\"date-time\",\"description\":\"Servis tetiklenme zamani\",\"type\":\"string\"},\"userName\":{\"description\":\"Kullanici Adi bilgisidir.\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/LoggingBrowserEventDTO" + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "[\n {\n \"browserVersion\": \"reprehenderit amet ut\",\n \"channelEventId\": \"elit\",\n \"channelName\": \"culpa fugiat do\",\n \"currentRoute\": \"in\",\n \"data\": \"nulla culpa laborum id ullamco\",\n \"endTime\": \"1991-06-03T18:57:49.908Z\",\n \"eventType\": \"nostrud amet Lorem\",\n \"id\": -90235032,\n \"requestMethod\": \"Ut ip\",\n \"requestUrl\": \"consectetur nisi sit\",\n \"responseStatus\": \"quis\",\n \"startTime\": \"1962-04-15T03:35:49.097Z\",\n \"userName\": \"voluptate laborum\"\n }\n]" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/LoggingBrowserEventDTO\"},\"definitions\":{\"LoggingBrowserEventDTO\":{\"title\":\"LoggingBrowserEventDTO\",\"description\":\"Browser eventlerini loglamak icin kullanilmaktadir. Uygulamamiz browserdan calistiginda, sayfa gecislerini-url degisimlerini ve servis cagrimlarini loglamak icin kullaniyoruz. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"browserVersion\":{\"description\":\"browser bilgisi\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"channelEventId\":{\"description\":\"Channel EventID, UI event id dir. servis cagrimi yapan uygulamanin kendine verdigi isim\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"channelName\":{\"description\":\"Log kanal Bilgisi. Uygulama, web, desktop, mobil\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"currentRoute\":{\"description\":\"rest api url bilgisi, parametreler haric\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"data\":{\"description\":\"geri kalan hersey.\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"endTime\":{\"format\":\"date-time\",\"description\":\"Servis response zamani\",\"type\":\"string\"},\"eventType\":{\"description\":\"event type\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"requestMethod\":{\"description\":\"Request Methodu\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"requestUrl\":{\"description\":\"rest api url bilgisi, parametreler haric\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"responseStatus\":{\"description\":\"response status\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"startTime\":{\"format\":\"date-time\",\"description\":\"Servis tetiklenme zamani\",\"type\":\"string\"},\"userName\":{\"description\":\"Kullanici Adi bilgisidir.\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/LoggingBrowserEventDTO" + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "[\n {\n \"browserVersion\": \"aliqua incididunt\",\n \"channelEventId\": \"et in est qui\",\n \"channelName\": \"nostrud velit\",\n \"currentRoute\": \"in labore consectetur\",\n \"data\": \"nostrud Duis ea magna\",\n \"endTime\": \"1993-05-18T09:00:53.871Z\",\n \"eventType\": \"et\",\n \"id\": -20192783,\n \"requestMethod\": \"in cupidatat\",\n \"requestUrl\": \"magna ullamco occaecat dolor\",\n \"responseStatus\": \"ut est id voluptate\",\n \"startTime\": \"1953-09-11T08:04:50.882Z\",\n \"userName\": \"in adipisicing ex reprehenderit \"\n }\n]" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/LoggingBrowserEventDTO\"},\"definitions\":{\"LoggingBrowserEventDTO\":{\"title\":\"LoggingBrowserEventDTO\",\"description\":\"Browser eventlerini loglamak icin kullanilmaktadir. Uygulamamiz browserdan calistiginda, sayfa gecislerini-url degisimlerini ve servis cagrimlarini loglamak icin kullaniyoruz. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"browserVersion\":{\"description\":\"browser bilgisi\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"channelEventId\":{\"description\":\"Channel EventID, UI event id dir. servis cagrimi yapan uygulamanin kendine verdigi isim\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"channelName\":{\"description\":\"Log kanal Bilgisi. Uygulama, web, desktop, mobil\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"currentRoute\":{\"description\":\"rest api url bilgisi, parametreler haric\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"data\":{\"description\":\"geri kalan hersey.\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"endTime\":{\"format\":\"date-time\",\"description\":\"Servis response zamani\",\"type\":\"string\"},\"eventType\":{\"description\":\"event type\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"requestMethod\":{\"description\":\"Request Methodu\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"requestUrl\":{\"description\":\"rest api url bilgisi, parametreler haric\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"responseStatus\":{\"description\":\"response status\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"startTime\":{\"format\":\"date-time\",\"description\":\"Servis tetiklenme zamani\",\"type\":\"string\"},\"userName\":{\"description\":\"Kullanici Adi bilgisidir.\",\"maxLength\":50,\"minLength\":0,\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/LoggingBrowserEventDTO" + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "category", + "meta": { + "title": { + "element": "string", + "content": "logging-business-resource" + }, + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "resourceGroup" + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Logging Business Resource" + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/logging-businesses" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getAllLoggingBusinesses" + }, + "id": { + "element": "string", + "content": "getAllLoggingBusinessesUsingGET" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/logging-businesses{?apiUrl%2econtains,apiUrl%2eequals,apiUrl%2ein*,apiUrl%2especified,channelEventId%2econtains,channelEventId%2eequals,channelEventId%2ein*,channelEventId%2especified,channelName%2econtains,channelName%2eequals,channelName%2ein*,channelName%2especified,className%2econtains,className%2eequals,className%2ein*,className%2especified,endTime%2eequals,endTime%2egreaterOrEqualThan,endTime%2egreaterThan,endTime%2ein%5B0%5D%2edayOfMonth,endTime%2ein%5B0%5D%2edayOfWeek,endTime%2ein%5B0%5D%2edayOfYear,endTime%2ein%5B0%5D%2ehour,endTime%2ein%5B0%5D%2eminute,endTime%2ein%5B0%5D%2emonth,endTime%2ein%5B0%5D%2emonthValue,endTime%2ein%5B0%5D%2enano,endTime%2ein%5B0%5D%2eoffset%2eid,endTime%2ein%5B0%5D%2eoffset%2erules%2efixedOffset,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitionRules%5B0%5D%2edayOfMonthIndicator,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitionRules%5B0%5D%2edayOfWeek,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitionRules%5B0%5D%2elocalTime%2ehour,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitionRules%5B0%5D%2elocalTime%2eminute,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitionRules%5B0%5D%2elocalTime%2enano,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitionRules%5B0%5D%2elocalTime%2esecond,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitionRules%5B0%5D%2emidnightEndOfDay,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitionRules%5B0%5D%2emonth,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitionRules%5B0%5D%2etimeDefinition,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2edateTimeAfter,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2edateTimeBefore,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2eduration%2enano,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2eduration%2enegative,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2eduration%2eseconds,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2eduration%2eunits%5B0%5D%2edateBased,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2eduration%2eunits%5B0%5D%2edurationEstimated,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2eduration%2eunits%5B0%5D%2etimeBased,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2eduration%2ezero,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2egap,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2einstant,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2eoverlap,endTime%2ein%5B0%5D%2eoffset%2etotalSeconds,endTime%2ein%5B0%5D%2esecond,endTime%2ein%5B0%5D%2eyear,endTime%2ein%5B0%5D%2ezone%2eid,endTime%2ein%5B0%5D%2ezone%2erules%2efixedOffset,endTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2edayOfMonthIndicator,endTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2edayOfWeek,endTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2elocalTime%2ehour,endTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2elocalTime%2eminute,endTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2elocalTime%2enano,endTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2elocalTime%2esecond,endTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2emidnightEndOfDay,endTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2emonth,endTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2eoffsetAfter%2eid,endTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2eoffsetAfter%2etotalSeconds,endTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2eoffsetBefore%2eid,endTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2eoffsetBefore%2etotalSeconds,endTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2estandardOffset%2eid,endTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2estandardOffset%2etotalSeconds,endTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2etimeDefinition,endTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2edateTimeAfter,endTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2edateTimeBefore,endTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eduration%2enano,endTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eduration%2enegative,endTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eduration%2eseconds,endTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eduration%2eunits%5B0%5D%2edateBased,endTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eduration%2eunits%5B0%5D%2edurationEstimated,endTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eduration%2eunits%5B0%5D%2etimeBased,endTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eduration%2ezero,endTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2egap,endTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2einstant,endTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eoffsetAfter%2eid,endTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eoffsetAfter%2etotalSeconds,endTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eoffsetBefore%2eid,endTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eoffsetBefore%2etotalSeconds,endTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eoverlap,endTime%2elessOrEqualThan,endTime%2elessThan,endTime%2especified,exceptionCause%2econtains,exceptionCause%2eequals,exceptionCause%2ein*,exceptionCause%2especified,exceptionMessage%2econtains,exceptionMessage%2eequals,exceptionMessage%2ein*,exceptionMessage%2especified,exceptionStackTrace%2econtains,exceptionStackTrace%2eequals,exceptionStackTrace%2ein*,exceptionStackTrace%2especified,exceptionType%2econtains,exceptionType%2eequals,exceptionType%2ein*,exceptionType%2especified,exitCode%2eequals,exitCode%2ein*,exitCode%2especified,id%2eequals,id%2egreaterOrEqualThan,id%2egreaterThan,id%2ein*,id%2elessOrEqualThan,id%2elessThan,id%2especified,jsonRequestParam%2econtains,jsonRequestParam%2eequals,jsonRequestParam%2ein*,jsonRequestParam%2especified,jsonResponseParam%2econtains,jsonResponseParam%2eequals,jsonResponseParam%2ein*,jsonResponseParam%2especified,methodName%2econtains,methodName%2eequals,methodName%2ein*,methodName%2especified,packName%2econtains,packName%2eequals,packName%2ein*,packName%2especified,page,requestType%2econtains,requestType%2eequals,requestType%2ein*,requestType%2especified,size,sort*,startTime%2eequals,startTime%2egreaterOrEqualThan,startTime%2egreaterThan,startTime%2ein%5B0%5D%2edayOfMonth,startTime%2ein%5B0%5D%2edayOfWeek,startTime%2ein%5B0%5D%2edayOfYear,startTime%2ein%5B0%5D%2ehour,startTime%2ein%5B0%5D%2eminute,startTime%2ein%5B0%5D%2emonth,startTime%2ein%5B0%5D%2emonthValue,startTime%2ein%5B0%5D%2enano,startTime%2ein%5B0%5D%2eoffset%2eid,startTime%2ein%5B0%5D%2eoffset%2erules%2efixedOffset,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitionRules%5B0%5D%2edayOfMonthIndicator,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitionRules%5B0%5D%2edayOfWeek,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitionRules%5B0%5D%2elocalTime%2ehour,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitionRules%5B0%5D%2elocalTime%2eminute,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitionRules%5B0%5D%2elocalTime%2enano,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitionRules%5B0%5D%2elocalTime%2esecond,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitionRules%5B0%5D%2emidnightEndOfDay,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitionRules%5B0%5D%2emonth,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitionRules%5B0%5D%2etimeDefinition,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2edateTimeAfter,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2edateTimeBefore,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2eduration%2enano,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2eduration%2enegative,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2eduration%2eseconds,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2eduration%2eunits%5B0%5D%2edateBased,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2eduration%2eunits%5B0%5D%2edurationEstimated,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2eduration%2eunits%5B0%5D%2etimeBased,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2eduration%2ezero,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2egap,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2einstant,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2eoverlap,startTime%2ein%5B0%5D%2eoffset%2etotalSeconds,startTime%2ein%5B0%5D%2esecond,startTime%2ein%5B0%5D%2eyear,startTime%2ein%5B0%5D%2ezone%2eid,startTime%2ein%5B0%5D%2ezone%2erules%2efixedOffset,startTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2edayOfMonthIndicator,startTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2edayOfWeek,startTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2elocalTime%2ehour,startTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2elocalTime%2eminute,startTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2elocalTime%2enano,startTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2elocalTime%2esecond,startTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2emidnightEndOfDay,startTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2emonth,startTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2eoffsetAfter%2eid,startTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2eoffsetAfter%2etotalSeconds,startTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2eoffsetBefore%2eid,startTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2eoffsetBefore%2etotalSeconds,startTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2estandardOffset%2eid,startTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2estandardOffset%2etotalSeconds,startTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2etimeDefinition,startTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2edateTimeAfter,startTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2edateTimeBefore,startTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eduration%2enano,startTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eduration%2enegative,startTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eduration%2eseconds,startTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eduration%2eunits%5B0%5D%2edateBased,startTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eduration%2eunits%5B0%5D%2edurationEstimated,startTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eduration%2eunits%5B0%5D%2etimeBased,startTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eduration%2ezero,startTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2egap,startTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2einstant,startTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eoffsetAfter%2eid,startTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eoffsetAfter%2etotalSeconds,startTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eoffsetBefore%2eid,startTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eoffsetBefore%2etotalSeconds,startTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eoverlap,startTime%2elessOrEqualThan,startTime%2elessThan,startTime%2especified,userName%2econtains,userName%2eequals,userName%2ein*,userName%2especified}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "apiUrl.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "apiUrl.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "apiUrl.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "apiUrl.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "channelEventId.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "channelEventId.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "channelEventId.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "channelEventId.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "channelName.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "channelName.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "channelName.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "channelName.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "className.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "className.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "className.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "className.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.greaterOrEqualThan" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.greaterThan" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].dayOfMonth" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].dayOfWeek" + }, + "value": { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "FRIDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MONDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SATURDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SUNDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "THURSDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "TUESDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "WEDNESDAY" + } + ] + } + } + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].dayOfYear" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].hour" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].minute" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].month" + }, + "value": { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "APRIL" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "AUGUST" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "DECEMBER" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "FEBRUARY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "JANUARY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "JULY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "JUNE" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MARCH" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "NOVEMBER" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "OCTOBER" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SEPTEMBER" + } + ] + } + } + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].monthValue" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].nano" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.id" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.fixedOffset" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitionRules[0].dayOfMonthIndicator" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitionRules[0].dayOfWeek" + }, + "value": { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "FRIDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MONDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SATURDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SUNDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "THURSDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "TUESDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "WEDNESDAY" + } + ] + } + } + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitionRules[0].localTime.hour" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitionRules[0].localTime.minute" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitionRules[0].localTime.nano" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitionRules[0].localTime.second" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitionRules[0].midnightEndOfDay" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitionRules[0].month" + }, + "value": { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "APRIL" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "AUGUST" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "DECEMBER" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "FEBRUARY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "JANUARY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "JULY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "JUNE" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MARCH" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "NOVEMBER" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "OCTOBER" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SEPTEMBER" + } + ] + } + } + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitionRules[0].timeDefinition" + }, + "value": { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "STANDARD" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "UTC" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "WALL" + } + ] + } + } + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitions[0].dateTimeAfter" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitions[0].dateTimeBefore" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitions[0].duration.nano" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitions[0].duration.negative" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitions[0].duration.seconds" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitions[0].duration.units[0].dateBased" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitions[0].duration.units[0].durationEstimated" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitions[0].duration.units[0].timeBased" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitions[0].duration.zero" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitions[0].gap" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitions[0].instant" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitions[0].overlap" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.totalSeconds" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].second" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].year" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.id" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.fixedOffset" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitionRules[0].dayOfMonthIndicator" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitionRules[0].dayOfWeek" + }, + "value": { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "FRIDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MONDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SATURDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SUNDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "THURSDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "TUESDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "WEDNESDAY" + } + ] + } + } + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitionRules[0].localTime.hour" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitionRules[0].localTime.minute" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitionRules[0].localTime.nano" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitionRules[0].localTime.second" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitionRules[0].midnightEndOfDay" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitionRules[0].month" + }, + "value": { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "APRIL" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "AUGUST" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "DECEMBER" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "FEBRUARY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "JANUARY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "JULY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "JUNE" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MARCH" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "NOVEMBER" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "OCTOBER" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SEPTEMBER" + } + ] + } + } + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitionRules[0].offsetAfter.id" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitionRules[0].offsetAfter.totalSeconds" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitionRules[0].offsetBefore.id" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitionRules[0].offsetBefore.totalSeconds" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitionRules[0].standardOffset.id" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitionRules[0].standardOffset.totalSeconds" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitionRules[0].timeDefinition" + }, + "value": { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "STANDARD" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "UTC" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "WALL" + } + ] + } + } + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitions[0].dateTimeAfter" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitions[0].dateTimeBefore" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitions[0].duration.nano" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitions[0].duration.negative" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitions[0].duration.seconds" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitions[0].duration.units[0].dateBased" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitions[0].duration.units[0].durationEstimated" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitions[0].duration.units[0].timeBased" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitions[0].duration.zero" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitions[0].gap" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitions[0].instant" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitions[0].offsetAfter.id" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitions[0].offsetAfter.totalSeconds" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitions[0].offsetBefore.id" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitions[0].offsetBefore.totalSeconds" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitions[0].overlap" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.lessOrEqualThan" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.lessThan" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "exceptionCause.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "exceptionCause.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "exceptionCause.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "exceptionCause.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "exceptionMessage.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "exceptionMessage.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "exceptionMessage.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "exceptionMessage.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "exceptionStackTrace.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "exceptionStackTrace.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "exceptionStackTrace.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "exceptionStackTrace.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "exceptionType.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "exceptionType.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "exceptionType.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "exceptionType.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "exitCode.equals" + }, + "value": { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "BUSINESS_EXCEPTION" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "CLIENT_ERROR" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "INFORMATIONAL" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "REDIRECTION" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SERVER_ERROR" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SUCCESS" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SYSTEM_EXCEPTION" + } + ] + } + } + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "exitCode.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "BUSINESS_EXCEPTION" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "CLIENT_ERROR" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "INFORMATIONAL" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "REDIRECTION" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SERVER_ERROR" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SUCCESS" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SYSTEM_EXCEPTION" + } + ] + } + } + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "exitCode.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "jsonRequestParam.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "jsonRequestParam.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "jsonRequestParam.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "jsonRequestParam.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "jsonResponseParam.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "jsonResponseParam.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "jsonResponseParam.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "jsonResponseParam.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "methodName.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "methodName.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "methodName.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "methodName.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "packName.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "packName.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "packName.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "packName.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Page number of the requested page" + } + }, + "content": { + "key": { + "element": "string", + "content": "page" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "requestType.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "requestType.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "requestType.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "requestType.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Size of a page" + } + }, + "content": { + "key": { + "element": "string", + "content": "size" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported." + } + }, + "content": { + "key": { + "element": "string", + "content": "sort" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.greaterOrEqualThan" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.greaterThan" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].dayOfMonth" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].dayOfWeek" + }, + "value": { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "FRIDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MONDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SATURDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SUNDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "THURSDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "TUESDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "WEDNESDAY" + } + ] + } + } + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].dayOfYear" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].hour" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].minute" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].month" + }, + "value": { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "APRIL" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "AUGUST" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "DECEMBER" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "FEBRUARY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "JANUARY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "JULY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "JUNE" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MARCH" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "NOVEMBER" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "OCTOBER" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SEPTEMBER" + } + ] + } + } + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].monthValue" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].nano" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.id" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.fixedOffset" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitionRules[0].dayOfMonthIndicator" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitionRules[0].dayOfWeek" + }, + "value": { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "FRIDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MONDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SATURDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SUNDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "THURSDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "TUESDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "WEDNESDAY" + } + ] + } + } + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitionRules[0].localTime.hour" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitionRules[0].localTime.minute" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitionRules[0].localTime.nano" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitionRules[0].localTime.second" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitionRules[0].midnightEndOfDay" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitionRules[0].month" + }, + "value": { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "APRIL" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "AUGUST" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "DECEMBER" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "FEBRUARY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "JANUARY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "JULY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "JUNE" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MARCH" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "NOVEMBER" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "OCTOBER" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SEPTEMBER" + } + ] + } + } + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitionRules[0].timeDefinition" + }, + "value": { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "STANDARD" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "UTC" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "WALL" + } + ] + } + } + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitions[0].dateTimeAfter" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitions[0].dateTimeBefore" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitions[0].duration.nano" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitions[0].duration.negative" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitions[0].duration.seconds" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitions[0].duration.units[0].dateBased" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitions[0].duration.units[0].durationEstimated" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitions[0].duration.units[0].timeBased" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitions[0].duration.zero" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitions[0].gap" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitions[0].instant" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitions[0].overlap" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.totalSeconds" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].second" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].year" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.id" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.fixedOffset" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitionRules[0].dayOfMonthIndicator" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitionRules[0].dayOfWeek" + }, + "value": { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "FRIDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MONDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SATURDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SUNDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "THURSDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "TUESDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "WEDNESDAY" + } + ] + } + } + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitionRules[0].localTime.hour" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitionRules[0].localTime.minute" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitionRules[0].localTime.nano" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitionRules[0].localTime.second" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitionRules[0].midnightEndOfDay" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitionRules[0].month" + }, + "value": { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "APRIL" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "AUGUST" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "DECEMBER" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "FEBRUARY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "JANUARY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "JULY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "JUNE" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MARCH" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "NOVEMBER" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "OCTOBER" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SEPTEMBER" + } + ] + } + } + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitionRules[0].offsetAfter.id" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitionRules[0].offsetAfter.totalSeconds" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitionRules[0].offsetBefore.id" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitionRules[0].offsetBefore.totalSeconds" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitionRules[0].standardOffset.id" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitionRules[0].standardOffset.totalSeconds" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitionRules[0].timeDefinition" + }, + "value": { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "STANDARD" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "UTC" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "WALL" + } + ] + } + } + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitions[0].dateTimeAfter" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitions[0].dateTimeBefore" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitions[0].duration.nano" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitions[0].duration.negative" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitions[0].duration.seconds" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitions[0].duration.units[0].dateBased" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitions[0].duration.units[0].durationEstimated" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitions[0].duration.units[0].timeBased" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitions[0].duration.zero" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitions[0].gap" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitions[0].instant" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitions[0].offsetAfter.id" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitions[0].offsetAfter.totalSeconds" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitions[0].offsetBefore.id" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitions[0].offsetBefore.totalSeconds" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitions[0].overlap" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.lessOrEqualThan" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.lessThan" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "userName.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "userName.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "userName.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "userName.specified" + }, + "value": { + "element": "boolean" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/LoggingBusinessDTO\"},\"definitions\":{\"LoggingBusinessDTO\":{\"title\":\"LoggingBusinessDTO\",\"description\":\"Business logic log kayitlari. uygulamamizin business islemlerinde basarili veya basariz durumlari kayit altina alinir. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"apiUrl\":{\"description\":\"rest api url bilgisi, parametreler haric\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"channelEventId\":{\"description\":\"Channel EventID, UI event id dir.\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"channelName\":{\"description\":\"Log kanal Bilgisi. Uygulama, web, desktop, mobil\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"className\":{\"description\":\"Servis class ismidir.\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"endTime\":{\"format\":\"date-time\",\"description\":\"Servis response zamani\",\"type\":\"string\"},\"exceptionCause\":{\"description\":\"Hata mesajinin cause bilgisi. Nedeni.\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"exceptionMessage\":{\"description\":\"Hata Mesaji\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"exceptionStackTrace\":{\"description\":\"Full Hata mesaji stacktrace\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"exceptionType\":{\"description\":\"Hata tipi\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"exitCode\":{\"description\":\"Servis cagriminin sonlanma sekli. SUCCESS, BUSINESS_EXCEPTION, SYSTEM_EXCEPTION\",\"enum\":[\"BUSINESS_EXCEPTION\",\"CLIENT_ERROR\",\"INFORMATIONAL\",\"REDIRECTION\",\"SERVER_ERROR\",\"SUCCESS\",\"SYSTEM_EXCEPTION\"],\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"jsonRequestParam\":{\"description\":\"JSON request parametrelerin degerleri\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"jsonResponseParam\":{\"description\":\"JSON response parametre degerleri\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"methodName\":{\"description\":\"Servis method ismidir.\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"packName\":{\"description\":\"java package full name\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"requestType\":{\"description\":\"Request Type GET, POST, PUT, DELETE\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"startTime\":{\"format\":\"date-time\",\"description\":\"Servis tetiklenme zamani\",\"type\":\"string\"},\"userName\":{\"description\":\"Kullanici Adi bilgisidir.\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/LoggingBusinessDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "updateLoggingBusiness" + }, + "id": { + "element": "string", + "content": "updateLoggingBusinessUsingPUT" + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"apiUrl\": \"ut eu proident\",\n \"channelEventId\": \"eiusmod\",\n \"channelName\": \"proident\",\n \"className\": \"dolore\",\n \"endTime\": \"1972-12-29T20:30:14.857Z\",\n \"exceptionCause\": \"non qui dolor quis ut\",\n \"exceptionMessage\": \"aute incididunt eiusmod\",\n \"exceptionStackTrace\": \"minim elit in et quis\",\n \"exceptionType\": \"laboris Excepteur qui\",\n \"exitCode\": \"INFORMATIONAL\",\n \"id\": 90993433,\n \"jsonRequestParam\": \"irure\",\n \"jsonResponseParam\": \"in\",\n \"methodName\": \"esse\",\n \"packName\": \"dolore sed id nulla\",\n \"requestType\": \"commodo officia nostrud\",\n \"startTime\": \"1991-05-27T05:19:11.900Z\",\n \"userName\": \"officia dolore\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"LoggingBusinessDTO\",\"description\":\"Business logic log kayitlari. uygulamamizin business islemlerinde basarili veya basariz durumlari kayit altina alinir. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"apiUrl\":{\"description\":\"rest api url bilgisi, parametreler haric\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"channelEventId\":{\"description\":\"Channel EventID, UI event id dir.\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"channelName\":{\"description\":\"Log kanal Bilgisi. Uygulama, web, desktop, mobil\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"className\":{\"description\":\"Servis class ismidir.\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"endTime\":{\"format\":\"date-time\",\"description\":\"Servis response zamani\",\"type\":\"string\"},\"exceptionCause\":{\"description\":\"Hata mesajinin cause bilgisi. Nedeni.\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"exceptionMessage\":{\"description\":\"Hata Mesaji\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"exceptionStackTrace\":{\"description\":\"Full Hata mesaji stacktrace\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"exceptionType\":{\"description\":\"Hata tipi\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"exitCode\":{\"description\":\"Servis cagriminin sonlanma sekli. SUCCESS, BUSINESS_EXCEPTION, SYSTEM_EXCEPTION\",\"enum\":[\"BUSINESS_EXCEPTION\",\"CLIENT_ERROR\",\"INFORMATIONAL\",\"REDIRECTION\",\"SERVER_ERROR\",\"SUCCESS\",\"SYSTEM_EXCEPTION\"],\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"jsonRequestParam\":{\"description\":\"JSON request parametrelerin degerleri\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"jsonResponseParam\":{\"description\":\"JSON response parametre degerleri\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"methodName\":{\"description\":\"Servis method ismidir.\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"packName\":{\"description\":\"java package full name\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"requestType\":{\"description\":\"Request Type GET, POST, PUT, DELETE\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"startTime\":{\"format\":\"date-time\",\"description\":\"Servis tetiklenme zamani\",\"type\":\"string\"},\"userName\":{\"description\":\"Kullanici Adi bilgisidir.\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/LoggingBusinessDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"LoggingBusinessDTO\",\"description\":\"Business logic log kayitlari. uygulamamizin business islemlerinde basarili veya basariz durumlari kayit altina alinir. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"apiUrl\":{\"description\":\"rest api url bilgisi, parametreler haric\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"channelEventId\":{\"description\":\"Channel EventID, UI event id dir.\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"channelName\":{\"description\":\"Log kanal Bilgisi. Uygulama, web, desktop, mobil\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"className\":{\"description\":\"Servis class ismidir.\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"endTime\":{\"format\":\"date-time\",\"description\":\"Servis response zamani\",\"type\":\"string\"},\"exceptionCause\":{\"description\":\"Hata mesajinin cause bilgisi. Nedeni.\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"exceptionMessage\":{\"description\":\"Hata Mesaji\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"exceptionStackTrace\":{\"description\":\"Full Hata mesaji stacktrace\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"exceptionType\":{\"description\":\"Hata tipi\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"exitCode\":{\"description\":\"Servis cagriminin sonlanma sekli. SUCCESS, BUSINESS_EXCEPTION, SYSTEM_EXCEPTION\",\"enum\":[\"BUSINESS_EXCEPTION\",\"CLIENT_ERROR\",\"INFORMATIONAL\",\"REDIRECTION\",\"SERVER_ERROR\",\"SUCCESS\",\"SYSTEM_EXCEPTION\"],\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"jsonRequestParam\":{\"description\":\"JSON request parametrelerin degerleri\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"jsonResponseParam\":{\"description\":\"JSON response parametre degerleri\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"methodName\":{\"description\":\"Servis method ismidir.\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"packName\":{\"description\":\"java package full name\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"requestType\":{\"description\":\"Request Type GET, POST, PUT, DELETE\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"startTime\":{\"format\":\"date-time\",\"description\":\"Servis tetiklenme zamani\",\"type\":\"string\"},\"userName\":{\"description\":\"Kullanici Adi bilgisidir.\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/LoggingBusinessDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"apiUrl\": \"laborum in aute anim sunt\",\n \"channelEventId\": \"aute labore est\",\n \"channelName\": \"ea deserunt consequat\",\n \"className\": \"enim in nulla proident\",\n \"endTime\": \"1944-07-14T15:19:49.798Z\",\n \"exceptionCause\": \"ipsum laborum minim aute\",\n \"exceptionMessage\": \"in id qui do proident\",\n \"exceptionStackTrace\": \"officia dolor\",\n \"exceptionType\": \"voluptate amet exercitation nisi anim\",\n \"exitCode\": \"INFORMATIONAL\",\n \"id\": 58184667,\n \"jsonRequestParam\": \"quis sint\",\n \"jsonResponseParam\": \"pariatur\",\n \"methodName\": \"esse\",\n \"packName\": \"irure ipsum nulla Excepteur sed\",\n \"requestType\": \"occaecat elit\",\n \"startTime\": \"1988-10-29T10:55:15.298Z\",\n \"userName\": \"Lorem magna laboris nisi\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"LoggingBusinessDTO\",\"description\":\"Business logic log kayitlari. uygulamamizin business islemlerinde basarili veya basariz durumlari kayit altina alinir. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"apiUrl\":{\"description\":\"rest api url bilgisi, parametreler haric\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"channelEventId\":{\"description\":\"Channel EventID, UI event id dir.\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"channelName\":{\"description\":\"Log kanal Bilgisi. Uygulama, web, desktop, mobil\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"className\":{\"description\":\"Servis class ismidir.\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"endTime\":{\"format\":\"date-time\",\"description\":\"Servis response zamani\",\"type\":\"string\"},\"exceptionCause\":{\"description\":\"Hata mesajinin cause bilgisi. Nedeni.\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"exceptionMessage\":{\"description\":\"Hata Mesaji\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"exceptionStackTrace\":{\"description\":\"Full Hata mesaji stacktrace\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"exceptionType\":{\"description\":\"Hata tipi\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"exitCode\":{\"description\":\"Servis cagriminin sonlanma sekli. SUCCESS, BUSINESS_EXCEPTION, SYSTEM_EXCEPTION\",\"enum\":[\"BUSINESS_EXCEPTION\",\"CLIENT_ERROR\",\"INFORMATIONAL\",\"REDIRECTION\",\"SERVER_ERROR\",\"SUCCESS\",\"SYSTEM_EXCEPTION\"],\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"jsonRequestParam\":{\"description\":\"JSON request parametrelerin degerleri\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"jsonResponseParam\":{\"description\":\"JSON response parametre degerleri\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"methodName\":{\"description\":\"Servis method ismidir.\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"packName\":{\"description\":\"java package full name\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"requestType\":{\"description\":\"Request Type GET, POST, PUT, DELETE\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"startTime\":{\"format\":\"date-time\",\"description\":\"Servis tetiklenme zamani\",\"type\":\"string\"},\"userName\":{\"description\":\"Kullanici Adi bilgisidir.\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/LoggingBusinessDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"apiUrl\": \"ut dolor dolore\",\n \"channelEventId\": \"mollit enim incididunt et exercitation\",\n \"channelName\": \"aute Ut labor\",\n \"className\": \"ipsum\",\n \"endTime\": \"1965-04-23T05:13:35.008Z\",\n \"exceptionCause\": \"magna exercitation qui in\",\n \"exceptionMessage\": \"consectetur d\",\n \"exceptionStackTrace\": \"irure se\",\n \"exceptionType\": \"exercitation voluptate velit\",\n \"exitCode\": \"REDIRECTION\",\n \"id\": -5086382,\n \"jsonRequestParam\": \"cillum id Duis consequat\",\n \"jsonResponseParam\": \"consectetur in aliqua dolor\",\n \"methodName\": \"nisi cupidatat cillum aliqua anim\",\n \"packName\": \"ut dolore eiusmod Excepteur Dui\",\n \"requestType\": \"occaecat ut non laboris\",\n \"startTime\": \"1981-10-14T11:16:21.746Z\",\n \"userName\": \"id officia nisi\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"LoggingBusinessDTO\",\"description\":\"Business logic log kayitlari. uygulamamizin business islemlerinde basarili veya basariz durumlari kayit altina alinir. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"apiUrl\":{\"description\":\"rest api url bilgisi, parametreler haric\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"channelEventId\":{\"description\":\"Channel EventID, UI event id dir.\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"channelName\":{\"description\":\"Log kanal Bilgisi. Uygulama, web, desktop, mobil\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"className\":{\"description\":\"Servis class ismidir.\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"endTime\":{\"format\":\"date-time\",\"description\":\"Servis response zamani\",\"type\":\"string\"},\"exceptionCause\":{\"description\":\"Hata mesajinin cause bilgisi. Nedeni.\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"exceptionMessage\":{\"description\":\"Hata Mesaji\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"exceptionStackTrace\":{\"description\":\"Full Hata mesaji stacktrace\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"exceptionType\":{\"description\":\"Hata tipi\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"exitCode\":{\"description\":\"Servis cagriminin sonlanma sekli. SUCCESS, BUSINESS_EXCEPTION, SYSTEM_EXCEPTION\",\"enum\":[\"BUSINESS_EXCEPTION\",\"CLIENT_ERROR\",\"INFORMATIONAL\",\"REDIRECTION\",\"SERVER_ERROR\",\"SUCCESS\",\"SYSTEM_EXCEPTION\"],\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"jsonRequestParam\":{\"description\":\"JSON request parametrelerin degerleri\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"jsonResponseParam\":{\"description\":\"JSON response parametre degerleri\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"methodName\":{\"description\":\"Servis method ismidir.\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"packName\":{\"description\":\"java package full name\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"requestType\":{\"description\":\"Request Type GET, POST, PUT, DELETE\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"startTime\":{\"format\":\"date-time\",\"description\":\"Servis tetiklenme zamani\",\"type\":\"string\"},\"userName\":{\"description\":\"Kullanici Adi bilgisidir.\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/LoggingBusinessDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"apiUrl\": \"enim ea exercitation\",\n \"channelEventId\": \"laborum esse\",\n \"channelName\": \"id adipisicing culpa ullamco\",\n \"className\": \"ea Lorem occaecat cupidatat\",\n \"endTime\": \"2017-08-20T13:17:56.246Z\",\n \"exceptionCause\": \"proident\",\n \"exceptionMessage\": \"ad amet id\",\n \"exceptionStackTrace\": \"dolore do\",\n \"exceptionType\": \"ipsum cupidatat ut\",\n \"exitCode\": \"CLIENT_ERROR\",\n \"id\": 44201935,\n \"jsonRequestParam\": \"in est occaecat \",\n \"jsonResponseParam\": \"ad\",\n \"methodName\": \"dolor Ut minim Duis laboris\",\n \"packName\": \"laboris\",\n \"requestType\": \"consectetur\",\n \"startTime\": \"2014-02-20T15:25:15.874Z\",\n \"userName\": \"elit quis\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"LoggingBusinessDTO\",\"description\":\"Business logic log kayitlari. uygulamamizin business islemlerinde basarili veya basariz durumlari kayit altina alinir. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"apiUrl\":{\"description\":\"rest api url bilgisi, parametreler haric\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"channelEventId\":{\"description\":\"Channel EventID, UI event id dir.\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"channelName\":{\"description\":\"Log kanal Bilgisi. Uygulama, web, desktop, mobil\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"className\":{\"description\":\"Servis class ismidir.\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"endTime\":{\"format\":\"date-time\",\"description\":\"Servis response zamani\",\"type\":\"string\"},\"exceptionCause\":{\"description\":\"Hata mesajinin cause bilgisi. Nedeni.\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"exceptionMessage\":{\"description\":\"Hata Mesaji\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"exceptionStackTrace\":{\"description\":\"Full Hata mesaji stacktrace\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"exceptionType\":{\"description\":\"Hata tipi\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"exitCode\":{\"description\":\"Servis cagriminin sonlanma sekli. SUCCESS, BUSINESS_EXCEPTION, SYSTEM_EXCEPTION\",\"enum\":[\"BUSINESS_EXCEPTION\",\"CLIENT_ERROR\",\"INFORMATIONAL\",\"REDIRECTION\",\"SERVER_ERROR\",\"SUCCESS\",\"SYSTEM_EXCEPTION\"],\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"jsonRequestParam\":{\"description\":\"JSON request parametrelerin degerleri\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"jsonResponseParam\":{\"description\":\"JSON response parametre degerleri\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"methodName\":{\"description\":\"Servis method ismidir.\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"packName\":{\"description\":\"java package full name\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"requestType\":{\"description\":\"Request Type GET, POST, PUT, DELETE\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"startTime\":{\"format\":\"date-time\",\"description\":\"Servis tetiklenme zamani\",\"type\":\"string\"},\"userName\":{\"description\":\"Kullanici Adi bilgisidir.\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/LoggingBusinessDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"apiUrl\": \"amet et mollit sunt culpa\",\n \"channelEventId\": \"aliqua incididunt exercitation\",\n \"channelName\": \"incididunt cupidatat pariatur minim\",\n \"className\": \"ea magna fugiat reprehenderit\",\n \"endTime\": \"1942-05-23T01:35:48.362Z\",\n \"exceptionCause\": \"labore reprehenderit\",\n \"exceptionMessage\": \"magna do nulla quis ullamco\",\n \"exceptionStackTrace\": \"ea minim\",\n \"exceptionType\": \"laborum ex eu laboris\",\n \"exitCode\": \"SERVER_ERROR\",\n \"id\": -40445772,\n \"jsonRequestParam\": \"pariatur cupidatat dolore\",\n \"jsonResponseParam\": \"magna adipisicing fugiat\",\n \"methodName\": \"ullamco magna Duis sit in\",\n \"packName\": \"Lorem culpa aliqua in proident\",\n \"requestType\": \"eu nisi in fugiat\",\n \"startTime\": \"1988-10-21T03:15:04.572Z\",\n \"userName\": \"nisi\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"LoggingBusinessDTO\",\"description\":\"Business logic log kayitlari. uygulamamizin business islemlerinde basarili veya basariz durumlari kayit altina alinir. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"apiUrl\":{\"description\":\"rest api url bilgisi, parametreler haric\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"channelEventId\":{\"description\":\"Channel EventID, UI event id dir.\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"channelName\":{\"description\":\"Log kanal Bilgisi. Uygulama, web, desktop, mobil\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"className\":{\"description\":\"Servis class ismidir.\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"endTime\":{\"format\":\"date-time\",\"description\":\"Servis response zamani\",\"type\":\"string\"},\"exceptionCause\":{\"description\":\"Hata mesajinin cause bilgisi. Nedeni.\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"exceptionMessage\":{\"description\":\"Hata Mesaji\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"exceptionStackTrace\":{\"description\":\"Full Hata mesaji stacktrace\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"exceptionType\":{\"description\":\"Hata tipi\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"exitCode\":{\"description\":\"Servis cagriminin sonlanma sekli. SUCCESS, BUSINESS_EXCEPTION, SYSTEM_EXCEPTION\",\"enum\":[\"BUSINESS_EXCEPTION\",\"CLIENT_ERROR\",\"INFORMATIONAL\",\"REDIRECTION\",\"SERVER_ERROR\",\"SUCCESS\",\"SYSTEM_EXCEPTION\"],\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"jsonRequestParam\":{\"description\":\"JSON request parametrelerin degerleri\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"jsonResponseParam\":{\"description\":\"JSON response parametre degerleri\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"methodName\":{\"description\":\"Servis method ismidir.\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"packName\":{\"description\":\"java package full name\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"requestType\":{\"description\":\"Request Type GET, POST, PUT, DELETE\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"startTime\":{\"format\":\"date-time\",\"description\":\"Servis tetiklenme zamani\",\"type\":\"string\"},\"userName\":{\"description\":\"Kullanici Adi bilgisidir.\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/LoggingBusinessDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "createLoggingBusiness" + }, + "id": { + "element": "string", + "content": "createLoggingBusinessUsingPOST" + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"apiUrl\": \"esse consectetur pariatur\",\n \"channelEventId\": \"volupt\",\n \"channelName\": \"nisi dolor in\",\n \"className\": \"quis culpa\",\n \"endTime\": \"1991-05-09T17:30:07.461Z\",\n \"exceptionCause\": \"esse anim\",\n \"exceptionMessage\": \"ex adipisicing nisi eiusmod occaecat\",\n \"exceptionStackTrace\": \"dolore esse sint laborum ipsum\",\n \"exceptionType\": \"Lorem\",\n \"exitCode\": \"SYSTEM_EXCEPTION\",\n \"id\": -91992067,\n \"jsonRequestParam\": \"qui ipsum dolor\",\n \"jsonResponseParam\": \"do magna\",\n \"methodName\": \"minim sed commodo\",\n \"packName\": \"do\",\n \"requestType\": \"veniam Duis\",\n \"startTime\": \"1977-02-09T02:30:09.145Z\",\n \"userName\": \"occaecat in dolore\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"LoggingBusinessDTO\",\"description\":\"Business logic log kayitlari. uygulamamizin business islemlerinde basarili veya basariz durumlari kayit altina alinir. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"apiUrl\":{\"description\":\"rest api url bilgisi, parametreler haric\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"channelEventId\":{\"description\":\"Channel EventID, UI event id dir.\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"channelName\":{\"description\":\"Log kanal Bilgisi. Uygulama, web, desktop, mobil\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"className\":{\"description\":\"Servis class ismidir.\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"endTime\":{\"format\":\"date-time\",\"description\":\"Servis response zamani\",\"type\":\"string\"},\"exceptionCause\":{\"description\":\"Hata mesajinin cause bilgisi. Nedeni.\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"exceptionMessage\":{\"description\":\"Hata Mesaji\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"exceptionStackTrace\":{\"description\":\"Full Hata mesaji stacktrace\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"exceptionType\":{\"description\":\"Hata tipi\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"exitCode\":{\"description\":\"Servis cagriminin sonlanma sekli. SUCCESS, BUSINESS_EXCEPTION, SYSTEM_EXCEPTION\",\"enum\":[\"BUSINESS_EXCEPTION\",\"CLIENT_ERROR\",\"INFORMATIONAL\",\"REDIRECTION\",\"SERVER_ERROR\",\"SUCCESS\",\"SYSTEM_EXCEPTION\"],\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"jsonRequestParam\":{\"description\":\"JSON request parametrelerin degerleri\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"jsonResponseParam\":{\"description\":\"JSON response parametre degerleri\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"methodName\":{\"description\":\"Servis method ismidir.\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"packName\":{\"description\":\"java package full name\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"requestType\":{\"description\":\"Request Type GET, POST, PUT, DELETE\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"startTime\":{\"format\":\"date-time\",\"description\":\"Servis tetiklenme zamani\",\"type\":\"string\"},\"userName\":{\"description\":\"Kullanici Adi bilgisidir.\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/LoggingBusinessDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"LoggingBusinessDTO\",\"description\":\"Business logic log kayitlari. uygulamamizin business islemlerinde basarili veya basariz durumlari kayit altina alinir. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"apiUrl\":{\"description\":\"rest api url bilgisi, parametreler haric\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"channelEventId\":{\"description\":\"Channel EventID, UI event id dir.\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"channelName\":{\"description\":\"Log kanal Bilgisi. Uygulama, web, desktop, mobil\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"className\":{\"description\":\"Servis class ismidir.\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"endTime\":{\"format\":\"date-time\",\"description\":\"Servis response zamani\",\"type\":\"string\"},\"exceptionCause\":{\"description\":\"Hata mesajinin cause bilgisi. Nedeni.\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"exceptionMessage\":{\"description\":\"Hata Mesaji\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"exceptionStackTrace\":{\"description\":\"Full Hata mesaji stacktrace\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"exceptionType\":{\"description\":\"Hata tipi\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"exitCode\":{\"description\":\"Servis cagriminin sonlanma sekli. SUCCESS, BUSINESS_EXCEPTION, SYSTEM_EXCEPTION\",\"enum\":[\"BUSINESS_EXCEPTION\",\"CLIENT_ERROR\",\"INFORMATIONAL\",\"REDIRECTION\",\"SERVER_ERROR\",\"SUCCESS\",\"SYSTEM_EXCEPTION\"],\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"jsonRequestParam\":{\"description\":\"JSON request parametrelerin degerleri\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"jsonResponseParam\":{\"description\":\"JSON response parametre degerleri\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"methodName\":{\"description\":\"Servis method ismidir.\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"packName\":{\"description\":\"java package full name\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"requestType\":{\"description\":\"Request Type GET, POST, PUT, DELETE\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"startTime\":{\"format\":\"date-time\",\"description\":\"Servis tetiklenme zamani\",\"type\":\"string\"},\"userName\":{\"description\":\"Kullanici Adi bilgisidir.\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/LoggingBusinessDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"apiUrl\": \"quis laboris\",\n \"channelEventId\": \"Excepteur sunt\",\n \"channelName\": \"amet vol\",\n \"className\": \"voluptate consequat non fugiat aliqua\",\n \"endTime\": \"2004-12-02T16:13:59.109Z\",\n \"exceptionCause\": \"incididunt officia\",\n \"exceptionMessage\": \"cupidatat sunt elit irure\",\n \"exceptionStackTrace\": \"ea quis ipsum magna nisi\",\n \"exceptionType\": \"ipsum\",\n \"exitCode\": \"BUSINESS_EXCEPTION\",\n \"id\": -19926259,\n \"jsonRequestParam\": \"officia\",\n \"jsonResponseParam\": \"irure\",\n \"methodName\": \"irure ipsum minim\",\n \"packName\": \"officia adipisicing Ut est\",\n \"requestType\": \"in\",\n \"startTime\": \"1984-08-20T07:06:18.828Z\",\n \"userName\": \"ullamco laborum cupidatat\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"LoggingBusinessDTO\",\"description\":\"Business logic log kayitlari. uygulamamizin business islemlerinde basarili veya basariz durumlari kayit altina alinir. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"apiUrl\":{\"description\":\"rest api url bilgisi, parametreler haric\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"channelEventId\":{\"description\":\"Channel EventID, UI event id dir.\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"channelName\":{\"description\":\"Log kanal Bilgisi. Uygulama, web, desktop, mobil\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"className\":{\"description\":\"Servis class ismidir.\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"endTime\":{\"format\":\"date-time\",\"description\":\"Servis response zamani\",\"type\":\"string\"},\"exceptionCause\":{\"description\":\"Hata mesajinin cause bilgisi. Nedeni.\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"exceptionMessage\":{\"description\":\"Hata Mesaji\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"exceptionStackTrace\":{\"description\":\"Full Hata mesaji stacktrace\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"exceptionType\":{\"description\":\"Hata tipi\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"exitCode\":{\"description\":\"Servis cagriminin sonlanma sekli. SUCCESS, BUSINESS_EXCEPTION, SYSTEM_EXCEPTION\",\"enum\":[\"BUSINESS_EXCEPTION\",\"CLIENT_ERROR\",\"INFORMATIONAL\",\"REDIRECTION\",\"SERVER_ERROR\",\"SUCCESS\",\"SYSTEM_EXCEPTION\"],\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"jsonRequestParam\":{\"description\":\"JSON request parametrelerin degerleri\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"jsonResponseParam\":{\"description\":\"JSON response parametre degerleri\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"methodName\":{\"description\":\"Servis method ismidir.\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"packName\":{\"description\":\"java package full name\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"requestType\":{\"description\":\"Request Type GET, POST, PUT, DELETE\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"startTime\":{\"format\":\"date-time\",\"description\":\"Servis tetiklenme zamani\",\"type\":\"string\"},\"userName\":{\"description\":\"Kullanici Adi bilgisidir.\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/LoggingBusinessDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"apiUrl\": \"voluptate irure pariatur dolore dolor\",\n \"channelEventId\": \"ipsum exercitation irure pariatur\",\n \"channelName\": \"eu nisi qui Excepteur\",\n \"className\": \"Ut ad laboris consequat culpa\",\n \"endTime\": \"1993-05-10T08:39:58.082Z\",\n \"exceptionCause\": \"nisi fugiat \",\n \"exceptionMessage\": \"et laboris aute quis\",\n \"exceptionStackTrace\": \"dolor ullamco dolore incididunt adipisicing\",\n \"exceptionType\": \"id fugiat\",\n \"exitCode\": \"SERVER_ERROR\",\n \"id\": -36014746,\n \"jsonRequestParam\": \"nisi ut aliquip consequat id\",\n \"jsonResponseParam\": \"ipsum\",\n \"methodName\": \"ullamco labore veniam dolore Duis\",\n \"packName\": \"sint\",\n \"requestType\": \"qui\",\n \"startTime\": \"1999-05-07T19:47:43.090Z\",\n \"userName\": \"esse cupidatat fugiat Excepteur\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"LoggingBusinessDTO\",\"description\":\"Business logic log kayitlari. uygulamamizin business islemlerinde basarili veya basariz durumlari kayit altina alinir. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"apiUrl\":{\"description\":\"rest api url bilgisi, parametreler haric\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"channelEventId\":{\"description\":\"Channel EventID, UI event id dir.\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"channelName\":{\"description\":\"Log kanal Bilgisi. Uygulama, web, desktop, mobil\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"className\":{\"description\":\"Servis class ismidir.\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"endTime\":{\"format\":\"date-time\",\"description\":\"Servis response zamani\",\"type\":\"string\"},\"exceptionCause\":{\"description\":\"Hata mesajinin cause bilgisi. Nedeni.\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"exceptionMessage\":{\"description\":\"Hata Mesaji\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"exceptionStackTrace\":{\"description\":\"Full Hata mesaji stacktrace\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"exceptionType\":{\"description\":\"Hata tipi\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"exitCode\":{\"description\":\"Servis cagriminin sonlanma sekli. SUCCESS, BUSINESS_EXCEPTION, SYSTEM_EXCEPTION\",\"enum\":[\"BUSINESS_EXCEPTION\",\"CLIENT_ERROR\",\"INFORMATIONAL\",\"REDIRECTION\",\"SERVER_ERROR\",\"SUCCESS\",\"SYSTEM_EXCEPTION\"],\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"jsonRequestParam\":{\"description\":\"JSON request parametrelerin degerleri\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"jsonResponseParam\":{\"description\":\"JSON response parametre degerleri\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"methodName\":{\"description\":\"Servis method ismidir.\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"packName\":{\"description\":\"java package full name\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"requestType\":{\"description\":\"Request Type GET, POST, PUT, DELETE\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"startTime\":{\"format\":\"date-time\",\"description\":\"Servis tetiklenme zamani\",\"type\":\"string\"},\"userName\":{\"description\":\"Kullanici Adi bilgisidir.\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/LoggingBusinessDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"apiUrl\": \"qui non in sit tempor\",\n \"channelEventId\": \"eu deserunt eiusmod\",\n \"channelName\": \"fug\",\n \"className\": \"Excepteur ad sunt veniam\",\n \"endTime\": \"2017-05-08T09:28:51.460Z\",\n \"exceptionCause\": \"labore\",\n \"exceptionMessage\": \"ut velit consectetur sed aute\",\n \"exceptionStackTrace\": \"amet aute tempor ad\",\n \"exceptionType\": \"in ea veniam\",\n \"exitCode\": \"CLIENT_ERROR\",\n \"id\": 51199097,\n \"jsonRequestParam\": \"velit do anim\",\n \"jsonResponseParam\": \"Ut labore\",\n \"methodName\": \"culpa esse qui mollit ipsum\",\n \"packName\": \"esse in ut\",\n \"requestType\": \"qui sint anim\",\n \"startTime\": \"1978-05-25T03:44:12.602Z\",\n \"userName\": \"ut dolore\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"LoggingBusinessDTO\",\"description\":\"Business logic log kayitlari. uygulamamizin business islemlerinde basarili veya basariz durumlari kayit altina alinir. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"apiUrl\":{\"description\":\"rest api url bilgisi, parametreler haric\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"channelEventId\":{\"description\":\"Channel EventID, UI event id dir.\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"channelName\":{\"description\":\"Log kanal Bilgisi. Uygulama, web, desktop, mobil\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"className\":{\"description\":\"Servis class ismidir.\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"endTime\":{\"format\":\"date-time\",\"description\":\"Servis response zamani\",\"type\":\"string\"},\"exceptionCause\":{\"description\":\"Hata mesajinin cause bilgisi. Nedeni.\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"exceptionMessage\":{\"description\":\"Hata Mesaji\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"exceptionStackTrace\":{\"description\":\"Full Hata mesaji stacktrace\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"exceptionType\":{\"description\":\"Hata tipi\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"exitCode\":{\"description\":\"Servis cagriminin sonlanma sekli. SUCCESS, BUSINESS_EXCEPTION, SYSTEM_EXCEPTION\",\"enum\":[\"BUSINESS_EXCEPTION\",\"CLIENT_ERROR\",\"INFORMATIONAL\",\"REDIRECTION\",\"SERVER_ERROR\",\"SUCCESS\",\"SYSTEM_EXCEPTION\"],\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"jsonRequestParam\":{\"description\":\"JSON request parametrelerin degerleri\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"jsonResponseParam\":{\"description\":\"JSON response parametre degerleri\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"methodName\":{\"description\":\"Servis method ismidir.\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"packName\":{\"description\":\"java package full name\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"requestType\":{\"description\":\"Request Type GET, POST, PUT, DELETE\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"startTime\":{\"format\":\"date-time\",\"description\":\"Servis tetiklenme zamani\",\"type\":\"string\"},\"userName\":{\"description\":\"Kullanici Adi bilgisidir.\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/LoggingBusinessDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"apiUrl\": \"Excepteur dolore ea\",\n \"channelEventId\": \"Excepteur\",\n \"channelName\": \"elit\",\n \"className\": \"dolore officia reprehen\",\n \"endTime\": \"1998-04-28T05:05:31.560Z\",\n \"exceptionCause\": \"mollit quis minim consect\",\n \"exceptionMessage\": \"velit cupidatat deserunt\",\n \"exceptionStackTrace\": \"non adipisicing fugiat pariatur qui\",\n \"exceptionType\": \"eu labore\",\n \"exitCode\": \"INFORMATIONAL\",\n \"id\": -47560851,\n \"jsonRequestParam\": \"culpa nisi occaecat\",\n \"jsonResponseParam\": \"magna proident consectetur dolor\",\n \"methodName\": \"et\",\n \"packName\": \"Lorem mollit id\",\n \"requestType\": \"minim ullamco ad sunt\",\n \"startTime\": \"1947-11-11T17:15:31.194Z\",\n \"userName\": \"est consectetur\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"LoggingBusinessDTO\",\"description\":\"Business logic log kayitlari. uygulamamizin business islemlerinde basarili veya basariz durumlari kayit altina alinir. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"apiUrl\":{\"description\":\"rest api url bilgisi, parametreler haric\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"channelEventId\":{\"description\":\"Channel EventID, UI event id dir.\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"channelName\":{\"description\":\"Log kanal Bilgisi. Uygulama, web, desktop, mobil\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"className\":{\"description\":\"Servis class ismidir.\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"endTime\":{\"format\":\"date-time\",\"description\":\"Servis response zamani\",\"type\":\"string\"},\"exceptionCause\":{\"description\":\"Hata mesajinin cause bilgisi. Nedeni.\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"exceptionMessage\":{\"description\":\"Hata Mesaji\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"exceptionStackTrace\":{\"description\":\"Full Hata mesaji stacktrace\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"exceptionType\":{\"description\":\"Hata tipi\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"exitCode\":{\"description\":\"Servis cagriminin sonlanma sekli. SUCCESS, BUSINESS_EXCEPTION, SYSTEM_EXCEPTION\",\"enum\":[\"BUSINESS_EXCEPTION\",\"CLIENT_ERROR\",\"INFORMATIONAL\",\"REDIRECTION\",\"SERVER_ERROR\",\"SUCCESS\",\"SYSTEM_EXCEPTION\"],\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"jsonRequestParam\":{\"description\":\"JSON request parametrelerin degerleri\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"jsonResponseParam\":{\"description\":\"JSON response parametre degerleri\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"methodName\":{\"description\":\"Servis method ismidir.\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"packName\":{\"description\":\"java package full name\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"requestType\":{\"description\":\"Request Type GET, POST, PUT, DELETE\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"startTime\":{\"format\":\"date-time\",\"description\":\"Servis tetiklenme zamani\",\"type\":\"string\"},\"userName\":{\"description\":\"Kullanici Adi bilgisidir.\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/LoggingBusinessDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/logging-businesses/count" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "countLoggingBusinesses" + }, + "id": { + "element": "string", + "content": "countLoggingBusinessesUsingGET" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/logging-businesses/count{?apiUrl%2econtains,apiUrl%2eequals,apiUrl%2ein*,apiUrl%2especified,channelEventId%2econtains,channelEventId%2eequals,channelEventId%2ein*,channelEventId%2especified,channelName%2econtains,channelName%2eequals,channelName%2ein*,channelName%2especified,className%2econtains,className%2eequals,className%2ein*,className%2especified,endTime%2eequals,endTime%2egreaterOrEqualThan,endTime%2egreaterThan,endTime%2ein%5B0%5D%2edayOfMonth,endTime%2ein%5B0%5D%2edayOfWeek,endTime%2ein%5B0%5D%2edayOfYear,endTime%2ein%5B0%5D%2ehour,endTime%2ein%5B0%5D%2eminute,endTime%2ein%5B0%5D%2emonth,endTime%2ein%5B0%5D%2emonthValue,endTime%2ein%5B0%5D%2enano,endTime%2ein%5B0%5D%2eoffset%2eid,endTime%2ein%5B0%5D%2eoffset%2erules%2efixedOffset,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitionRules%5B0%5D%2edayOfMonthIndicator,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitionRules%5B0%5D%2edayOfWeek,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitionRules%5B0%5D%2elocalTime%2ehour,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitionRules%5B0%5D%2elocalTime%2eminute,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitionRules%5B0%5D%2elocalTime%2enano,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitionRules%5B0%5D%2elocalTime%2esecond,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitionRules%5B0%5D%2emidnightEndOfDay,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitionRules%5B0%5D%2emonth,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitionRules%5B0%5D%2etimeDefinition,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2edateTimeAfter,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2edateTimeBefore,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2eduration%2enano,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2eduration%2enegative,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2eduration%2eseconds,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2eduration%2eunits%5B0%5D%2edateBased,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2eduration%2eunits%5B0%5D%2edurationEstimated,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2eduration%2eunits%5B0%5D%2etimeBased,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2eduration%2ezero,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2egap,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2einstant,endTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2eoverlap,endTime%2ein%5B0%5D%2eoffset%2etotalSeconds,endTime%2ein%5B0%5D%2esecond,endTime%2ein%5B0%5D%2eyear,endTime%2ein%5B0%5D%2ezone%2eid,endTime%2ein%5B0%5D%2ezone%2erules%2efixedOffset,endTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2edayOfMonthIndicator,endTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2edayOfWeek,endTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2elocalTime%2ehour,endTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2elocalTime%2eminute,endTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2elocalTime%2enano,endTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2elocalTime%2esecond,endTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2emidnightEndOfDay,endTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2emonth,endTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2eoffsetAfter%2eid,endTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2eoffsetAfter%2etotalSeconds,endTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2eoffsetBefore%2eid,endTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2eoffsetBefore%2etotalSeconds,endTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2estandardOffset%2eid,endTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2estandardOffset%2etotalSeconds,endTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2etimeDefinition,endTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2edateTimeAfter,endTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2edateTimeBefore,endTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eduration%2enano,endTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eduration%2enegative,endTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eduration%2eseconds,endTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eduration%2eunits%5B0%5D%2edateBased,endTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eduration%2eunits%5B0%5D%2edurationEstimated,endTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eduration%2eunits%5B0%5D%2etimeBased,endTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eduration%2ezero,endTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2egap,endTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2einstant,endTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eoffsetAfter%2eid,endTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eoffsetAfter%2etotalSeconds,endTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eoffsetBefore%2eid,endTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eoffsetBefore%2etotalSeconds,endTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eoverlap,endTime%2elessOrEqualThan,endTime%2elessThan,endTime%2especified,exceptionCause%2econtains,exceptionCause%2eequals,exceptionCause%2ein*,exceptionCause%2especified,exceptionMessage%2econtains,exceptionMessage%2eequals,exceptionMessage%2ein*,exceptionMessage%2especified,exceptionStackTrace%2econtains,exceptionStackTrace%2eequals,exceptionStackTrace%2ein*,exceptionStackTrace%2especified,exceptionType%2econtains,exceptionType%2eequals,exceptionType%2ein*,exceptionType%2especified,exitCode%2eequals,exitCode%2ein*,exitCode%2especified,id%2eequals,id%2egreaterOrEqualThan,id%2egreaterThan,id%2ein*,id%2elessOrEqualThan,id%2elessThan,id%2especified,jsonRequestParam%2econtains,jsonRequestParam%2eequals,jsonRequestParam%2ein*,jsonRequestParam%2especified,jsonResponseParam%2econtains,jsonResponseParam%2eequals,jsonResponseParam%2ein*,jsonResponseParam%2especified,methodName%2econtains,methodName%2eequals,methodName%2ein*,methodName%2especified,packName%2econtains,packName%2eequals,packName%2ein*,packName%2especified,requestType%2econtains,requestType%2eequals,requestType%2ein*,requestType%2especified,startTime%2eequals,startTime%2egreaterOrEqualThan,startTime%2egreaterThan,startTime%2ein%5B0%5D%2edayOfMonth,startTime%2ein%5B0%5D%2edayOfWeek,startTime%2ein%5B0%5D%2edayOfYear,startTime%2ein%5B0%5D%2ehour,startTime%2ein%5B0%5D%2eminute,startTime%2ein%5B0%5D%2emonth,startTime%2ein%5B0%5D%2emonthValue,startTime%2ein%5B0%5D%2enano,startTime%2ein%5B0%5D%2eoffset%2eid,startTime%2ein%5B0%5D%2eoffset%2erules%2efixedOffset,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitionRules%5B0%5D%2edayOfMonthIndicator,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitionRules%5B0%5D%2edayOfWeek,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitionRules%5B0%5D%2elocalTime%2ehour,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitionRules%5B0%5D%2elocalTime%2eminute,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitionRules%5B0%5D%2elocalTime%2enano,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitionRules%5B0%5D%2elocalTime%2esecond,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitionRules%5B0%5D%2emidnightEndOfDay,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitionRules%5B0%5D%2emonth,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitionRules%5B0%5D%2etimeDefinition,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2edateTimeAfter,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2edateTimeBefore,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2eduration%2enano,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2eduration%2enegative,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2eduration%2eseconds,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2eduration%2eunits%5B0%5D%2edateBased,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2eduration%2eunits%5B0%5D%2edurationEstimated,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2eduration%2eunits%5B0%5D%2etimeBased,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2eduration%2ezero,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2egap,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2einstant,startTime%2ein%5B0%5D%2eoffset%2erules%2etransitions%5B0%5D%2eoverlap,startTime%2ein%5B0%5D%2eoffset%2etotalSeconds,startTime%2ein%5B0%5D%2esecond,startTime%2ein%5B0%5D%2eyear,startTime%2ein%5B0%5D%2ezone%2eid,startTime%2ein%5B0%5D%2ezone%2erules%2efixedOffset,startTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2edayOfMonthIndicator,startTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2edayOfWeek,startTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2elocalTime%2ehour,startTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2elocalTime%2eminute,startTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2elocalTime%2enano,startTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2elocalTime%2esecond,startTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2emidnightEndOfDay,startTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2emonth,startTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2eoffsetAfter%2eid,startTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2eoffsetAfter%2etotalSeconds,startTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2eoffsetBefore%2eid,startTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2eoffsetBefore%2etotalSeconds,startTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2estandardOffset%2eid,startTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2estandardOffset%2etotalSeconds,startTime%2ein%5B0%5D%2ezone%2erules%2etransitionRules%5B0%5D%2etimeDefinition,startTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2edateTimeAfter,startTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2edateTimeBefore,startTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eduration%2enano,startTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eduration%2enegative,startTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eduration%2eseconds,startTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eduration%2eunits%5B0%5D%2edateBased,startTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eduration%2eunits%5B0%5D%2edurationEstimated,startTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eduration%2eunits%5B0%5D%2etimeBased,startTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eduration%2ezero,startTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2egap,startTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2einstant,startTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eoffsetAfter%2eid,startTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eoffsetAfter%2etotalSeconds,startTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eoffsetBefore%2eid,startTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eoffsetBefore%2etotalSeconds,startTime%2ein%5B0%5D%2ezone%2erules%2etransitions%5B0%5D%2eoverlap,startTime%2elessOrEqualThan,startTime%2elessThan,startTime%2especified,userName%2econtains,userName%2eequals,userName%2ein*,userName%2especified}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "apiUrl.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "apiUrl.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "apiUrl.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "apiUrl.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "channelEventId.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "channelEventId.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "channelEventId.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "channelEventId.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "channelName.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "channelName.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "channelName.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "channelName.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "className.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "className.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "className.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "className.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.greaterOrEqualThan" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.greaterThan" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].dayOfMonth" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].dayOfWeek" + }, + "value": { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "FRIDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MONDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SATURDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SUNDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "THURSDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "TUESDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "WEDNESDAY" + } + ] + } + } + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].dayOfYear" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].hour" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].minute" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].month" + }, + "value": { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "APRIL" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "AUGUST" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "DECEMBER" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "FEBRUARY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "JANUARY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "JULY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "JUNE" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MARCH" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "NOVEMBER" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "OCTOBER" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SEPTEMBER" + } + ] + } + } + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].monthValue" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].nano" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.id" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.fixedOffset" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitionRules[0].dayOfMonthIndicator" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitionRules[0].dayOfWeek" + }, + "value": { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "FRIDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MONDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SATURDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SUNDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "THURSDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "TUESDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "WEDNESDAY" + } + ] + } + } + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitionRules[0].localTime.hour" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitionRules[0].localTime.minute" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitionRules[0].localTime.nano" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitionRules[0].localTime.second" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitionRules[0].midnightEndOfDay" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitionRules[0].month" + }, + "value": { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "APRIL" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "AUGUST" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "DECEMBER" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "FEBRUARY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "JANUARY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "JULY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "JUNE" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MARCH" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "NOVEMBER" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "OCTOBER" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SEPTEMBER" + } + ] + } + } + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitionRules[0].timeDefinition" + }, + "value": { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "STANDARD" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "UTC" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "WALL" + } + ] + } + } + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitions[0].dateTimeAfter" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitions[0].dateTimeBefore" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitions[0].duration.nano" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitions[0].duration.negative" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitions[0].duration.seconds" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitions[0].duration.units[0].dateBased" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitions[0].duration.units[0].durationEstimated" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitions[0].duration.units[0].timeBased" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitions[0].duration.zero" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitions[0].gap" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitions[0].instant" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.rules.transitions[0].overlap" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].offset.totalSeconds" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].second" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].year" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.id" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.fixedOffset" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitionRules[0].dayOfMonthIndicator" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitionRules[0].dayOfWeek" + }, + "value": { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "FRIDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MONDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SATURDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SUNDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "THURSDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "TUESDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "WEDNESDAY" + } + ] + } + } + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitionRules[0].localTime.hour" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitionRules[0].localTime.minute" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitionRules[0].localTime.nano" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitionRules[0].localTime.second" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitionRules[0].midnightEndOfDay" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitionRules[0].month" + }, + "value": { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "APRIL" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "AUGUST" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "DECEMBER" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "FEBRUARY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "JANUARY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "JULY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "JUNE" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MARCH" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "NOVEMBER" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "OCTOBER" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SEPTEMBER" + } + ] + } + } + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitionRules[0].offsetAfter.id" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitionRules[0].offsetAfter.totalSeconds" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitionRules[0].offsetBefore.id" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitionRules[0].offsetBefore.totalSeconds" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitionRules[0].standardOffset.id" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitionRules[0].standardOffset.totalSeconds" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitionRules[0].timeDefinition" + }, + "value": { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "STANDARD" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "UTC" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "WALL" + } + ] + } + } + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitions[0].dateTimeAfter" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitions[0].dateTimeBefore" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitions[0].duration.nano" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitions[0].duration.negative" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitions[0].duration.seconds" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitions[0].duration.units[0].dateBased" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitions[0].duration.units[0].durationEstimated" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitions[0].duration.units[0].timeBased" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitions[0].duration.zero" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitions[0].gap" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitions[0].instant" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitions[0].offsetAfter.id" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitions[0].offsetAfter.totalSeconds" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitions[0].offsetBefore.id" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitions[0].offsetBefore.totalSeconds" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.in[0].zone.rules.transitions[0].overlap" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.lessOrEqualThan" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.lessThan" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endTime.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "exceptionCause.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "exceptionCause.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "exceptionCause.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "exceptionCause.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "exceptionMessage.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "exceptionMessage.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "exceptionMessage.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "exceptionMessage.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "exceptionStackTrace.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "exceptionStackTrace.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "exceptionStackTrace.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "exceptionStackTrace.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "exceptionType.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "exceptionType.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "exceptionType.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "exceptionType.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "exitCode.equals" + }, + "value": { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "BUSINESS_EXCEPTION" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "CLIENT_ERROR" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "INFORMATIONAL" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "REDIRECTION" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SERVER_ERROR" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SUCCESS" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SYSTEM_EXCEPTION" + } + ] + } + } + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "exitCode.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "BUSINESS_EXCEPTION" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "CLIENT_ERROR" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "INFORMATIONAL" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "REDIRECTION" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SERVER_ERROR" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SUCCESS" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SYSTEM_EXCEPTION" + } + ] + } + } + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "exitCode.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "jsonRequestParam.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "jsonRequestParam.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "jsonRequestParam.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "jsonRequestParam.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "jsonResponseParam.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "jsonResponseParam.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "jsonResponseParam.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "jsonResponseParam.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "methodName.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "methodName.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "methodName.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "methodName.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "packName.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "packName.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "packName.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "packName.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "requestType.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "requestType.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "requestType.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "requestType.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.greaterOrEqualThan" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.greaterThan" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].dayOfMonth" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].dayOfWeek" + }, + "value": { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "FRIDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MONDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SATURDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SUNDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "THURSDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "TUESDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "WEDNESDAY" + } + ] + } + } + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].dayOfYear" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].hour" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].minute" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].month" + }, + "value": { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "APRIL" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "AUGUST" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "DECEMBER" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "FEBRUARY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "JANUARY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "JULY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "JUNE" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MARCH" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "NOVEMBER" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "OCTOBER" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SEPTEMBER" + } + ] + } + } + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].monthValue" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].nano" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.id" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.fixedOffset" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitionRules[0].dayOfMonthIndicator" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitionRules[0].dayOfWeek" + }, + "value": { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "FRIDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MONDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SATURDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SUNDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "THURSDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "TUESDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "WEDNESDAY" + } + ] + } + } + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitionRules[0].localTime.hour" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitionRules[0].localTime.minute" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitionRules[0].localTime.nano" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitionRules[0].localTime.second" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitionRules[0].midnightEndOfDay" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitionRules[0].month" + }, + "value": { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "APRIL" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "AUGUST" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "DECEMBER" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "FEBRUARY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "JANUARY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "JULY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "JUNE" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MARCH" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "NOVEMBER" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "OCTOBER" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SEPTEMBER" + } + ] + } + } + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitionRules[0].timeDefinition" + }, + "value": { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "STANDARD" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "UTC" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "WALL" + } + ] + } + } + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitions[0].dateTimeAfter" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitions[0].dateTimeBefore" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitions[0].duration.nano" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitions[0].duration.negative" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitions[0].duration.seconds" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitions[0].duration.units[0].dateBased" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitions[0].duration.units[0].durationEstimated" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitions[0].duration.units[0].timeBased" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitions[0].duration.zero" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitions[0].gap" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitions[0].instant" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.rules.transitions[0].overlap" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].offset.totalSeconds" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].second" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].year" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.id" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.fixedOffset" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitionRules[0].dayOfMonthIndicator" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitionRules[0].dayOfWeek" + }, + "value": { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "FRIDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MONDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SATURDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SUNDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "THURSDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "TUESDAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "WEDNESDAY" + } + ] + } + } + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitionRules[0].localTime.hour" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitionRules[0].localTime.minute" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitionRules[0].localTime.nano" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitionRules[0].localTime.second" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitionRules[0].midnightEndOfDay" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitionRules[0].month" + }, + "value": { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "APRIL" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "AUGUST" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "DECEMBER" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "FEBRUARY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "JANUARY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "JULY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "JUNE" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MARCH" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MAY" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "NOVEMBER" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "OCTOBER" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SEPTEMBER" + } + ] + } + } + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitionRules[0].offsetAfter.id" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitionRules[0].offsetAfter.totalSeconds" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitionRules[0].offsetBefore.id" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitionRules[0].offsetBefore.totalSeconds" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitionRules[0].standardOffset.id" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitionRules[0].standardOffset.totalSeconds" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitionRules[0].timeDefinition" + }, + "value": { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "STANDARD" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "UTC" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "WALL" + } + ] + } + } + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitions[0].dateTimeAfter" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitions[0].dateTimeBefore" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitions[0].duration.nano" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitions[0].duration.negative" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitions[0].duration.seconds" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitions[0].duration.units[0].dateBased" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitions[0].duration.units[0].durationEstimated" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitions[0].duration.units[0].timeBased" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitions[0].duration.zero" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitions[0].gap" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitions[0].instant" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitions[0].offsetAfter.id" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitions[0].offsetAfter.totalSeconds" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitions[0].offsetBefore.id" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitions[0].offsetBefore.totalSeconds" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.in[0].zone.rules.transitions[0].overlap" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.lessOrEqualThan" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.lessThan" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startTime.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "userName.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "userName.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "userName.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "userName.specified" + }, + "value": { + "element": "boolean" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"format\":\"int64\",\"type\":\"integer\"}" + }, + { + "element": "dataStructure", + "content": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'int64'" + } + } + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/logging-businesses/{id}" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getLoggingBusiness" + }, + "id": { + "element": "string", + "content": "getLoggingBusinessUsingGET" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "id" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"LoggingBusinessDTO\",\"description\":\"Business logic log kayitlari. uygulamamizin business islemlerinde basarili veya basariz durumlari kayit altina alinir. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"apiUrl\":{\"description\":\"rest api url bilgisi, parametreler haric\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"channelEventId\":{\"description\":\"Channel EventID, UI event id dir.\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"channelName\":{\"description\":\"Log kanal Bilgisi. Uygulama, web, desktop, mobil\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"className\":{\"description\":\"Servis class ismidir.\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"endTime\":{\"format\":\"date-time\",\"description\":\"Servis response zamani\",\"type\":\"string\"},\"exceptionCause\":{\"description\":\"Hata mesajinin cause bilgisi. Nedeni.\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"exceptionMessage\":{\"description\":\"Hata Mesaji\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"exceptionStackTrace\":{\"description\":\"Full Hata mesaji stacktrace\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"exceptionType\":{\"description\":\"Hata tipi\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"exitCode\":{\"description\":\"Servis cagriminin sonlanma sekli. SUCCESS, BUSINESS_EXCEPTION, SYSTEM_EXCEPTION\",\"enum\":[\"BUSINESS_EXCEPTION\",\"CLIENT_ERROR\",\"INFORMATIONAL\",\"REDIRECTION\",\"SERVER_ERROR\",\"SUCCESS\",\"SYSTEM_EXCEPTION\"],\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"jsonRequestParam\":{\"description\":\"JSON request parametrelerin degerleri\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"jsonResponseParam\":{\"description\":\"JSON response parametre degerleri\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"methodName\":{\"description\":\"Servis method ismidir.\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"packName\":{\"description\":\"java package full name\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"requestType\":{\"description\":\"Request Type GET, POST, PUT, DELETE\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"startTime\":{\"format\":\"date-time\",\"description\":\"Servis tetiklenme zamani\",\"type\":\"string\"},\"userName\":{\"description\":\"Kullanici Adi bilgisidir.\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/LoggingBusinessDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "deleteLoggingBusiness" + }, + "id": { + "element": "string", + "content": "deleteLoggingBusinessUsingDELETE" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "id" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "204" + } + }, + "content": [ + { + "element": "copy", + "content": "No Content" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "category", + "meta": { + "title": { + "element": "string", + "content": "menu-node-resource" + }, + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "resourceGroup" + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Menu Node Resource" + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/menu-nodes" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getAllMenuNodes" + }, + "id": { + "element": "string", + "content": "getAllMenuNodesUsingGET" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/menu-nodes{?authorityId%2eequals,authorityId%2egreaterOrEqualThan,authorityId%2egreaterThan,authorityId%2ein*,authorityId%2elessOrEqualThan,authorityId%2elessThan,authorityId%2especified,description%2econtains,description%2eequals,description%2ein*,description%2especified,i18nName%2econtains,i18nName%2eequals,i18nName%2ein*,i18nName%2especified,icon%2econtains,icon%2eequals,icon%2ein*,icon%2especified,id%2eequals,id%2egreaterOrEqualThan,id%2egreaterThan,id%2ein*,id%2elessOrEqualThan,id%2elessThan,id%2especified,leaf%2eequals,leaf%2ein*,leaf%2especified,name%2econtains,name%2eequals,name%2ein*,name%2especified,orderPriority%2eequals,orderPriority%2egreaterOrEqualThan,orderPriority%2egreaterThan,orderPriority%2ein*,orderPriority%2elessOrEqualThan,orderPriority%2elessThan,orderPriority%2especified,page,pageId%2eequals,pageId%2egreaterOrEqualThan,pageId%2egreaterThan,pageId%2ein*,pageId%2elessOrEqualThan,pageId%2elessThan,pageId%2especified,parentId%2eequals,parentId%2egreaterOrEqualThan,parentId%2egreaterThan,parentId%2ein*,parentId%2elessOrEqualThan,parentId%2elessThan,parentId%2especified,size,sort*,stateRef%2econtains,stateRef%2eequals,stateRef%2ein*,stateRef%2especified,status%2eequals,status%2ein*,status%2especified,translationId%2eequals,translationId%2egreaterOrEqualThan,translationId%2egreaterThan,translationId%2ein*,translationId%2elessOrEqualThan,translationId%2elessThan,translationId%2especified}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "authorityId.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "authorityId.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "authorityId.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "authorityId.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "authorityId.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "authorityId.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "authorityId.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "i18nName.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "i18nName.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "i18nName.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "i18nName.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "icon.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "icon.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "icon.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "icon.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "leaf.equals" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "leaf.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "boolean" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "leaf.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Page number of the requested page" + } + }, + "content": { + "key": { + "element": "string", + "content": "page" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "pageId.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "pageId.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "pageId.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "pageId.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "pageId.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "pageId.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "pageId.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "parentId.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "parentId.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "parentId.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "parentId.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "parentId.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "parentId.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "parentId.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Size of a page" + } + }, + "content": { + "key": { + "element": "string", + "content": "size" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported." + } + }, + "content": { + "key": { + "element": "string", + "content": "sort" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "stateRef.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "stateRef.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "stateRef.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "stateRef.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status.equals" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "boolean" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.specified" + }, + "value": { + "element": "boolean" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/MenuNodeDTO\"},\"definitions\":{\"MenuNodeDTO\":{\"title\":\"MenuNodeDTO\",\"description\":\"Menulerin tanimlarinin yapildigi yerdir. @author The Aurora Developer team.\",\"required\":[\"i18nName\",\"name\",\"stateRef\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Menuye ait aciklama bilgisidir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"i18nName\":{\"description\":\"Menuye ait i18n bilgisidir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"icon\":{\"description\":\"Menunun isminin yaninda gorunecek icon yoludur. bu yol genelde bir url'dir veya dosya yoludur.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"leaf\":{\"description\":\"Menu dal mi, yaprak mi belirlemek icin kullanilir. eger true ise bunun altinda menu yoktur bu bir sayfayi acmak icin kullanilir. false ise ust menudur.\",\"type\":\"boolean\"},\"name\":{\"description\":\"Menuye ait isim bilgisidir. Menulerde gorunecek isimdir. Onemlidir.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Menunun listede goruntulenecek sirasidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"pageId\":{\"format\":\"int64\",\"description\":\"Menu Node page urllerle olan bagini gostermektedir.\",\"type\":\"integer\"},\"pageUrl\":{\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"string\"},\"parentId\":{\"format\":\"int64\",\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"integer\"},\"parentName\":{\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"string\"},\"stateRef\":{\"description\":\"Menunun acacagi state referans bilgisi Orn:#/visitor\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"status\":{\"description\":\"Aktif pasiflik bilgisidir.\",\"type\":\"boolean\"},\"subMenus\":{\"description\":\"Menulerin icerdigi alt menuleri listeler..\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/MenuNodeDTO\"}},\"translation\":{\"$ref\":\"#/definitions/MenuNodeLangDTO\"}}},\"MenuNodeLangDTO\":{\"title\":\"MenuNodeLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"langCode\":{\"description\":\"Dil kodu code bilgisinin icermektedir.\",\"type\":\"string\"},\"langId\":{\"format\":\"int64\",\"description\":\"Dil kodu id bilgisinin icermektedir.\",\"type\":\"integer\"},\"langName\":{\"description\":\"Dil kodu adidir.\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/MenuNodeDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "updateMenuNode" + }, + "id": { + "element": "string", + "content": "updateMenuNodeUsingPUT" + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"i18nName\": \"ea eiusmod\",\n \"name\": \"dolor ipsum\",\n \"stateRef\": \"veniam\",\n \"createdBy\": \"sit consequat culpa tempor dolore\",\n \"createdDate\": \"1983-03-09T15:50:59.191Z\",\n \"description\": \"deserunt ex eiusmod mollit pariatur\",\n \"icon\": \"sunt Duis magna voluptate ea\",\n \"id\": 16512714,\n \"lastModifiedBy\": \"consequat\",\n \"lastModifiedDate\": \"1943-11-21T17:00:01.595Z\",\n \"leaf\": true,\n \"orderPriority\": -13652944,\n \"pageId\": -93959007,\n \"pageUrl\": \"mollit dolor nostrud\",\n \"parentId\": -97243383,\n \"parentName\": \"deserunt in reprehenderit\",\n \"status\": true,\n \"subMenus\": [],\n \"translation\": {\n \"name\": \"volup\",\n \"createdBy\": \"cupidatat\",\n \"createdDate\": \"2018-05-22T22:20:40.060Z\",\n \"defaultLang\": true,\n \"description\": \"aliquip proident mollit in\",\n \"id\": 76727551,\n \"langCode\": \"Ut eu Duis occaecat\",\n \"langId\": 27512253,\n \"langName\": \"quis elit sunt\",\n \"lastModifiedBy\": \"ut velit aliqua\",\n \"lastModifiedDate\": \"1973-03-26T13:49:00.477Z\",\n \"ownerId\": 10212815\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/MenuNodeDTO\"}],\"definitions\":{\"MenuNodeDTO\":{\"title\":\"MenuNodeDTO\",\"description\":\"Menulerin tanimlarinin yapildigi yerdir. @author The Aurora Developer team.\",\"required\":[\"i18nName\",\"name\",\"stateRef\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Menuye ait aciklama bilgisidir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"i18nName\":{\"description\":\"Menuye ait i18n bilgisidir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"icon\":{\"description\":\"Menunun isminin yaninda gorunecek icon yoludur. bu yol genelde bir url'dir veya dosya yoludur.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"leaf\":{\"description\":\"Menu dal mi, yaprak mi belirlemek icin kullanilir. eger true ise bunun altinda menu yoktur bu bir sayfayi acmak icin kullanilir. false ise ust menudur.\",\"type\":\"boolean\"},\"name\":{\"description\":\"Menuye ait isim bilgisidir. Menulerde gorunecek isimdir. Onemlidir.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Menunun listede goruntulenecek sirasidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"pageId\":{\"format\":\"int64\",\"description\":\"Menu Node page urllerle olan bagini gostermektedir.\",\"type\":\"integer\"},\"pageUrl\":{\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"string\"},\"parentId\":{\"format\":\"int64\",\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"integer\"},\"parentName\":{\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"string\"},\"stateRef\":{\"description\":\"Menunun acacagi state referans bilgisi Orn:#/visitor\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"status\":{\"description\":\"Aktif pasiflik bilgisidir.\",\"type\":\"boolean\"},\"subMenus\":{\"description\":\"Menulerin icerdigi alt menuleri listeler..\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/MenuNodeDTO\"}},\"translation\":{\"$ref\":\"#/definitions/MenuNodeLangDTO\"}}},\"MenuNodeLangDTO\":{\"title\":\"MenuNodeLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"langCode\":{\"description\":\"Dil kodu code bilgisinin icermektedir.\",\"type\":\"string\"},\"langId\":{\"format\":\"int64\",\"description\":\"Dil kodu id bilgisinin icermektedir.\",\"type\":\"integer\"},\"langName\":{\"description\":\"Dil kodu adidir.\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/MenuNodeDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/MenuNodeDTO\"}],\"definitions\":{\"MenuNodeDTO\":{\"title\":\"MenuNodeDTO\",\"description\":\"Menulerin tanimlarinin yapildigi yerdir. @author The Aurora Developer team.\",\"required\":[\"i18nName\",\"name\",\"stateRef\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Menuye ait aciklama bilgisidir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"i18nName\":{\"description\":\"Menuye ait i18n bilgisidir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"icon\":{\"description\":\"Menunun isminin yaninda gorunecek icon yoludur. bu yol genelde bir url'dir veya dosya yoludur.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"leaf\":{\"description\":\"Menu dal mi, yaprak mi belirlemek icin kullanilir. eger true ise bunun altinda menu yoktur bu bir sayfayi acmak icin kullanilir. false ise ust menudur.\",\"type\":\"boolean\"},\"name\":{\"description\":\"Menuye ait isim bilgisidir. Menulerde gorunecek isimdir. Onemlidir.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Menunun listede goruntulenecek sirasidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"pageId\":{\"format\":\"int64\",\"description\":\"Menu Node page urllerle olan bagini gostermektedir.\",\"type\":\"integer\"},\"pageUrl\":{\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"string\"},\"parentId\":{\"format\":\"int64\",\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"integer\"},\"parentName\":{\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"string\"},\"stateRef\":{\"description\":\"Menunun acacagi state referans bilgisi Orn:#/visitor\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"status\":{\"description\":\"Aktif pasiflik bilgisidir.\",\"type\":\"boolean\"},\"subMenus\":{\"description\":\"Menulerin icerdigi alt menuleri listeler..\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/MenuNodeDTO\"}},\"translation\":{\"$ref\":\"#/definitions/MenuNodeLangDTO\"}}},\"MenuNodeLangDTO\":{\"title\":\"MenuNodeLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"langCode\":{\"description\":\"Dil kodu code bilgisinin icermektedir.\",\"type\":\"string\"},\"langId\":{\"format\":\"int64\",\"description\":\"Dil kodu id bilgisinin icermektedir.\",\"type\":\"integer\"},\"langName\":{\"description\":\"Dil kodu adidir.\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/MenuNodeDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"i18nName\": \"voluptate nostrud dolor tempor magna\",\n \"name\": \"anim cupidatat nisi\",\n \"stateRef\": \"culpa\",\n \"createdBy\": \"in\",\n \"createdDate\": \"1978-04-04T12:05:05.663Z\",\n \"description\": \"ad\",\n \"icon\": \"sit\",\n \"id\": 68370051,\n \"lastModifiedBy\": \"in in mollit et\",\n \"lastModifiedDate\": \"1989-12-25T17:54:57.332Z\",\n \"leaf\": true,\n \"orderPriority\": -18568505,\n \"pageId\": -21388207,\n \"pageUrl\": \"nisi laboris reprehenderit in aliquip\",\n \"parentId\": 65310044,\n \"parentName\": \"culpa dolor ani\",\n \"status\": false,\n \"subMenus\": [],\n \"translation\": {\n \"name\": \"Duis sit vel\",\n \"createdBy\": \"ex in commodo aliqua\",\n \"createdDate\": \"1963-09-11T16:42:22.447Z\",\n \"defaultLang\": false,\n \"description\": \"repr\",\n \"id\": 77049490,\n \"langCode\": \"culpa ullamco Lor\",\n \"langId\": 10463993,\n \"langName\": \"dolore amet dolor\",\n \"lastModifiedBy\": \"dolor\",\n \"lastModifiedDate\": \"1969-02-19T15:46:42.928Z\",\n \"ownerId\": 58719235\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/MenuNodeDTO\"}],\"definitions\":{\"MenuNodeDTO\":{\"title\":\"MenuNodeDTO\",\"description\":\"Menulerin tanimlarinin yapildigi yerdir. @author The Aurora Developer team.\",\"required\":[\"i18nName\",\"name\",\"stateRef\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Menuye ait aciklama bilgisidir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"i18nName\":{\"description\":\"Menuye ait i18n bilgisidir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"icon\":{\"description\":\"Menunun isminin yaninda gorunecek icon yoludur. bu yol genelde bir url'dir veya dosya yoludur.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"leaf\":{\"description\":\"Menu dal mi, yaprak mi belirlemek icin kullanilir. eger true ise bunun altinda menu yoktur bu bir sayfayi acmak icin kullanilir. false ise ust menudur.\",\"type\":\"boolean\"},\"name\":{\"description\":\"Menuye ait isim bilgisidir. Menulerde gorunecek isimdir. Onemlidir.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Menunun listede goruntulenecek sirasidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"pageId\":{\"format\":\"int64\",\"description\":\"Menu Node page urllerle olan bagini gostermektedir.\",\"type\":\"integer\"},\"pageUrl\":{\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"string\"},\"parentId\":{\"format\":\"int64\",\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"integer\"},\"parentName\":{\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"string\"},\"stateRef\":{\"description\":\"Menunun acacagi state referans bilgisi Orn:#/visitor\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"status\":{\"description\":\"Aktif pasiflik bilgisidir.\",\"type\":\"boolean\"},\"subMenus\":{\"description\":\"Menulerin icerdigi alt menuleri listeler..\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/MenuNodeDTO\"}},\"translation\":{\"$ref\":\"#/definitions/MenuNodeLangDTO\"}}},\"MenuNodeLangDTO\":{\"title\":\"MenuNodeLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"langCode\":{\"description\":\"Dil kodu code bilgisinin icermektedir.\",\"type\":\"string\"},\"langId\":{\"format\":\"int64\",\"description\":\"Dil kodu id bilgisinin icermektedir.\",\"type\":\"integer\"},\"langName\":{\"description\":\"Dil kodu adidir.\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/MenuNodeDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"i18nName\": \"esse sed\",\n \"name\": \"quis\",\n \"stateRef\": \"irure\",\n \"createdBy\": \"laboris\",\n \"createdDate\": \"1974-11-30T03:55:15.655Z\",\n \"description\": \"in veniam\",\n \"icon\": \"minim consequat ut\",\n \"id\": -19637786,\n \"lastModifiedBy\": \"mollit cillum \",\n \"lastModifiedDate\": \"1967-09-27T23:02:46.838Z\",\n \"leaf\": true,\n \"orderPriority\": -96207262,\n \"pageId\": -43462780,\n \"pageUrl\": \"est Excepteur aliquip ipsum dolor\",\n \"parentId\": -7891548,\n \"parentName\": \"Excepteur\",\n \"status\": false,\n \"subMenus\": [],\n \"translation\": {\n \"name\": \"pariatur nostrud ullamco\",\n \"createdBy\": \"eiusmod ipsum sit dolor\",\n \"createdDate\": \"2002-01-14T04:53:56.939Z\",\n \"defaultLang\": false,\n \"description\": \"esse incididunt ex\",\n \"id\": 6289361,\n \"langCode\": \"occaecat\",\n \"langId\": 44205428,\n \"langName\": \"commodo pariatur nulla\",\n \"lastModifiedBy\": \"deserunt non in\",\n \"lastModifiedDate\": \"2013-06-16T04:41:32.209Z\",\n \"ownerId\": 666159\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/MenuNodeDTO\"}],\"definitions\":{\"MenuNodeDTO\":{\"title\":\"MenuNodeDTO\",\"description\":\"Menulerin tanimlarinin yapildigi yerdir. @author The Aurora Developer team.\",\"required\":[\"i18nName\",\"name\",\"stateRef\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Menuye ait aciklama bilgisidir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"i18nName\":{\"description\":\"Menuye ait i18n bilgisidir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"icon\":{\"description\":\"Menunun isminin yaninda gorunecek icon yoludur. bu yol genelde bir url'dir veya dosya yoludur.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"leaf\":{\"description\":\"Menu dal mi, yaprak mi belirlemek icin kullanilir. eger true ise bunun altinda menu yoktur bu bir sayfayi acmak icin kullanilir. false ise ust menudur.\",\"type\":\"boolean\"},\"name\":{\"description\":\"Menuye ait isim bilgisidir. Menulerde gorunecek isimdir. Onemlidir.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Menunun listede goruntulenecek sirasidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"pageId\":{\"format\":\"int64\",\"description\":\"Menu Node page urllerle olan bagini gostermektedir.\",\"type\":\"integer\"},\"pageUrl\":{\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"string\"},\"parentId\":{\"format\":\"int64\",\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"integer\"},\"parentName\":{\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"string\"},\"stateRef\":{\"description\":\"Menunun acacagi state referans bilgisi Orn:#/visitor\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"status\":{\"description\":\"Aktif pasiflik bilgisidir.\",\"type\":\"boolean\"},\"subMenus\":{\"description\":\"Menulerin icerdigi alt menuleri listeler..\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/MenuNodeDTO\"}},\"translation\":{\"$ref\":\"#/definitions/MenuNodeLangDTO\"}}},\"MenuNodeLangDTO\":{\"title\":\"MenuNodeLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"langCode\":{\"description\":\"Dil kodu code bilgisinin icermektedir.\",\"type\":\"string\"},\"langId\":{\"format\":\"int64\",\"description\":\"Dil kodu id bilgisinin icermektedir.\",\"type\":\"integer\"},\"langName\":{\"description\":\"Dil kodu adidir.\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/MenuNodeDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"i18nName\": \"sit\",\n \"name\": \"deserunt dolore commodo ni\",\n \"stateRef\": \"Excepteur ad\",\n \"createdBy\": \"in\",\n \"createdDate\": \"1994-10-07T08:11:02.067Z\",\n \"description\": \"commodo id voluptate eu dolor\",\n \"icon\": \"in in\",\n \"id\": 54193539,\n \"lastModifiedBy\": \"in sint Excepteur et \",\n \"lastModifiedDate\": \"1961-01-21T20:15:54.320Z\",\n \"leaf\": true,\n \"orderPriority\": -2190718,\n \"pageId\": -2279249,\n \"pageUrl\": \"Duis ullamco do\",\n \"parentId\": 68827895,\n \"parentName\": \"c\",\n \"status\": false,\n \"subMenus\": [],\n \"translation\": {\n \"name\": \"in deserunt\",\n \"createdBy\": \"pariatur consequat esse aliqua\",\n \"createdDate\": \"1999-07-29T15:01:25.229Z\",\n \"defaultLang\": false,\n \"description\": \"culpa sed est laborum\",\n \"id\": -13446303,\n \"langCode\": \"nostrud\",\n \"langId\": -82217174,\n \"langName\": \"sit ut\",\n \"lastModifiedBy\": \"deseru\",\n \"lastModifiedDate\": \"1946-04-14T06:24:37.175Z\",\n \"ownerId\": -90562055\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/MenuNodeDTO\"}],\"definitions\":{\"MenuNodeDTO\":{\"title\":\"MenuNodeDTO\",\"description\":\"Menulerin tanimlarinin yapildigi yerdir. @author The Aurora Developer team.\",\"required\":[\"i18nName\",\"name\",\"stateRef\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Menuye ait aciklama bilgisidir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"i18nName\":{\"description\":\"Menuye ait i18n bilgisidir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"icon\":{\"description\":\"Menunun isminin yaninda gorunecek icon yoludur. bu yol genelde bir url'dir veya dosya yoludur.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"leaf\":{\"description\":\"Menu dal mi, yaprak mi belirlemek icin kullanilir. eger true ise bunun altinda menu yoktur bu bir sayfayi acmak icin kullanilir. false ise ust menudur.\",\"type\":\"boolean\"},\"name\":{\"description\":\"Menuye ait isim bilgisidir. Menulerde gorunecek isimdir. Onemlidir.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Menunun listede goruntulenecek sirasidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"pageId\":{\"format\":\"int64\",\"description\":\"Menu Node page urllerle olan bagini gostermektedir.\",\"type\":\"integer\"},\"pageUrl\":{\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"string\"},\"parentId\":{\"format\":\"int64\",\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"integer\"},\"parentName\":{\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"string\"},\"stateRef\":{\"description\":\"Menunun acacagi state referans bilgisi Orn:#/visitor\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"status\":{\"description\":\"Aktif pasiflik bilgisidir.\",\"type\":\"boolean\"},\"subMenus\":{\"description\":\"Menulerin icerdigi alt menuleri listeler..\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/MenuNodeDTO\"}},\"translation\":{\"$ref\":\"#/definitions/MenuNodeLangDTO\"}}},\"MenuNodeLangDTO\":{\"title\":\"MenuNodeLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"langCode\":{\"description\":\"Dil kodu code bilgisinin icermektedir.\",\"type\":\"string\"},\"langId\":{\"format\":\"int64\",\"description\":\"Dil kodu id bilgisinin icermektedir.\",\"type\":\"integer\"},\"langName\":{\"description\":\"Dil kodu adidir.\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/MenuNodeDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"i18nName\": \"enim ipsum\",\n \"name\": \"nisi\",\n \"stateRef\": \"officia fugiat amet id\",\n \"createdBy\": \"incididunt culpa ipsum\",\n \"createdDate\": \"1983-03-01T15:45:43.608Z\",\n \"description\": \"aliquip\",\n \"icon\": \"id ullamco et reprehenderit tempor\",\n \"id\": 92485773,\n \"lastModifiedBy\": \"et reprehender\",\n \"lastModifiedDate\": \"1963-04-02T10:27:09.973Z\",\n \"leaf\": true,\n \"orderPriority\": -26213039,\n \"pageId\": 47354326,\n \"pageUrl\": \"Excepteur ips\",\n \"parentId\": 65145317,\n \"parentName\": \"labore anim occaecat officia exercitation\",\n \"status\": true,\n \"subMenus\": [],\n \"translation\": {\n \"name\": \"nostrud anim culpa Duis\",\n \"createdBy\": \"sit\",\n \"createdDate\": \"1969-06-24T04:39:54.263Z\",\n \"defaultLang\": false,\n \"description\": \"non culpa reprehenderit\",\n \"id\": 47349153,\n \"langCode\": \"magna\",\n \"langId\": 91951206,\n \"langName\": \"et ullamc\",\n \"lastModifiedBy\": \"officia elit minim anim\",\n \"lastModifiedDate\": \"2012-10-30T00:26:24.294Z\",\n \"ownerId\": -35214941\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/MenuNodeDTO\"}],\"definitions\":{\"MenuNodeDTO\":{\"title\":\"MenuNodeDTO\",\"description\":\"Menulerin tanimlarinin yapildigi yerdir. @author The Aurora Developer team.\",\"required\":[\"i18nName\",\"name\",\"stateRef\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Menuye ait aciklama bilgisidir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"i18nName\":{\"description\":\"Menuye ait i18n bilgisidir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"icon\":{\"description\":\"Menunun isminin yaninda gorunecek icon yoludur. bu yol genelde bir url'dir veya dosya yoludur.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"leaf\":{\"description\":\"Menu dal mi, yaprak mi belirlemek icin kullanilir. eger true ise bunun altinda menu yoktur bu bir sayfayi acmak icin kullanilir. false ise ust menudur.\",\"type\":\"boolean\"},\"name\":{\"description\":\"Menuye ait isim bilgisidir. Menulerde gorunecek isimdir. Onemlidir.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Menunun listede goruntulenecek sirasidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"pageId\":{\"format\":\"int64\",\"description\":\"Menu Node page urllerle olan bagini gostermektedir.\",\"type\":\"integer\"},\"pageUrl\":{\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"string\"},\"parentId\":{\"format\":\"int64\",\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"integer\"},\"parentName\":{\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"string\"},\"stateRef\":{\"description\":\"Menunun acacagi state referans bilgisi Orn:#/visitor\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"status\":{\"description\":\"Aktif pasiflik bilgisidir.\",\"type\":\"boolean\"},\"subMenus\":{\"description\":\"Menulerin icerdigi alt menuleri listeler..\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/MenuNodeDTO\"}},\"translation\":{\"$ref\":\"#/definitions/MenuNodeLangDTO\"}}},\"MenuNodeLangDTO\":{\"title\":\"MenuNodeLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"langCode\":{\"description\":\"Dil kodu code bilgisinin icermektedir.\",\"type\":\"string\"},\"langId\":{\"format\":\"int64\",\"description\":\"Dil kodu id bilgisinin icermektedir.\",\"type\":\"integer\"},\"langName\":{\"description\":\"Dil kodu adidir.\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/MenuNodeDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "createMenuNode" + }, + "id": { + "element": "string", + "content": "createMenuNodeUsingPOST" + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"i18nName\": \"irure pariatur do\",\n \"name\": \"commodo e\",\n \"stateRef\": \"fugiat veniam eu laborum\",\n \"createdBy\": \"pariatur\",\n \"createdDate\": \"1996-02-23T02:48:03.840Z\",\n \"description\": \"in dolore aliquip labore\",\n \"icon\": \"ex labore\",\n \"id\": 89262731,\n \"lastModifiedBy\": \"laborum ipsum velit minim dolor\",\n \"lastModifiedDate\": \"2007-10-15T04:44:10.360Z\",\n \"leaf\": false,\n \"orderPriority\": -79256251,\n \"pageId\": -3387389,\n \"pageUrl\": \"ea sunt\",\n \"parentId\": -8090889,\n \"parentName\": \"velit nulla\",\n \"status\": false,\n \"subMenus\": [],\n \"translation\": {\n \"name\": \"occaecat laboris sit\",\n \"createdBy\": \"esse minim mollit tempor exercitation\",\n \"createdDate\": \"1996-06-24T17:07:24.310Z\",\n \"defaultLang\": true,\n \"description\": \"dolor\",\n \"id\": 33684696,\n \"langCode\": \"nisi\",\n \"langId\": 84465642,\n \"langName\": \"amet nulla\",\n \"lastModifiedBy\": \"veniam nisi officia consectetur dolor\",\n \"lastModifiedDate\": \"1971-10-29T23:23:50.843Z\",\n \"ownerId\": 69652216\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/MenuNodeDTO\"}],\"definitions\":{\"MenuNodeDTO\":{\"title\":\"MenuNodeDTO\",\"description\":\"Menulerin tanimlarinin yapildigi yerdir. @author The Aurora Developer team.\",\"required\":[\"i18nName\",\"name\",\"stateRef\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Menuye ait aciklama bilgisidir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"i18nName\":{\"description\":\"Menuye ait i18n bilgisidir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"icon\":{\"description\":\"Menunun isminin yaninda gorunecek icon yoludur. bu yol genelde bir url'dir veya dosya yoludur.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"leaf\":{\"description\":\"Menu dal mi, yaprak mi belirlemek icin kullanilir. eger true ise bunun altinda menu yoktur bu bir sayfayi acmak icin kullanilir. false ise ust menudur.\",\"type\":\"boolean\"},\"name\":{\"description\":\"Menuye ait isim bilgisidir. Menulerde gorunecek isimdir. Onemlidir.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Menunun listede goruntulenecek sirasidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"pageId\":{\"format\":\"int64\",\"description\":\"Menu Node page urllerle olan bagini gostermektedir.\",\"type\":\"integer\"},\"pageUrl\":{\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"string\"},\"parentId\":{\"format\":\"int64\",\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"integer\"},\"parentName\":{\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"string\"},\"stateRef\":{\"description\":\"Menunun acacagi state referans bilgisi Orn:#/visitor\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"status\":{\"description\":\"Aktif pasiflik bilgisidir.\",\"type\":\"boolean\"},\"subMenus\":{\"description\":\"Menulerin icerdigi alt menuleri listeler..\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/MenuNodeDTO\"}},\"translation\":{\"$ref\":\"#/definitions/MenuNodeLangDTO\"}}},\"MenuNodeLangDTO\":{\"title\":\"MenuNodeLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"langCode\":{\"description\":\"Dil kodu code bilgisinin icermektedir.\",\"type\":\"string\"},\"langId\":{\"format\":\"int64\",\"description\":\"Dil kodu id bilgisinin icermektedir.\",\"type\":\"integer\"},\"langName\":{\"description\":\"Dil kodu adidir.\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/MenuNodeDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/MenuNodeDTO\"}],\"definitions\":{\"MenuNodeDTO\":{\"title\":\"MenuNodeDTO\",\"description\":\"Menulerin tanimlarinin yapildigi yerdir. @author The Aurora Developer team.\",\"required\":[\"i18nName\",\"name\",\"stateRef\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Menuye ait aciklama bilgisidir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"i18nName\":{\"description\":\"Menuye ait i18n bilgisidir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"icon\":{\"description\":\"Menunun isminin yaninda gorunecek icon yoludur. bu yol genelde bir url'dir veya dosya yoludur.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"leaf\":{\"description\":\"Menu dal mi, yaprak mi belirlemek icin kullanilir. eger true ise bunun altinda menu yoktur bu bir sayfayi acmak icin kullanilir. false ise ust menudur.\",\"type\":\"boolean\"},\"name\":{\"description\":\"Menuye ait isim bilgisidir. Menulerde gorunecek isimdir. Onemlidir.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Menunun listede goruntulenecek sirasidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"pageId\":{\"format\":\"int64\",\"description\":\"Menu Node page urllerle olan bagini gostermektedir.\",\"type\":\"integer\"},\"pageUrl\":{\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"string\"},\"parentId\":{\"format\":\"int64\",\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"integer\"},\"parentName\":{\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"string\"},\"stateRef\":{\"description\":\"Menunun acacagi state referans bilgisi Orn:#/visitor\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"status\":{\"description\":\"Aktif pasiflik bilgisidir.\",\"type\":\"boolean\"},\"subMenus\":{\"description\":\"Menulerin icerdigi alt menuleri listeler..\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/MenuNodeDTO\"}},\"translation\":{\"$ref\":\"#/definitions/MenuNodeLangDTO\"}}},\"MenuNodeLangDTO\":{\"title\":\"MenuNodeLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"langCode\":{\"description\":\"Dil kodu code bilgisinin icermektedir.\",\"type\":\"string\"},\"langId\":{\"format\":\"int64\",\"description\":\"Dil kodu id bilgisinin icermektedir.\",\"type\":\"integer\"},\"langName\":{\"description\":\"Dil kodu adidir.\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/MenuNodeDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"i18nName\": \"consectetur ut\",\n \"name\": \"veniam dolore ex in\",\n \"stateRef\": \"anim deserunt\",\n \"createdBy\": \"exercitation aliqua eiusmod ea pariatur\",\n \"createdDate\": \"1971-03-13T00:55:54.431Z\",\n \"description\": \"voluptate\",\n \"icon\": \"deserunt aute\",\n \"id\": 78060601,\n \"lastModifiedBy\": \"eu\",\n \"lastModifiedDate\": \"1969-08-20T17:19:50.723Z\",\n \"leaf\": false,\n \"orderPriority\": -53667041,\n \"pageId\": 48398802,\n \"pageUrl\": \"consequat in velit sed eu\",\n \"parentId\": 29644064,\n \"parentName\": \"adipisicing nostrud\",\n \"status\": false,\n \"subMenus\": [],\n \"translation\": {\n \"name\": \"ut eu in\",\n \"createdBy\": \"magna\",\n \"createdDate\": \"2011-08-10T15:16:21.008Z\",\n \"defaultLang\": false,\n \"description\": \"cillum proident exercitation irure\",\n \"id\": -15571084,\n \"langCode\": \"enim cupidatat Lorem\",\n \"langId\": 40090951,\n \"langName\": \"adipisicing exercitation\",\n \"lastModifiedBy\": \"id cupidatat culpa\",\n \"lastModifiedDate\": \"1983-05-29T11:09:34.364Z\",\n \"ownerId\": 80701901\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/MenuNodeDTO\"}],\"definitions\":{\"MenuNodeDTO\":{\"title\":\"MenuNodeDTO\",\"description\":\"Menulerin tanimlarinin yapildigi yerdir. @author The Aurora Developer team.\",\"required\":[\"i18nName\",\"name\",\"stateRef\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Menuye ait aciklama bilgisidir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"i18nName\":{\"description\":\"Menuye ait i18n bilgisidir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"icon\":{\"description\":\"Menunun isminin yaninda gorunecek icon yoludur. bu yol genelde bir url'dir veya dosya yoludur.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"leaf\":{\"description\":\"Menu dal mi, yaprak mi belirlemek icin kullanilir. eger true ise bunun altinda menu yoktur bu bir sayfayi acmak icin kullanilir. false ise ust menudur.\",\"type\":\"boolean\"},\"name\":{\"description\":\"Menuye ait isim bilgisidir. Menulerde gorunecek isimdir. Onemlidir.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Menunun listede goruntulenecek sirasidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"pageId\":{\"format\":\"int64\",\"description\":\"Menu Node page urllerle olan bagini gostermektedir.\",\"type\":\"integer\"},\"pageUrl\":{\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"string\"},\"parentId\":{\"format\":\"int64\",\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"integer\"},\"parentName\":{\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"string\"},\"stateRef\":{\"description\":\"Menunun acacagi state referans bilgisi Orn:#/visitor\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"status\":{\"description\":\"Aktif pasiflik bilgisidir.\",\"type\":\"boolean\"},\"subMenus\":{\"description\":\"Menulerin icerdigi alt menuleri listeler..\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/MenuNodeDTO\"}},\"translation\":{\"$ref\":\"#/definitions/MenuNodeLangDTO\"}}},\"MenuNodeLangDTO\":{\"title\":\"MenuNodeLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"langCode\":{\"description\":\"Dil kodu code bilgisinin icermektedir.\",\"type\":\"string\"},\"langId\":{\"format\":\"int64\",\"description\":\"Dil kodu id bilgisinin icermektedir.\",\"type\":\"integer\"},\"langName\":{\"description\":\"Dil kodu adidir.\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/MenuNodeDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"i18nName\": \"laborum commodo tempor elit\",\n \"name\": \"enim nisi consequat ipsum veniam\",\n \"stateRef\": \"dolore\",\n \"createdBy\": \"nulla laboris esse do fugiat\",\n \"createdDate\": \"1999-04-08T16:44:53.027Z\",\n \"description\": \"laborum adipisicing et do elit\",\n \"icon\": \"voluptate officia veniam ex incididunt\",\n \"id\": 47693595,\n \"lastModifiedBy\": \"ad irure Excepteur\",\n \"lastModifiedDate\": \"2009-01-17T17:47:47.633Z\",\n \"leaf\": true,\n \"orderPriority\": -52125862,\n \"pageId\": 76002746,\n \"pageUrl\": \"laborum ad ulla\",\n \"parentId\": -43147245,\n \"parentName\": \"id ex proident in\",\n \"status\": false,\n \"subMenus\": [],\n \"translation\": {\n \"name\": \"labore in\",\n \"createdBy\": \"es\",\n \"createdDate\": \"1949-05-01T00:37:54.448Z\",\n \"defaultLang\": true,\n \"description\": \"ullamco\",\n \"id\": 71387195,\n \"langCode\": \"cupidatat magna pariatur\",\n \"langId\": -41718557,\n \"langName\": \"quis tempor est ea\",\n \"lastModifiedBy\": \"laborum voluptate\",\n \"lastModifiedDate\": \"1989-03-30T04:04:19.560Z\",\n \"ownerId\": -48297489\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/MenuNodeDTO\"}],\"definitions\":{\"MenuNodeDTO\":{\"title\":\"MenuNodeDTO\",\"description\":\"Menulerin tanimlarinin yapildigi yerdir. @author The Aurora Developer team.\",\"required\":[\"i18nName\",\"name\",\"stateRef\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Menuye ait aciklama bilgisidir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"i18nName\":{\"description\":\"Menuye ait i18n bilgisidir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"icon\":{\"description\":\"Menunun isminin yaninda gorunecek icon yoludur. bu yol genelde bir url'dir veya dosya yoludur.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"leaf\":{\"description\":\"Menu dal mi, yaprak mi belirlemek icin kullanilir. eger true ise bunun altinda menu yoktur bu bir sayfayi acmak icin kullanilir. false ise ust menudur.\",\"type\":\"boolean\"},\"name\":{\"description\":\"Menuye ait isim bilgisidir. Menulerde gorunecek isimdir. Onemlidir.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Menunun listede goruntulenecek sirasidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"pageId\":{\"format\":\"int64\",\"description\":\"Menu Node page urllerle olan bagini gostermektedir.\",\"type\":\"integer\"},\"pageUrl\":{\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"string\"},\"parentId\":{\"format\":\"int64\",\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"integer\"},\"parentName\":{\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"string\"},\"stateRef\":{\"description\":\"Menunun acacagi state referans bilgisi Orn:#/visitor\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"status\":{\"description\":\"Aktif pasiflik bilgisidir.\",\"type\":\"boolean\"},\"subMenus\":{\"description\":\"Menulerin icerdigi alt menuleri listeler..\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/MenuNodeDTO\"}},\"translation\":{\"$ref\":\"#/definitions/MenuNodeLangDTO\"}}},\"MenuNodeLangDTO\":{\"title\":\"MenuNodeLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"langCode\":{\"description\":\"Dil kodu code bilgisinin icermektedir.\",\"type\":\"string\"},\"langId\":{\"format\":\"int64\",\"description\":\"Dil kodu id bilgisinin icermektedir.\",\"type\":\"integer\"},\"langName\":{\"description\":\"Dil kodu adidir.\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/MenuNodeDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"i18nName\": \"anim nulla\",\n \"name\": \"Ut occaecat dolore\",\n \"stateRef\": \"ea elit Excepteur\",\n \"createdBy\": \"in eiusmod ipsum Duis\",\n \"createdDate\": \"1963-05-31T05:52:57.942Z\",\n \"description\": \"laboris nostrud elit\",\n \"icon\": \"est\",\n \"id\": 2100751,\n \"lastModifiedBy\": \"Lorem incididunt\",\n \"lastModifiedDate\": \"1951-06-08T17:25:55.947Z\",\n \"leaf\": true,\n \"orderPriority\": -23386934,\n \"pageId\": 12163561,\n \"pageUrl\": \"nulla ut ea consectetur\",\n \"parentId\": -27112645,\n \"parentName\": \"exercitation qui \",\n \"status\": false,\n \"subMenus\": [],\n \"translation\": {\n \"name\": \"Excepteur minim Lorem n\",\n \"createdBy\": \"cillum Duis et\",\n \"createdDate\": \"1961-11-24T01:33:43.922Z\",\n \"defaultLang\": true,\n \"description\": \"ut id elit laboris\",\n \"id\": -60685901,\n \"langCode\": \"exercitation\",\n \"langId\": 70769443,\n \"langName\": \"do\",\n \"lastModifiedBy\": \"deserunt adipisicing commodo mollit exercitation\",\n \"lastModifiedDate\": \"1960-02-23T17:08:08.126Z\",\n \"ownerId\": -1626853\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/MenuNodeDTO\"}],\"definitions\":{\"MenuNodeDTO\":{\"title\":\"MenuNodeDTO\",\"description\":\"Menulerin tanimlarinin yapildigi yerdir. @author The Aurora Developer team.\",\"required\":[\"i18nName\",\"name\",\"stateRef\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Menuye ait aciklama bilgisidir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"i18nName\":{\"description\":\"Menuye ait i18n bilgisidir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"icon\":{\"description\":\"Menunun isminin yaninda gorunecek icon yoludur. bu yol genelde bir url'dir veya dosya yoludur.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"leaf\":{\"description\":\"Menu dal mi, yaprak mi belirlemek icin kullanilir. eger true ise bunun altinda menu yoktur bu bir sayfayi acmak icin kullanilir. false ise ust menudur.\",\"type\":\"boolean\"},\"name\":{\"description\":\"Menuye ait isim bilgisidir. Menulerde gorunecek isimdir. Onemlidir.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Menunun listede goruntulenecek sirasidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"pageId\":{\"format\":\"int64\",\"description\":\"Menu Node page urllerle olan bagini gostermektedir.\",\"type\":\"integer\"},\"pageUrl\":{\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"string\"},\"parentId\":{\"format\":\"int64\",\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"integer\"},\"parentName\":{\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"string\"},\"stateRef\":{\"description\":\"Menunun acacagi state referans bilgisi Orn:#/visitor\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"status\":{\"description\":\"Aktif pasiflik bilgisidir.\",\"type\":\"boolean\"},\"subMenus\":{\"description\":\"Menulerin icerdigi alt menuleri listeler..\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/MenuNodeDTO\"}},\"translation\":{\"$ref\":\"#/definitions/MenuNodeLangDTO\"}}},\"MenuNodeLangDTO\":{\"title\":\"MenuNodeLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"langCode\":{\"description\":\"Dil kodu code bilgisinin icermektedir.\",\"type\":\"string\"},\"langId\":{\"format\":\"int64\",\"description\":\"Dil kodu id bilgisinin icermektedir.\",\"type\":\"integer\"},\"langName\":{\"description\":\"Dil kodu adidir.\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/MenuNodeDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"i18nName\": \"labore in dolor\",\n \"name\": \"ex\",\n \"stateRef\": \"in ullamco ipsum aute\",\n \"createdBy\": \"nostrud dolore qui\",\n \"createdDate\": \"1964-10-17T10:20:31.820Z\",\n \"description\": \"minim aliqua proident reprehenderit\",\n \"icon\": \"pariatur\",\n \"id\": 37793019,\n \"lastModifiedBy\": \"cupidatat aliqua pariatur proident\",\n \"lastModifiedDate\": \"1992-11-15T08:00:47.914Z\",\n \"leaf\": false,\n \"orderPriority\": -86160046,\n \"pageId\": -93045646,\n \"pageUrl\": \"sed anim proident tempor consectetur\",\n \"parentId\": 90339743,\n \"parentName\": \"ullamco fugia\",\n \"status\": false,\n \"subMenus\": [],\n \"translation\": {\n \"name\": \"ul\",\n \"createdBy\": \"cillum aute deserunt quis\",\n \"createdDate\": \"1960-06-15T21:38:47.632Z\",\n \"defaultLang\": true,\n \"description\": \"id\",\n \"id\": 37934345,\n \"langCode\": \"nostrud ipsum ex\",\n \"langId\": -78077243,\n \"langName\": \"velit exercitation reprehenderit proident\",\n \"lastModifiedBy\": \"aute\",\n \"lastModifiedDate\": \"1970-07-27T10:39:56.580Z\",\n \"ownerId\": -81509459\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/MenuNodeDTO\"}],\"definitions\":{\"MenuNodeDTO\":{\"title\":\"MenuNodeDTO\",\"description\":\"Menulerin tanimlarinin yapildigi yerdir. @author The Aurora Developer team.\",\"required\":[\"i18nName\",\"name\",\"stateRef\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Menuye ait aciklama bilgisidir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"i18nName\":{\"description\":\"Menuye ait i18n bilgisidir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"icon\":{\"description\":\"Menunun isminin yaninda gorunecek icon yoludur. bu yol genelde bir url'dir veya dosya yoludur.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"leaf\":{\"description\":\"Menu dal mi, yaprak mi belirlemek icin kullanilir. eger true ise bunun altinda menu yoktur bu bir sayfayi acmak icin kullanilir. false ise ust menudur.\",\"type\":\"boolean\"},\"name\":{\"description\":\"Menuye ait isim bilgisidir. Menulerde gorunecek isimdir. Onemlidir.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Menunun listede goruntulenecek sirasidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"pageId\":{\"format\":\"int64\",\"description\":\"Menu Node page urllerle olan bagini gostermektedir.\",\"type\":\"integer\"},\"pageUrl\":{\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"string\"},\"parentId\":{\"format\":\"int64\",\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"integer\"},\"parentName\":{\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"string\"},\"stateRef\":{\"description\":\"Menunun acacagi state referans bilgisi Orn:#/visitor\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"status\":{\"description\":\"Aktif pasiflik bilgisidir.\",\"type\":\"boolean\"},\"subMenus\":{\"description\":\"Menulerin icerdigi alt menuleri listeler..\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/MenuNodeDTO\"}},\"translation\":{\"$ref\":\"#/definitions/MenuNodeLangDTO\"}}},\"MenuNodeLangDTO\":{\"title\":\"MenuNodeLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"langCode\":{\"description\":\"Dil kodu code bilgisinin icermektedir.\",\"type\":\"string\"},\"langId\":{\"format\":\"int64\",\"description\":\"Dil kodu id bilgisinin icermektedir.\",\"type\":\"integer\"},\"langName\":{\"description\":\"Dil kodu adidir.\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/MenuNodeDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/menu-nodes/count" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "countMenuNodes" + }, + "id": { + "element": "string", + "content": "countMenuNodesUsingGET" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/menu-nodes/count{?authorityId%2eequals,authorityId%2egreaterOrEqualThan,authorityId%2egreaterThan,authorityId%2ein*,authorityId%2elessOrEqualThan,authorityId%2elessThan,authorityId%2especified,description%2econtains,description%2eequals,description%2ein*,description%2especified,i18nName%2econtains,i18nName%2eequals,i18nName%2ein*,i18nName%2especified,icon%2econtains,icon%2eequals,icon%2ein*,icon%2especified,id%2eequals,id%2egreaterOrEqualThan,id%2egreaterThan,id%2ein*,id%2elessOrEqualThan,id%2elessThan,id%2especified,leaf%2eequals,leaf%2ein*,leaf%2especified,name%2econtains,name%2eequals,name%2ein*,name%2especified,orderPriority%2eequals,orderPriority%2egreaterOrEqualThan,orderPriority%2egreaterThan,orderPriority%2ein*,orderPriority%2elessOrEqualThan,orderPriority%2elessThan,orderPriority%2especified,pageId%2eequals,pageId%2egreaterOrEqualThan,pageId%2egreaterThan,pageId%2ein*,pageId%2elessOrEqualThan,pageId%2elessThan,pageId%2especified,parentId%2eequals,parentId%2egreaterOrEqualThan,parentId%2egreaterThan,parentId%2ein*,parentId%2elessOrEqualThan,parentId%2elessThan,parentId%2especified,stateRef%2econtains,stateRef%2eequals,stateRef%2ein*,stateRef%2especified,status%2eequals,status%2ein*,status%2especified,translationId%2eequals,translationId%2egreaterOrEqualThan,translationId%2egreaterThan,translationId%2ein*,translationId%2elessOrEqualThan,translationId%2elessThan,translationId%2especified}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "authorityId.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "authorityId.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "authorityId.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "authorityId.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "authorityId.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "authorityId.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "authorityId.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "i18nName.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "i18nName.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "i18nName.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "i18nName.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "icon.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "icon.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "icon.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "icon.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "leaf.equals" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "leaf.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "boolean" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "leaf.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "pageId.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "pageId.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "pageId.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "pageId.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "pageId.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "pageId.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "pageId.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "parentId.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "parentId.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "parentId.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "parentId.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "parentId.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "parentId.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "parentId.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "stateRef.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "stateRef.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "stateRef.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "stateRef.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status.equals" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "boolean" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.specified" + }, + "value": { + "element": "boolean" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"format\":\"int64\",\"type\":\"integer\"}" + }, + { + "element": "dataStructure", + "content": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'int64'" + } + } + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/menu-nodes/menus-by-current-user" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "menusByCurrentUser" + }, + "id": { + "element": "string", + "content": "menusByCurrentUserUsingGET" + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/MenuNodeDTO\"},\"definitions\":{\"MenuNodeDTO\":{\"title\":\"MenuNodeDTO\",\"description\":\"Menulerin tanimlarinin yapildigi yerdir. @author The Aurora Developer team.\",\"required\":[\"i18nName\",\"name\",\"stateRef\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Menuye ait aciklama bilgisidir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"i18nName\":{\"description\":\"Menuye ait i18n bilgisidir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"icon\":{\"description\":\"Menunun isminin yaninda gorunecek icon yoludur. bu yol genelde bir url'dir veya dosya yoludur.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"leaf\":{\"description\":\"Menu dal mi, yaprak mi belirlemek icin kullanilir. eger true ise bunun altinda menu yoktur bu bir sayfayi acmak icin kullanilir. false ise ust menudur.\",\"type\":\"boolean\"},\"name\":{\"description\":\"Menuye ait isim bilgisidir. Menulerde gorunecek isimdir. Onemlidir.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Menunun listede goruntulenecek sirasidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"pageId\":{\"format\":\"int64\",\"description\":\"Menu Node page urllerle olan bagini gostermektedir.\",\"type\":\"integer\"},\"pageUrl\":{\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"string\"},\"parentId\":{\"format\":\"int64\",\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"integer\"},\"parentName\":{\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"string\"},\"stateRef\":{\"description\":\"Menunun acacagi state referans bilgisi Orn:#/visitor\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"status\":{\"description\":\"Aktif pasiflik bilgisidir.\",\"type\":\"boolean\"},\"subMenus\":{\"description\":\"Menulerin icerdigi alt menuleri listeler..\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/MenuNodeDTO\"}},\"translation\":{\"$ref\":\"#/definitions/MenuNodeLangDTO\"}}},\"MenuNodeLangDTO\":{\"title\":\"MenuNodeLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"langCode\":{\"description\":\"Dil kodu code bilgisinin icermektedir.\",\"type\":\"string\"},\"langId\":{\"format\":\"int64\",\"description\":\"Dil kodu id bilgisinin icermektedir.\",\"type\":\"integer\"},\"langName\":{\"description\":\"Dil kodu adidir.\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/MenuNodeDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/menu-nodes/menus-by-userlogin" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "menusByUserLogin" + }, + "id": { + "element": "string", + "content": "menusByUserLoginUsingGET" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/menu-nodes/menus-by-userlogin{?userlogin}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "userlogin" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "userlogin" + }, + "value": { + "element": "string" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/MenuNodeDTO\"},\"definitions\":{\"MenuNodeDTO\":{\"title\":\"MenuNodeDTO\",\"description\":\"Menulerin tanimlarinin yapildigi yerdir. @author The Aurora Developer team.\",\"required\":[\"i18nName\",\"name\",\"stateRef\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Menuye ait aciklama bilgisidir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"i18nName\":{\"description\":\"Menuye ait i18n bilgisidir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"icon\":{\"description\":\"Menunun isminin yaninda gorunecek icon yoludur. bu yol genelde bir url'dir veya dosya yoludur.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"leaf\":{\"description\":\"Menu dal mi, yaprak mi belirlemek icin kullanilir. eger true ise bunun altinda menu yoktur bu bir sayfayi acmak icin kullanilir. false ise ust menudur.\",\"type\":\"boolean\"},\"name\":{\"description\":\"Menuye ait isim bilgisidir. Menulerde gorunecek isimdir. Onemlidir.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Menunun listede goruntulenecek sirasidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"pageId\":{\"format\":\"int64\",\"description\":\"Menu Node page urllerle olan bagini gostermektedir.\",\"type\":\"integer\"},\"pageUrl\":{\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"string\"},\"parentId\":{\"format\":\"int64\",\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"integer\"},\"parentName\":{\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"string\"},\"stateRef\":{\"description\":\"Menunun acacagi state referans bilgisi Orn:#/visitor\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"status\":{\"description\":\"Aktif pasiflik bilgisidir.\",\"type\":\"boolean\"},\"subMenus\":{\"description\":\"Menulerin icerdigi alt menuleri listeler..\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/MenuNodeDTO\"}},\"translation\":{\"$ref\":\"#/definitions/MenuNodeLangDTO\"}}},\"MenuNodeLangDTO\":{\"title\":\"MenuNodeLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"langCode\":{\"description\":\"Dil kodu code bilgisinin icermektedir.\",\"type\":\"string\"},\"langId\":{\"format\":\"int64\",\"description\":\"Dil kodu id bilgisinin icermektedir.\",\"type\":\"integer\"},\"langName\":{\"description\":\"Dil kodu adidir.\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/MenuNodeDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/menu-nodes/{id}" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getMenuNode" + }, + "id": { + "element": "string", + "content": "getMenuNodeUsingGET" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "id" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/MenuNodeDTO\"}],\"definitions\":{\"MenuNodeDTO\":{\"title\":\"MenuNodeDTO\",\"description\":\"Menulerin tanimlarinin yapildigi yerdir. @author The Aurora Developer team.\",\"required\":[\"i18nName\",\"name\",\"stateRef\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Menuye ait aciklama bilgisidir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"i18nName\":{\"description\":\"Menuye ait i18n bilgisidir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"icon\":{\"description\":\"Menunun isminin yaninda gorunecek icon yoludur. bu yol genelde bir url'dir veya dosya yoludur.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"leaf\":{\"description\":\"Menu dal mi, yaprak mi belirlemek icin kullanilir. eger true ise bunun altinda menu yoktur bu bir sayfayi acmak icin kullanilir. false ise ust menudur.\",\"type\":\"boolean\"},\"name\":{\"description\":\"Menuye ait isim bilgisidir. Menulerde gorunecek isimdir. Onemlidir.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Menunun listede goruntulenecek sirasidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"pageId\":{\"format\":\"int64\",\"description\":\"Menu Node page urllerle olan bagini gostermektedir.\",\"type\":\"integer\"},\"pageUrl\":{\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"string\"},\"parentId\":{\"format\":\"int64\",\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"integer\"},\"parentName\":{\"description\":\"Ust menu bilgisini icermektedir.\",\"type\":\"string\"},\"stateRef\":{\"description\":\"Menunun acacagi state referans bilgisi Orn:#/visitor\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"status\":{\"description\":\"Aktif pasiflik bilgisidir.\",\"type\":\"boolean\"},\"subMenus\":{\"description\":\"Menulerin icerdigi alt menuleri listeler..\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/MenuNodeDTO\"}},\"translation\":{\"$ref\":\"#/definitions/MenuNodeLangDTO\"}}},\"MenuNodeLangDTO\":{\"title\":\"MenuNodeLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"langCode\":{\"description\":\"Dil kodu code bilgisinin icermektedir.\",\"type\":\"string\"},\"langId\":{\"format\":\"int64\",\"description\":\"Dil kodu id bilgisinin icermektedir.\",\"type\":\"integer\"},\"langName\":{\"description\":\"Dil kodu adidir.\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/MenuNodeDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "deleteMenuNode" + }, + "id": { + "element": "string", + "content": "deleteMenuNodeUsingDELETE" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "id" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "204" + } + }, + "content": [ + { + "element": "copy", + "content": "No Content" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "category", + "meta": { + "title": { + "element": "string", + "content": "method-definition-resource" + }, + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "resourceGroup" + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Method Definition Resource" + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/method-definitions" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getAllMethodDefinitions" + }, + "id": { + "element": "string", + "content": "getAllMethodDefinitionsUsingGET" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/method-definitions{?className%2econtains,className%2eequals,className%2ein*,className%2especified,description%2econtains,description%2eequals,description%2ein*,description%2especified,fullName%2econtains,fullName%2eequals,fullName%2ein*,fullName%2especified,id%2eequals,id%2egreaterOrEqualThan,id%2egreaterThan,id%2ein*,id%2elessOrEqualThan,id%2elessThan,id%2especified,methodName%2econtains,methodName%2eequals,methodName%2ein*,methodName%2especified,orderPriority%2eequals,orderPriority%2egreaterOrEqualThan,orderPriority%2egreaterThan,orderPriority%2ein*,orderPriority%2elessOrEqualThan,orderPriority%2elessThan,orderPriority%2especified,packName%2econtains,packName%2eequals,packName%2ein*,packName%2especified,page,size,sort*,status%2eequals,status%2ein*,status%2especified,userFriendlyName%2econtains,userFriendlyName%2eequals,userFriendlyName%2ein*,userFriendlyName%2especified}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "className.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "className.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "className.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "className.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "fullName.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "fullName.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "fullName.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "fullName.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "methodName.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "methodName.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "methodName.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "methodName.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "packName.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "packName.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "packName.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "packName.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Page number of the requested page" + } + }, + "content": { + "key": { + "element": "string", + "content": "page" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Size of a page" + } + }, + "content": { + "key": { + "element": "string", + "content": "size" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported." + } + }, + "content": { + "key": { + "element": "string", + "content": "sort" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status.equals" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "boolean" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "userFriendlyName.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "userFriendlyName.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "userFriendlyName.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "userFriendlyName.specified" + }, + "value": { + "element": "boolean" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/MethodDefinitionDTO\"},\"definitions\":{\"MethodDefinitionDTO\":{\"title\":\"MethodDefinitionDTO\",\"description\":\"Uygulamaya disaridan -java disinda- erisilebilecek methodlar burada tanimlanir. Orn- rest methodlari Bu tanim sayesinde yetkilendirme, loglama vb.. yapilabilir. @author The Aurora Developer team.\",\"required\":[\"className\",\"fullName\",\"methodName\",\"packName\"],\"type\":\"object\",\"properties\":{\"className\":{\"description\":\"Class ismi. User, UserService, PersonServiceImpl gibi...\",\"maxLength\":250,\"minLength\":1,\"type\":\"string\"},\"description\":{\"description\":\"Methodun detayli aciklamasi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"fullName\":{\"description\":\"Methodun tam ismi. Package, class ve method isimlerinin birlesmis hali. tr.com.aurora.artes.User.getUserName\",\"maxLength\":1000,\"minLength\":1,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"methodName\":{\"description\":\"Method ismi. getUserName gibi...\",\"maxLength\":250,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"packName\":{\"description\":\"Java Paket ismi. tr.com.aurora.artes, tr.com.aurora.hbys.permission gibi...\",\"maxLength\":250,\"minLength\":1,\"type\":\"string\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi.\",\"type\":\"boolean\"},\"userFriendlyName\":{\"description\":\"Son kullanici tarafinda gorulup anlasilacak isim. eger bossa fullName goruntulenir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/MethodDefinitionDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "updateMethodDefinition" + }, + "id": { + "element": "string", + "content": "updateMethodDefinitionUsingPUT" + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"className\": \"Ut ipsum Lorem\",\n \"fullName\": \"do elit reprehenderit esse\",\n \"methodName\": \"pariatur do dolore\",\n \"packName\": \"ad minim\",\n \"description\": \"veniam est dolore in\",\n \"id\": 19965763,\n \"orderPriority\": -17710630,\n \"status\": true,\n \"userFriendlyName\": \"ullamco\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"MethodDefinitionDTO\",\"description\":\"Uygulamaya disaridan -java disinda- erisilebilecek methodlar burada tanimlanir. Orn- rest methodlari Bu tanim sayesinde yetkilendirme, loglama vb.. yapilabilir. @author The Aurora Developer team.\",\"required\":[\"className\",\"fullName\",\"methodName\",\"packName\"],\"type\":\"object\",\"properties\":{\"className\":{\"description\":\"Class ismi. User, UserService, PersonServiceImpl gibi...\",\"maxLength\":250,\"minLength\":1,\"type\":\"string\"},\"description\":{\"description\":\"Methodun detayli aciklamasi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"fullName\":{\"description\":\"Methodun tam ismi. Package, class ve method isimlerinin birlesmis hali. tr.com.aurora.artes.User.getUserName\",\"maxLength\":1000,\"minLength\":1,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"methodName\":{\"description\":\"Method ismi. getUserName gibi...\",\"maxLength\":250,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"packName\":{\"description\":\"Java Paket ismi. tr.com.aurora.artes, tr.com.aurora.hbys.permission gibi...\",\"maxLength\":250,\"minLength\":1,\"type\":\"string\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi.\",\"type\":\"boolean\"},\"userFriendlyName\":{\"description\":\"Son kullanici tarafinda gorulup anlasilacak isim. eger bossa fullName goruntulenir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/MethodDefinitionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"MethodDefinitionDTO\",\"description\":\"Uygulamaya disaridan -java disinda- erisilebilecek methodlar burada tanimlanir. Orn- rest methodlari Bu tanim sayesinde yetkilendirme, loglama vb.. yapilabilir. @author The Aurora Developer team.\",\"required\":[\"className\",\"fullName\",\"methodName\",\"packName\"],\"type\":\"object\",\"properties\":{\"className\":{\"description\":\"Class ismi. User, UserService, PersonServiceImpl gibi...\",\"maxLength\":250,\"minLength\":1,\"type\":\"string\"},\"description\":{\"description\":\"Methodun detayli aciklamasi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"fullName\":{\"description\":\"Methodun tam ismi. Package, class ve method isimlerinin birlesmis hali. tr.com.aurora.artes.User.getUserName\",\"maxLength\":1000,\"minLength\":1,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"methodName\":{\"description\":\"Method ismi. getUserName gibi...\",\"maxLength\":250,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"packName\":{\"description\":\"Java Paket ismi. tr.com.aurora.artes, tr.com.aurora.hbys.permission gibi...\",\"maxLength\":250,\"minLength\":1,\"type\":\"string\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi.\",\"type\":\"boolean\"},\"userFriendlyName\":{\"description\":\"Son kullanici tarafinda gorulup anlasilacak isim. eger bossa fullName goruntulenir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/MethodDefinitionDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"className\": \"proident veniam aliquip sunt laboris\",\n \"fullName\": \"sunt ut\",\n \"methodName\": \"fugiat\",\n \"packName\": \"dolore sint\",\n \"description\": \"voluptate Excepteur sint\",\n \"id\": -73939872,\n \"orderPriority\": -2577779,\n \"status\": true,\n \"userFriendlyName\": \"do eiusmod ex\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"MethodDefinitionDTO\",\"description\":\"Uygulamaya disaridan -java disinda- erisilebilecek methodlar burada tanimlanir. Orn- rest methodlari Bu tanim sayesinde yetkilendirme, loglama vb.. yapilabilir. @author The Aurora Developer team.\",\"required\":[\"className\",\"fullName\",\"methodName\",\"packName\"],\"type\":\"object\",\"properties\":{\"className\":{\"description\":\"Class ismi. User, UserService, PersonServiceImpl gibi...\",\"maxLength\":250,\"minLength\":1,\"type\":\"string\"},\"description\":{\"description\":\"Methodun detayli aciklamasi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"fullName\":{\"description\":\"Methodun tam ismi. Package, class ve method isimlerinin birlesmis hali. tr.com.aurora.artes.User.getUserName\",\"maxLength\":1000,\"minLength\":1,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"methodName\":{\"description\":\"Method ismi. getUserName gibi...\",\"maxLength\":250,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"packName\":{\"description\":\"Java Paket ismi. tr.com.aurora.artes, tr.com.aurora.hbys.permission gibi...\",\"maxLength\":250,\"minLength\":1,\"type\":\"string\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi.\",\"type\":\"boolean\"},\"userFriendlyName\":{\"description\":\"Son kullanici tarafinda gorulup anlasilacak isim. eger bossa fullName goruntulenir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/MethodDefinitionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"className\": \"exercitation cillum\",\n \"fullName\": \"Duis\",\n \"methodName\": \"quis magna dolore cillum\",\n \"packName\": \"eu ut aliqua pariatur non\",\n \"description\": \"sed qui in cupidatat in\",\n \"id\": -72877680,\n \"orderPriority\": -59117805,\n \"status\": false,\n \"userFriendlyName\": \"irure in id\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"MethodDefinitionDTO\",\"description\":\"Uygulamaya disaridan -java disinda- erisilebilecek methodlar burada tanimlanir. Orn- rest methodlari Bu tanim sayesinde yetkilendirme, loglama vb.. yapilabilir. @author The Aurora Developer team.\",\"required\":[\"className\",\"fullName\",\"methodName\",\"packName\"],\"type\":\"object\",\"properties\":{\"className\":{\"description\":\"Class ismi. User, UserService, PersonServiceImpl gibi...\",\"maxLength\":250,\"minLength\":1,\"type\":\"string\"},\"description\":{\"description\":\"Methodun detayli aciklamasi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"fullName\":{\"description\":\"Methodun tam ismi. Package, class ve method isimlerinin birlesmis hali. tr.com.aurora.artes.User.getUserName\",\"maxLength\":1000,\"minLength\":1,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"methodName\":{\"description\":\"Method ismi. getUserName gibi...\",\"maxLength\":250,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"packName\":{\"description\":\"Java Paket ismi. tr.com.aurora.artes, tr.com.aurora.hbys.permission gibi...\",\"maxLength\":250,\"minLength\":1,\"type\":\"string\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi.\",\"type\":\"boolean\"},\"userFriendlyName\":{\"description\":\"Son kullanici tarafinda gorulup anlasilacak isim. eger bossa fullName goruntulenir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/MethodDefinitionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"className\": \"amet enim Ut\",\n \"fullName\": \"ad cupidatat eiusmod\",\n \"methodName\": \"consectetur Duis velit in exercitation\",\n \"packName\": \"enim consectetur\",\n \"description\": \"consequat ipsum labore irure\",\n \"id\": 64664219,\n \"orderPriority\": -32750439,\n \"status\": true,\n \"userFriendlyName\": \"sed nisi non labore ipsum\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"MethodDefinitionDTO\",\"description\":\"Uygulamaya disaridan -java disinda- erisilebilecek methodlar burada tanimlanir. Orn- rest methodlari Bu tanim sayesinde yetkilendirme, loglama vb.. yapilabilir. @author The Aurora Developer team.\",\"required\":[\"className\",\"fullName\",\"methodName\",\"packName\"],\"type\":\"object\",\"properties\":{\"className\":{\"description\":\"Class ismi. User, UserService, PersonServiceImpl gibi...\",\"maxLength\":250,\"minLength\":1,\"type\":\"string\"},\"description\":{\"description\":\"Methodun detayli aciklamasi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"fullName\":{\"description\":\"Methodun tam ismi. Package, class ve method isimlerinin birlesmis hali. tr.com.aurora.artes.User.getUserName\",\"maxLength\":1000,\"minLength\":1,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"methodName\":{\"description\":\"Method ismi. getUserName gibi...\",\"maxLength\":250,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"packName\":{\"description\":\"Java Paket ismi. tr.com.aurora.artes, tr.com.aurora.hbys.permission gibi...\",\"maxLength\":250,\"minLength\":1,\"type\":\"string\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi.\",\"type\":\"boolean\"},\"userFriendlyName\":{\"description\":\"Son kullanici tarafinda gorulup anlasilacak isim. eger bossa fullName goruntulenir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/MethodDefinitionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"className\": \"in in\",\n \"fullName\": \"officia commodo\",\n \"methodName\": \"adipi\",\n \"packName\": \"ad incididunt magna labore eiusmod\",\n \"description\": \"nulla cupidatat\",\n \"id\": 74227652,\n \"orderPriority\": -1790281,\n \"status\": false,\n \"userFriendlyName\": \"cillum ut dolor officia magna\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"MethodDefinitionDTO\",\"description\":\"Uygulamaya disaridan -java disinda- erisilebilecek methodlar burada tanimlanir. Orn- rest methodlari Bu tanim sayesinde yetkilendirme, loglama vb.. yapilabilir. @author The Aurora Developer team.\",\"required\":[\"className\",\"fullName\",\"methodName\",\"packName\"],\"type\":\"object\",\"properties\":{\"className\":{\"description\":\"Class ismi. User, UserService, PersonServiceImpl gibi...\",\"maxLength\":250,\"minLength\":1,\"type\":\"string\"},\"description\":{\"description\":\"Methodun detayli aciklamasi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"fullName\":{\"description\":\"Methodun tam ismi. Package, class ve method isimlerinin birlesmis hali. tr.com.aurora.artes.User.getUserName\",\"maxLength\":1000,\"minLength\":1,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"methodName\":{\"description\":\"Method ismi. getUserName gibi...\",\"maxLength\":250,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"packName\":{\"description\":\"Java Paket ismi. tr.com.aurora.artes, tr.com.aurora.hbys.permission gibi...\",\"maxLength\":250,\"minLength\":1,\"type\":\"string\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi.\",\"type\":\"boolean\"},\"userFriendlyName\":{\"description\":\"Son kullanici tarafinda gorulup anlasilacak isim. eger bossa fullName goruntulenir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/MethodDefinitionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "createMethodDefinition" + }, + "id": { + "element": "string", + "content": "createMethodDefinitionUsingPOST" + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"className\": \"qui dolore voluptate\",\n \"fullName\": \"sunt ullamco anim qui ut\",\n \"methodName\": \"dolore id eiusmod cillum consectetur\",\n \"packName\": \"in incididunt nostrud sed id\",\n \"description\": \"nostrud ullamco in\",\n \"id\": 35149624,\n \"orderPriority\": -89270794,\n \"status\": false,\n \"userFriendlyName\": \"fugiat in quis\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"MethodDefinitionDTO\",\"description\":\"Uygulamaya disaridan -java disinda- erisilebilecek methodlar burada tanimlanir. Orn- rest methodlari Bu tanim sayesinde yetkilendirme, loglama vb.. yapilabilir. @author The Aurora Developer team.\",\"required\":[\"className\",\"fullName\",\"methodName\",\"packName\"],\"type\":\"object\",\"properties\":{\"className\":{\"description\":\"Class ismi. User, UserService, PersonServiceImpl gibi...\",\"maxLength\":250,\"minLength\":1,\"type\":\"string\"},\"description\":{\"description\":\"Methodun detayli aciklamasi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"fullName\":{\"description\":\"Methodun tam ismi. Package, class ve method isimlerinin birlesmis hali. tr.com.aurora.artes.User.getUserName\",\"maxLength\":1000,\"minLength\":1,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"methodName\":{\"description\":\"Method ismi. getUserName gibi...\",\"maxLength\":250,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"packName\":{\"description\":\"Java Paket ismi. tr.com.aurora.artes, tr.com.aurora.hbys.permission gibi...\",\"maxLength\":250,\"minLength\":1,\"type\":\"string\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi.\",\"type\":\"boolean\"},\"userFriendlyName\":{\"description\":\"Son kullanici tarafinda gorulup anlasilacak isim. eger bossa fullName goruntulenir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/MethodDefinitionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"MethodDefinitionDTO\",\"description\":\"Uygulamaya disaridan -java disinda- erisilebilecek methodlar burada tanimlanir. Orn- rest methodlari Bu tanim sayesinde yetkilendirme, loglama vb.. yapilabilir. @author The Aurora Developer team.\",\"required\":[\"className\",\"fullName\",\"methodName\",\"packName\"],\"type\":\"object\",\"properties\":{\"className\":{\"description\":\"Class ismi. User, UserService, PersonServiceImpl gibi...\",\"maxLength\":250,\"minLength\":1,\"type\":\"string\"},\"description\":{\"description\":\"Methodun detayli aciklamasi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"fullName\":{\"description\":\"Methodun tam ismi. Package, class ve method isimlerinin birlesmis hali. tr.com.aurora.artes.User.getUserName\",\"maxLength\":1000,\"minLength\":1,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"methodName\":{\"description\":\"Method ismi. getUserName gibi...\",\"maxLength\":250,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"packName\":{\"description\":\"Java Paket ismi. tr.com.aurora.artes, tr.com.aurora.hbys.permission gibi...\",\"maxLength\":250,\"minLength\":1,\"type\":\"string\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi.\",\"type\":\"boolean\"},\"userFriendlyName\":{\"description\":\"Son kullanici tarafinda gorulup anlasilacak isim. eger bossa fullName goruntulenir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/MethodDefinitionDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"className\": \"ullamco ex ad nostrud\",\n \"fullName\": \"dolore dolore labor\",\n \"methodName\": \"ut enim ex\",\n \"packName\": \"sit\",\n \"description\": \"magna\",\n \"id\": -25536485,\n \"orderPriority\": -97628544,\n \"status\": true,\n \"userFriendlyName\": \"sed tempor ea eu cillum\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"MethodDefinitionDTO\",\"description\":\"Uygulamaya disaridan -java disinda- erisilebilecek methodlar burada tanimlanir. Orn- rest methodlari Bu tanim sayesinde yetkilendirme, loglama vb.. yapilabilir. @author The Aurora Developer team.\",\"required\":[\"className\",\"fullName\",\"methodName\",\"packName\"],\"type\":\"object\",\"properties\":{\"className\":{\"description\":\"Class ismi. User, UserService, PersonServiceImpl gibi...\",\"maxLength\":250,\"minLength\":1,\"type\":\"string\"},\"description\":{\"description\":\"Methodun detayli aciklamasi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"fullName\":{\"description\":\"Methodun tam ismi. Package, class ve method isimlerinin birlesmis hali. tr.com.aurora.artes.User.getUserName\",\"maxLength\":1000,\"minLength\":1,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"methodName\":{\"description\":\"Method ismi. getUserName gibi...\",\"maxLength\":250,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"packName\":{\"description\":\"Java Paket ismi. tr.com.aurora.artes, tr.com.aurora.hbys.permission gibi...\",\"maxLength\":250,\"minLength\":1,\"type\":\"string\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi.\",\"type\":\"boolean\"},\"userFriendlyName\":{\"description\":\"Son kullanici tarafinda gorulup anlasilacak isim. eger bossa fullName goruntulenir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/MethodDefinitionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"className\": \"veniam Lorem\",\n \"fullName\": \"est tempor\",\n \"methodName\": \"velit cupidatat\",\n \"packName\": \"ad incididunt aliqua nostrud officia\",\n \"description\": \"commodo laboris\",\n \"id\": 75615421,\n \"orderPriority\": -22545491,\n \"status\": true,\n \"userFriendlyName\": \"anim mollit\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"MethodDefinitionDTO\",\"description\":\"Uygulamaya disaridan -java disinda- erisilebilecek methodlar burada tanimlanir. Orn- rest methodlari Bu tanim sayesinde yetkilendirme, loglama vb.. yapilabilir. @author The Aurora Developer team.\",\"required\":[\"className\",\"fullName\",\"methodName\",\"packName\"],\"type\":\"object\",\"properties\":{\"className\":{\"description\":\"Class ismi. User, UserService, PersonServiceImpl gibi...\",\"maxLength\":250,\"minLength\":1,\"type\":\"string\"},\"description\":{\"description\":\"Methodun detayli aciklamasi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"fullName\":{\"description\":\"Methodun tam ismi. Package, class ve method isimlerinin birlesmis hali. tr.com.aurora.artes.User.getUserName\",\"maxLength\":1000,\"minLength\":1,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"methodName\":{\"description\":\"Method ismi. getUserName gibi...\",\"maxLength\":250,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"packName\":{\"description\":\"Java Paket ismi. tr.com.aurora.artes, tr.com.aurora.hbys.permission gibi...\",\"maxLength\":250,\"minLength\":1,\"type\":\"string\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi.\",\"type\":\"boolean\"},\"userFriendlyName\":{\"description\":\"Son kullanici tarafinda gorulup anlasilacak isim. eger bossa fullName goruntulenir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/MethodDefinitionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"className\": \"ad nostrud eiusmod Ut in\",\n \"fullName\": \"nisi ullamco\",\n \"methodName\": \"do ea irure\",\n \"packName\": \"non do nisi tempor in\",\n \"description\": \"ea magna\",\n \"id\": 34391203,\n \"orderPriority\": -70231470,\n \"status\": true,\n \"userFriendlyName\": \"occaecat sint adipisicing amet\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"MethodDefinitionDTO\",\"description\":\"Uygulamaya disaridan -java disinda- erisilebilecek methodlar burada tanimlanir. Orn- rest methodlari Bu tanim sayesinde yetkilendirme, loglama vb.. yapilabilir. @author The Aurora Developer team.\",\"required\":[\"className\",\"fullName\",\"methodName\",\"packName\"],\"type\":\"object\",\"properties\":{\"className\":{\"description\":\"Class ismi. User, UserService, PersonServiceImpl gibi...\",\"maxLength\":250,\"minLength\":1,\"type\":\"string\"},\"description\":{\"description\":\"Methodun detayli aciklamasi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"fullName\":{\"description\":\"Methodun tam ismi. Package, class ve method isimlerinin birlesmis hali. tr.com.aurora.artes.User.getUserName\",\"maxLength\":1000,\"minLength\":1,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"methodName\":{\"description\":\"Method ismi. getUserName gibi...\",\"maxLength\":250,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"packName\":{\"description\":\"Java Paket ismi. tr.com.aurora.artes, tr.com.aurora.hbys.permission gibi...\",\"maxLength\":250,\"minLength\":1,\"type\":\"string\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi.\",\"type\":\"boolean\"},\"userFriendlyName\":{\"description\":\"Son kullanici tarafinda gorulup anlasilacak isim. eger bossa fullName goruntulenir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/MethodDefinitionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"className\": \"nisi no\",\n \"fullName\": \"voluptate ea id exercitation eu\",\n \"methodName\": \"mollit id\",\n \"packName\": \"nisi laborum sit pariatur\",\n \"description\": \"pariatur nostrud aliquip\",\n \"id\": 75122883,\n \"orderPriority\": -97211554,\n \"status\": false,\n \"userFriendlyName\": \"laboris\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"MethodDefinitionDTO\",\"description\":\"Uygulamaya disaridan -java disinda- erisilebilecek methodlar burada tanimlanir. Orn- rest methodlari Bu tanim sayesinde yetkilendirme, loglama vb.. yapilabilir. @author The Aurora Developer team.\",\"required\":[\"className\",\"fullName\",\"methodName\",\"packName\"],\"type\":\"object\",\"properties\":{\"className\":{\"description\":\"Class ismi. User, UserService, PersonServiceImpl gibi...\",\"maxLength\":250,\"minLength\":1,\"type\":\"string\"},\"description\":{\"description\":\"Methodun detayli aciklamasi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"fullName\":{\"description\":\"Methodun tam ismi. Package, class ve method isimlerinin birlesmis hali. tr.com.aurora.artes.User.getUserName\",\"maxLength\":1000,\"minLength\":1,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"methodName\":{\"description\":\"Method ismi. getUserName gibi...\",\"maxLength\":250,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"packName\":{\"description\":\"Java Paket ismi. tr.com.aurora.artes, tr.com.aurora.hbys.permission gibi...\",\"maxLength\":250,\"minLength\":1,\"type\":\"string\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi.\",\"type\":\"boolean\"},\"userFriendlyName\":{\"description\":\"Son kullanici tarafinda gorulup anlasilacak isim. eger bossa fullName goruntulenir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/MethodDefinitionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/method-definitions/count" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "countMethodDefinitions" + }, + "id": { + "element": "string", + "content": "countMethodDefinitionsUsingGET" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/method-definitions/count{?className%2econtains,className%2eequals,className%2ein*,className%2especified,description%2econtains,description%2eequals,description%2ein*,description%2especified,fullName%2econtains,fullName%2eequals,fullName%2ein*,fullName%2especified,id%2eequals,id%2egreaterOrEqualThan,id%2egreaterThan,id%2ein*,id%2elessOrEqualThan,id%2elessThan,id%2especified,methodName%2econtains,methodName%2eequals,methodName%2ein*,methodName%2especified,orderPriority%2eequals,orderPriority%2egreaterOrEqualThan,orderPriority%2egreaterThan,orderPriority%2ein*,orderPriority%2elessOrEqualThan,orderPriority%2elessThan,orderPriority%2especified,packName%2econtains,packName%2eequals,packName%2ein*,packName%2especified,status%2eequals,status%2ein*,status%2especified,userFriendlyName%2econtains,userFriendlyName%2eequals,userFriendlyName%2ein*,userFriendlyName%2especified}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "className.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "className.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "className.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "className.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "fullName.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "fullName.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "fullName.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "fullName.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "methodName.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "methodName.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "methodName.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "methodName.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "packName.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "packName.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "packName.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "packName.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status.equals" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "boolean" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "userFriendlyName.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "userFriendlyName.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "userFriendlyName.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "userFriendlyName.specified" + }, + "value": { + "element": "boolean" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"format\":\"int64\",\"type\":\"integer\"}" + }, + { + "element": "dataStructure", + "content": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'int64'" + } + } + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/method-definitions/{id}" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getMethodDefinition" + }, + "id": { + "element": "string", + "content": "getMethodDefinitionUsingGET" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "id" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"MethodDefinitionDTO\",\"description\":\"Uygulamaya disaridan -java disinda- erisilebilecek methodlar burada tanimlanir. Orn- rest methodlari Bu tanim sayesinde yetkilendirme, loglama vb.. yapilabilir. @author The Aurora Developer team.\",\"required\":[\"className\",\"fullName\",\"methodName\",\"packName\"],\"type\":\"object\",\"properties\":{\"className\":{\"description\":\"Class ismi. User, UserService, PersonServiceImpl gibi...\",\"maxLength\":250,\"minLength\":1,\"type\":\"string\"},\"description\":{\"description\":\"Methodun detayli aciklamasi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"fullName\":{\"description\":\"Methodun tam ismi. Package, class ve method isimlerinin birlesmis hali. tr.com.aurora.artes.User.getUserName\",\"maxLength\":1000,\"minLength\":1,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"methodName\":{\"description\":\"Method ismi. getUserName gibi...\",\"maxLength\":250,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"packName\":{\"description\":\"Java Paket ismi. tr.com.aurora.artes, tr.com.aurora.hbys.permission gibi...\",\"maxLength\":250,\"minLength\":1,\"type\":\"string\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi.\",\"type\":\"boolean\"},\"userFriendlyName\":{\"description\":\"Son kullanici tarafinda gorulup anlasilacak isim. eger bossa fullName goruntulenir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/MethodDefinitionDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "deleteMethodDefinition" + }, + "id": { + "element": "string", + "content": "deleteMethodDefinitionUsingDELETE" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "id" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "204" + } + }, + "content": [ + { + "element": "copy", + "content": "No Content" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "category", + "meta": { + "title": { + "element": "string", + "content": "page-definition-resource" + }, + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "resourceGroup" + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Page Definition Resource" + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/page-definitions" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getAllPageDefinitions" + }, + "id": { + "element": "string", + "content": "getAllPageDefinitionsUsingGET" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/page-definitions{?authorityId%2eequals,authorityId%2egreaterOrEqualThan,authorityId%2egreaterThan,authorityId%2ein*,authorityId%2elessOrEqualThan,authorityId%2elessThan,authorityId%2especified,description%2econtains,description%2eequals,description%2ein*,description%2especified,id%2eequals,id%2egreaterOrEqualThan,id%2egreaterThan,id%2ein*,id%2elessOrEqualThan,id%2elessThan,id%2especified,name%2econtains,name%2eequals,name%2ein*,name%2especified,page,parentId%2eequals,parentId%2egreaterOrEqualThan,parentId%2egreaterThan,parentId%2ein*,parentId%2elessOrEqualThan,parentId%2elessThan,parentId%2especified,shortName%2econtains,shortName%2eequals,shortName%2ein*,shortName%2especified,size,sort*,status%2eequals,status%2ein*,status%2especified,url%2econtains,url%2eequals,url%2ein*,url%2especified}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "authorityId.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "authorityId.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "authorityId.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "authorityId.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "authorityId.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "authorityId.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "authorityId.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Page number of the requested page" + } + }, + "content": { + "key": { + "element": "string", + "content": "page" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "parentId.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "parentId.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "parentId.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "parentId.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "parentId.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "parentId.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "parentId.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "shortName.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "shortName.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "shortName.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "shortName.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Size of a page" + } + }, + "content": { + "key": { + "element": "string", + "content": "size" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported." + } + }, + "content": { + "key": { + "element": "string", + "content": "sort" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status.equals" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "boolean" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "url.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "url.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "url.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "url.specified" + }, + "value": { + "element": "boolean" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/PageDefinitionDTO\"},\"definitions\":{\"PageDefinitionDTO\":{\"title\":\"PageDefinitionDTO\",\"description\":\"Web UI sayfa(route, url) bilgilerini saklanacagi yerdir. Optional, Uygulamamizdaki web page bilgileri hatta bu page lerin yetki kisitlamasida buradan yapilabilir. @author The Aurora Developer team.\",\"required\":[\"name\",\"url\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Uzun detayli aciklama bilgisi.\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Kendine has uniqe isim bilgisi. Sayfa ismi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"parentId\":{\"format\":\"int64\",\"description\":\"page url tanimlarinin birbiriyle olan parent child iliskisi\",\"type\":\"integer\"},\"parentName\":{\"type\":\"string\"},\"shortName\":{\"description\":\"Kisa isim bilgisi.\",\"maxLength\":30,\"minLength\":1,\"type\":\"string\"},\"status\":{\"description\":\"Aktiflik Pasiflik bilgisidir. Pasif ise erisime tamamen kapalidir.\",\"type\":\"boolean\"},\"url\":{\"description\":\"Sayfa veya sayfanin icindeki, servis cagrimi yapacak url bilgisidir. Sayfanin ana urlsi veya event icinde olabilir.\",\"maxLength\":1000,\"minLength\":1,\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/PageDefinitionDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "updatePageDefinition" + }, + "id": { + "element": "string", + "content": "updatePageDefinitionUsingPUT" + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"name\": \"Ut proident labor\",\n \"url\": \"occaecat\",\n \"createdBy\": \"sit qui\",\n \"createdDate\": \"1992-08-19T12:41:55.889Z\",\n \"description\": \"elit adipisicing aute aliquip\",\n \"id\": 33075649,\n \"lastModifiedBy\": \"consectetur anim irure\",\n \"lastModifiedDate\": \"2015-05-31T13:37:51.365Z\",\n \"parentId\": -2783312,\n \"parentName\": \"elit aliqua irure\",\n \"shortName\": \"ad laboris\",\n \"status\": true\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"PageDefinitionDTO\",\"description\":\"Web UI sayfa(route, url) bilgilerini saklanacagi yerdir. Optional, Uygulamamizdaki web page bilgileri hatta bu page lerin yetki kisitlamasida buradan yapilabilir. @author The Aurora Developer team.\",\"required\":[\"name\",\"url\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Uzun detayli aciklama bilgisi.\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Kendine has uniqe isim bilgisi. Sayfa ismi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"parentId\":{\"format\":\"int64\",\"description\":\"page url tanimlarinin birbiriyle olan parent child iliskisi\",\"type\":\"integer\"},\"parentName\":{\"type\":\"string\"},\"shortName\":{\"description\":\"Kisa isim bilgisi.\",\"maxLength\":30,\"minLength\":1,\"type\":\"string\"},\"status\":{\"description\":\"Aktiflik Pasiflik bilgisidir. Pasif ise erisime tamamen kapalidir.\",\"type\":\"boolean\"},\"url\":{\"description\":\"Sayfa veya sayfanin icindeki, servis cagrimi yapacak url bilgisidir. Sayfanin ana urlsi veya event icinde olabilir.\",\"maxLength\":1000,\"minLength\":1,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/PageDefinitionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"PageDefinitionDTO\",\"description\":\"Web UI sayfa(route, url) bilgilerini saklanacagi yerdir. Optional, Uygulamamizdaki web page bilgileri hatta bu page lerin yetki kisitlamasida buradan yapilabilir. @author The Aurora Developer team.\",\"required\":[\"name\",\"url\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Uzun detayli aciklama bilgisi.\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Kendine has uniqe isim bilgisi. Sayfa ismi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"parentId\":{\"format\":\"int64\",\"description\":\"page url tanimlarinin birbiriyle olan parent child iliskisi\",\"type\":\"integer\"},\"parentName\":{\"type\":\"string\"},\"shortName\":{\"description\":\"Kisa isim bilgisi.\",\"maxLength\":30,\"minLength\":1,\"type\":\"string\"},\"status\":{\"description\":\"Aktiflik Pasiflik bilgisidir. Pasif ise erisime tamamen kapalidir.\",\"type\":\"boolean\"},\"url\":{\"description\":\"Sayfa veya sayfanin icindeki, servis cagrimi yapacak url bilgisidir. Sayfanin ana urlsi veya event icinde olabilir.\",\"maxLength\":1000,\"minLength\":1,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/PageDefinitionDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"name\": \"eu tempor ad mollit aliquip\",\n \"url\": \"enim sint proident commodo veniam\",\n \"createdBy\": \"laborum\",\n \"createdDate\": \"1969-05-25T07:14:41.625Z\",\n \"description\": \"consectetur dolore et\",\n \"id\": 67044401,\n \"lastModifiedBy\": \"in ea non\",\n \"lastModifiedDate\": \"1997-10-01T19:41:52.163Z\",\n \"parentId\": 95200479,\n \"parentName\": \"consectetur sint\",\n \"shortName\": \"in\",\n \"status\": false\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"PageDefinitionDTO\",\"description\":\"Web UI sayfa(route, url) bilgilerini saklanacagi yerdir. Optional, Uygulamamizdaki web page bilgileri hatta bu page lerin yetki kisitlamasida buradan yapilabilir. @author The Aurora Developer team.\",\"required\":[\"name\",\"url\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Uzun detayli aciklama bilgisi.\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Kendine has uniqe isim bilgisi. Sayfa ismi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"parentId\":{\"format\":\"int64\",\"description\":\"page url tanimlarinin birbiriyle olan parent child iliskisi\",\"type\":\"integer\"},\"parentName\":{\"type\":\"string\"},\"shortName\":{\"description\":\"Kisa isim bilgisi.\",\"maxLength\":30,\"minLength\":1,\"type\":\"string\"},\"status\":{\"description\":\"Aktiflik Pasiflik bilgisidir. Pasif ise erisime tamamen kapalidir.\",\"type\":\"boolean\"},\"url\":{\"description\":\"Sayfa veya sayfanin icindeki, servis cagrimi yapacak url bilgisidir. Sayfanin ana urlsi veya event icinde olabilir.\",\"maxLength\":1000,\"minLength\":1,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/PageDefinitionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"name\": \"voluptate officia adipisicing veniam\",\n \"url\": \"Ut amet aliquip commodo\",\n \"createdBy\": \"aliquip\",\n \"createdDate\": \"1952-11-04T12:16:15.438Z\",\n \"description\": \"ad nisi\",\n \"id\": 79188090,\n \"lastModifiedBy\": \"deserunt velit consequat officia\",\n \"lastModifiedDate\": \"2009-03-19T20:09:23.306Z\",\n \"parentId\": 25288550,\n \"parentName\": \"officia cupidatat exercitation dolore\",\n \"shortName\": \"occaecat cup\",\n \"status\": true\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"PageDefinitionDTO\",\"description\":\"Web UI sayfa(route, url) bilgilerini saklanacagi yerdir. Optional, Uygulamamizdaki web page bilgileri hatta bu page lerin yetki kisitlamasida buradan yapilabilir. @author The Aurora Developer team.\",\"required\":[\"name\",\"url\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Uzun detayli aciklama bilgisi.\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Kendine has uniqe isim bilgisi. Sayfa ismi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"parentId\":{\"format\":\"int64\",\"description\":\"page url tanimlarinin birbiriyle olan parent child iliskisi\",\"type\":\"integer\"},\"parentName\":{\"type\":\"string\"},\"shortName\":{\"description\":\"Kisa isim bilgisi.\",\"maxLength\":30,\"minLength\":1,\"type\":\"string\"},\"status\":{\"description\":\"Aktiflik Pasiflik bilgisidir. Pasif ise erisime tamamen kapalidir.\",\"type\":\"boolean\"},\"url\":{\"description\":\"Sayfa veya sayfanin icindeki, servis cagrimi yapacak url bilgisidir. Sayfanin ana urlsi veya event icinde olabilir.\",\"maxLength\":1000,\"minLength\":1,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/PageDefinitionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"name\": \"adipisicing commodo\",\n \"url\": \"aliqua officia cupidatat et\",\n \"createdBy\": \"magna cillum Excepteur veniam nostrud\",\n \"createdDate\": \"1952-05-20T11:21:33.805Z\",\n \"description\": \"lab\",\n \"id\": 82918831,\n \"lastModifiedBy\": \"officia sed proident reprehenderit\",\n \"lastModifiedDate\": \"1940-08-26T22:49:50.364Z\",\n \"parentId\": 67430490,\n \"parentName\": \"elit\",\n \"shortName\": \"ir\",\n \"status\": true\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"PageDefinitionDTO\",\"description\":\"Web UI sayfa(route, url) bilgilerini saklanacagi yerdir. Optional, Uygulamamizdaki web page bilgileri hatta bu page lerin yetki kisitlamasida buradan yapilabilir. @author The Aurora Developer team.\",\"required\":[\"name\",\"url\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Uzun detayli aciklama bilgisi.\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Kendine has uniqe isim bilgisi. Sayfa ismi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"parentId\":{\"format\":\"int64\",\"description\":\"page url tanimlarinin birbiriyle olan parent child iliskisi\",\"type\":\"integer\"},\"parentName\":{\"type\":\"string\"},\"shortName\":{\"description\":\"Kisa isim bilgisi.\",\"maxLength\":30,\"minLength\":1,\"type\":\"string\"},\"status\":{\"description\":\"Aktiflik Pasiflik bilgisidir. Pasif ise erisime tamamen kapalidir.\",\"type\":\"boolean\"},\"url\":{\"description\":\"Sayfa veya sayfanin icindeki, servis cagrimi yapacak url bilgisidir. Sayfanin ana urlsi veya event icinde olabilir.\",\"maxLength\":1000,\"minLength\":1,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/PageDefinitionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"name\": \"sint est adipisici\",\n \"url\": \"est\",\n \"createdBy\": \"eu irure nostrud Lorem\",\n \"createdDate\": \"1971-11-29T22:44:42.154Z\",\n \"description\": \"in sit\",\n \"id\": 6182194,\n \"lastModifiedBy\": \"consequat culpa ut sunt\",\n \"lastModifiedDate\": \"1941-01-08T14:52:52.027Z\",\n \"parentId\": -49975870,\n \"parentName\": \"fugiat\",\n \"shortName\": \"mol\",\n \"status\": false\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"PageDefinitionDTO\",\"description\":\"Web UI sayfa(route, url) bilgilerini saklanacagi yerdir. Optional, Uygulamamizdaki web page bilgileri hatta bu page lerin yetki kisitlamasida buradan yapilabilir. @author The Aurora Developer team.\",\"required\":[\"name\",\"url\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Uzun detayli aciklama bilgisi.\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Kendine has uniqe isim bilgisi. Sayfa ismi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"parentId\":{\"format\":\"int64\",\"description\":\"page url tanimlarinin birbiriyle olan parent child iliskisi\",\"type\":\"integer\"},\"parentName\":{\"type\":\"string\"},\"shortName\":{\"description\":\"Kisa isim bilgisi.\",\"maxLength\":30,\"minLength\":1,\"type\":\"string\"},\"status\":{\"description\":\"Aktiflik Pasiflik bilgisidir. Pasif ise erisime tamamen kapalidir.\",\"type\":\"boolean\"},\"url\":{\"description\":\"Sayfa veya sayfanin icindeki, servis cagrimi yapacak url bilgisidir. Sayfanin ana urlsi veya event icinde olabilir.\",\"maxLength\":1000,\"minLength\":1,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/PageDefinitionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "createPageDefinition" + }, + "id": { + "element": "string", + "content": "createPageDefinitionUsingPOST" + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"name\": \"dolor\",\n \"url\": \"sit\",\n \"createdBy\": \"nisi\",\n \"createdDate\": \"1962-11-21T16:00:24.233Z\",\n \"description\": \"do\",\n \"id\": -56038913,\n \"lastModifiedBy\": \"ullamco\",\n \"lastModifiedDate\": \"1953-04-18T03:42:11.626Z\",\n \"parentId\": 43487480,\n \"parentName\": \"mollit do aliquip aute ea\",\n \"shortName\": \"irure qui\",\n \"status\": false\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"PageDefinitionDTO\",\"description\":\"Web UI sayfa(route, url) bilgilerini saklanacagi yerdir. Optional, Uygulamamizdaki web page bilgileri hatta bu page lerin yetki kisitlamasida buradan yapilabilir. @author The Aurora Developer team.\",\"required\":[\"name\",\"url\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Uzun detayli aciklama bilgisi.\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Kendine has uniqe isim bilgisi. Sayfa ismi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"parentId\":{\"format\":\"int64\",\"description\":\"page url tanimlarinin birbiriyle olan parent child iliskisi\",\"type\":\"integer\"},\"parentName\":{\"type\":\"string\"},\"shortName\":{\"description\":\"Kisa isim bilgisi.\",\"maxLength\":30,\"minLength\":1,\"type\":\"string\"},\"status\":{\"description\":\"Aktiflik Pasiflik bilgisidir. Pasif ise erisime tamamen kapalidir.\",\"type\":\"boolean\"},\"url\":{\"description\":\"Sayfa veya sayfanin icindeki, servis cagrimi yapacak url bilgisidir. Sayfanin ana urlsi veya event icinde olabilir.\",\"maxLength\":1000,\"minLength\":1,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/PageDefinitionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"PageDefinitionDTO\",\"description\":\"Web UI sayfa(route, url) bilgilerini saklanacagi yerdir. Optional, Uygulamamizdaki web page bilgileri hatta bu page lerin yetki kisitlamasida buradan yapilabilir. @author The Aurora Developer team.\",\"required\":[\"name\",\"url\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Uzun detayli aciklama bilgisi.\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Kendine has uniqe isim bilgisi. Sayfa ismi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"parentId\":{\"format\":\"int64\",\"description\":\"page url tanimlarinin birbiriyle olan parent child iliskisi\",\"type\":\"integer\"},\"parentName\":{\"type\":\"string\"},\"shortName\":{\"description\":\"Kisa isim bilgisi.\",\"maxLength\":30,\"minLength\":1,\"type\":\"string\"},\"status\":{\"description\":\"Aktiflik Pasiflik bilgisidir. Pasif ise erisime tamamen kapalidir.\",\"type\":\"boolean\"},\"url\":{\"description\":\"Sayfa veya sayfanin icindeki, servis cagrimi yapacak url bilgisidir. Sayfanin ana urlsi veya event icinde olabilir.\",\"maxLength\":1000,\"minLength\":1,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/PageDefinitionDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"name\": \"ullamco cillum anim es\",\n \"url\": \"in est\",\n \"createdBy\": \"aute dolore Excepteur\",\n \"createdDate\": \"1978-12-22T12:47:52.394Z\",\n \"description\": \"in sint quis\",\n \"id\": -90959927,\n \"lastModifiedBy\": \"in do minim\",\n \"lastModifiedDate\": \"1971-11-18T16:18:34.930Z\",\n \"parentId\": 14589639,\n \"parentName\": \"culpa\",\n \"shortName\": \"magna non Ut\",\n \"status\": true\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"PageDefinitionDTO\",\"description\":\"Web UI sayfa(route, url) bilgilerini saklanacagi yerdir. Optional, Uygulamamizdaki web page bilgileri hatta bu page lerin yetki kisitlamasida buradan yapilabilir. @author The Aurora Developer team.\",\"required\":[\"name\",\"url\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Uzun detayli aciklama bilgisi.\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Kendine has uniqe isim bilgisi. Sayfa ismi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"parentId\":{\"format\":\"int64\",\"description\":\"page url tanimlarinin birbiriyle olan parent child iliskisi\",\"type\":\"integer\"},\"parentName\":{\"type\":\"string\"},\"shortName\":{\"description\":\"Kisa isim bilgisi.\",\"maxLength\":30,\"minLength\":1,\"type\":\"string\"},\"status\":{\"description\":\"Aktiflik Pasiflik bilgisidir. Pasif ise erisime tamamen kapalidir.\",\"type\":\"boolean\"},\"url\":{\"description\":\"Sayfa veya sayfanin icindeki, servis cagrimi yapacak url bilgisidir. Sayfanin ana urlsi veya event icinde olabilir.\",\"maxLength\":1000,\"minLength\":1,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/PageDefinitionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"name\": \"dolore\",\n \"url\": \"reprehenderit veniam magna exercitation\",\n \"createdBy\": \"commodo ullamco consequat cupidatat reprehender\",\n \"createdDate\": \"2019-10-27T22:55:11.786Z\",\n \"description\": \"pariatur ipsum\",\n \"id\": 14409080,\n \"lastModifiedBy\": \"in laborum magna dolor\",\n \"lastModifiedDate\": \"1956-07-13T20:22:42.529Z\",\n \"parentId\": 72097305,\n \"parentName\": \"in\",\n \"shortName\": \"ut incidi\",\n \"status\": true\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"PageDefinitionDTO\",\"description\":\"Web UI sayfa(route, url) bilgilerini saklanacagi yerdir. Optional, Uygulamamizdaki web page bilgileri hatta bu page lerin yetki kisitlamasida buradan yapilabilir. @author The Aurora Developer team.\",\"required\":[\"name\",\"url\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Uzun detayli aciklama bilgisi.\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Kendine has uniqe isim bilgisi. Sayfa ismi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"parentId\":{\"format\":\"int64\",\"description\":\"page url tanimlarinin birbiriyle olan parent child iliskisi\",\"type\":\"integer\"},\"parentName\":{\"type\":\"string\"},\"shortName\":{\"description\":\"Kisa isim bilgisi.\",\"maxLength\":30,\"minLength\":1,\"type\":\"string\"},\"status\":{\"description\":\"Aktiflik Pasiflik bilgisidir. Pasif ise erisime tamamen kapalidir.\",\"type\":\"boolean\"},\"url\":{\"description\":\"Sayfa veya sayfanin icindeki, servis cagrimi yapacak url bilgisidir. Sayfanin ana urlsi veya event icinde olabilir.\",\"maxLength\":1000,\"minLength\":1,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/PageDefinitionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"name\": \"culpa dolor cillum Lorem in\",\n \"url\": \"labore anim velit\",\n \"createdBy\": \"cupidatat aliquip incididunt\",\n \"createdDate\": \"1966-05-26T06:15:35.710Z\",\n \"description\": \"qui\",\n \"id\": 24484188,\n \"lastModifiedBy\": \"dolor\",\n \"lastModifiedDate\": \"2014-08-17T18:07:41.471Z\",\n \"parentId\": -44972761,\n \"parentName\": \"eu eiusmod\",\n \"shortName\": \"sit pariatur Ut\",\n \"status\": false\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"PageDefinitionDTO\",\"description\":\"Web UI sayfa(route, url) bilgilerini saklanacagi yerdir. Optional, Uygulamamizdaki web page bilgileri hatta bu page lerin yetki kisitlamasida buradan yapilabilir. @author The Aurora Developer team.\",\"required\":[\"name\",\"url\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Uzun detayli aciklama bilgisi.\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Kendine has uniqe isim bilgisi. Sayfa ismi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"parentId\":{\"format\":\"int64\",\"description\":\"page url tanimlarinin birbiriyle olan parent child iliskisi\",\"type\":\"integer\"},\"parentName\":{\"type\":\"string\"},\"shortName\":{\"description\":\"Kisa isim bilgisi.\",\"maxLength\":30,\"minLength\":1,\"type\":\"string\"},\"status\":{\"description\":\"Aktiflik Pasiflik bilgisidir. Pasif ise erisime tamamen kapalidir.\",\"type\":\"boolean\"},\"url\":{\"description\":\"Sayfa veya sayfanin icindeki, servis cagrimi yapacak url bilgisidir. Sayfanin ana urlsi veya event icinde olabilir.\",\"maxLength\":1000,\"minLength\":1,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/PageDefinitionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"name\": \"veniam\",\n \"url\": \"sunt enim quis\",\n \"createdBy\": \"dolor officia id nostrud\",\n \"createdDate\": \"1943-03-15T16:35:05.945Z\",\n \"description\": \"ex Ut\",\n \"id\": -15183307,\n \"lastModifiedBy\": \"d\",\n \"lastModifiedDate\": \"1979-08-04T02:50:35.574Z\",\n \"parentId\": 23614402,\n \"parentName\": \"dolor laborum consectetur occaecat culpa\",\n \"shortName\": \"nul\",\n \"status\": true\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"PageDefinitionDTO\",\"description\":\"Web UI sayfa(route, url) bilgilerini saklanacagi yerdir. Optional, Uygulamamizdaki web page bilgileri hatta bu page lerin yetki kisitlamasida buradan yapilabilir. @author The Aurora Developer team.\",\"required\":[\"name\",\"url\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Uzun detayli aciklama bilgisi.\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Kendine has uniqe isim bilgisi. Sayfa ismi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"parentId\":{\"format\":\"int64\",\"description\":\"page url tanimlarinin birbiriyle olan parent child iliskisi\",\"type\":\"integer\"},\"parentName\":{\"type\":\"string\"},\"shortName\":{\"description\":\"Kisa isim bilgisi.\",\"maxLength\":30,\"minLength\":1,\"type\":\"string\"},\"status\":{\"description\":\"Aktiflik Pasiflik bilgisidir. Pasif ise erisime tamamen kapalidir.\",\"type\":\"boolean\"},\"url\":{\"description\":\"Sayfa veya sayfanin icindeki, servis cagrimi yapacak url bilgisidir. Sayfanin ana urlsi veya event icinde olabilir.\",\"maxLength\":1000,\"minLength\":1,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/PageDefinitionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/page-definitions/count" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "countPageDefinitions" + }, + "id": { + "element": "string", + "content": "countPageDefinitionsUsingGET" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/page-definitions/count{?authorityId%2eequals,authorityId%2egreaterOrEqualThan,authorityId%2egreaterThan,authorityId%2ein*,authorityId%2elessOrEqualThan,authorityId%2elessThan,authorityId%2especified,description%2econtains,description%2eequals,description%2ein*,description%2especified,id%2eequals,id%2egreaterOrEqualThan,id%2egreaterThan,id%2ein*,id%2elessOrEqualThan,id%2elessThan,id%2especified,name%2econtains,name%2eequals,name%2ein*,name%2especified,parentId%2eequals,parentId%2egreaterOrEqualThan,parentId%2egreaterThan,parentId%2ein*,parentId%2elessOrEqualThan,parentId%2elessThan,parentId%2especified,shortName%2econtains,shortName%2eequals,shortName%2ein*,shortName%2especified,status%2eequals,status%2ein*,status%2especified,url%2econtains,url%2eequals,url%2ein*,url%2especified}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "authorityId.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "authorityId.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "authorityId.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "authorityId.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "authorityId.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "authorityId.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "authorityId.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "parentId.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "parentId.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "parentId.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "parentId.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "parentId.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "parentId.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "parentId.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "shortName.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "shortName.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "shortName.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "shortName.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status.equals" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "boolean" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "url.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "url.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "url.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "url.specified" + }, + "value": { + "element": "boolean" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"format\":\"int64\",\"type\":\"integer\"}" + }, + { + "element": "dataStructure", + "content": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'int64'" + } + } + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/page-definitions/{id}" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getPageDefinition" + }, + "id": { + "element": "string", + "content": "getPageDefinitionUsingGET" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "id" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"PageDefinitionDTO\",\"description\":\"Web UI sayfa(route, url) bilgilerini saklanacagi yerdir. Optional, Uygulamamizdaki web page bilgileri hatta bu page lerin yetki kisitlamasida buradan yapilabilir. @author The Aurora Developer team.\",\"required\":[\"name\",\"url\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Uzun detayli aciklama bilgisi.\",\"maxLength\":4000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Kendine has uniqe isim bilgisi. Sayfa ismi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"parentId\":{\"format\":\"int64\",\"description\":\"page url tanimlarinin birbiriyle olan parent child iliskisi\",\"type\":\"integer\"},\"parentName\":{\"type\":\"string\"},\"shortName\":{\"description\":\"Kisa isim bilgisi.\",\"maxLength\":30,\"minLength\":1,\"type\":\"string\"},\"status\":{\"description\":\"Aktiflik Pasiflik bilgisidir. Pasif ise erisime tamamen kapalidir.\",\"type\":\"boolean\"},\"url\":{\"description\":\"Sayfa veya sayfanin icindeki, servis cagrimi yapacak url bilgisidir. Sayfanin ana urlsi veya event icinde olabilir.\",\"maxLength\":1000,\"minLength\":1,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/PageDefinitionDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "deletePageDefinition" + }, + "id": { + "element": "string", + "content": "deletePageDefinitionUsingDELETE" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "id" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "204" + } + }, + "content": [ + { + "element": "copy", + "content": "No Content" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/page-roles" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getPageRoles" + }, + "id": { + "element": "string", + "content": "getPageRolesUsingGET" + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/RouteRoleVM\"},\"definitions\":{\"RouteRoleVM\":{\"title\":\"RouteRoleVM\",\"type\":\"object\",\"properties\":{\"roles\":{\"type\":\"array\",\"items\":{\"type\":\"string\"}},\"routeUrl\":{\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/RouteRoleVM" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "category", + "meta": { + "title": { + "element": "string", + "content": "user-jwt-controller" + }, + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "resourceGroup" + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "User JWT Controller" + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/pre-authenticate" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "preAuthenticate" + }, + "id": { + "element": "string", + "content": "preAuthenticateUsingPOST" + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"password\": \"elit Ut eu ex\",\n \"username\": \"n\",\n \"channel\": \"MOBILE_APP\",\n \"rememberMe\": true,\n \"secretCode\": \"ipsum incididunt\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"LoginVM\",\"required\":[\"password\",\"username\"],\"type\":\"object\",\"properties\":{\"channel\":{\"enum\":[\"MAIL\",\"MOBILE_APP\"],\"type\":\"string\"},\"password\":{\"maxLength\":100,\"minLength\":4,\"type\":\"string\"},\"rememberMe\":{\"type\":\"boolean\"},\"secretCode\":{\"type\":\"string\"},\"username\":{\"maxLength\":50,\"minLength\":1,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/LoginVM" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"password\": \"Lorem aliquip elit nisi ut\",\n \"username\": \"Ut\",\n \"channel\": \"MAIL\",\n \"rememberMe\": true,\n \"secretCode\": \"adipisicing amet reprehenderit ea nostrud\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"LoginVM\",\"required\":[\"password\",\"username\"],\"type\":\"object\",\"properties\":{\"channel\":{\"enum\":[\"MAIL\",\"MOBILE_APP\"],\"type\":\"string\"},\"password\":{\"maxLength\":100,\"minLength\":4,\"type\":\"string\"},\"rememberMe\":{\"type\":\"boolean\"},\"secretCode\":{\"type\":\"string\"},\"username\":{\"maxLength\":50,\"minLength\":1,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/LoginVM" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"password\": \"esse dolore\",\n \"username\": \"cons\",\n \"channel\": \"MAIL\",\n \"rememberMe\": false,\n \"secretCode\": \"velit eu veniam exercitation\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"LoginVM\",\"required\":[\"password\",\"username\"],\"type\":\"object\",\"properties\":{\"channel\":{\"enum\":[\"MAIL\",\"MOBILE_APP\"],\"type\":\"string\"},\"password\":{\"maxLength\":100,\"minLength\":4,\"type\":\"string\"},\"rememberMe\":{\"type\":\"boolean\"},\"secretCode\":{\"type\":\"string\"},\"username\":{\"maxLength\":50,\"minLength\":1,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/LoginVM" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"password\": \"eiusmod ullamco dolore Duis voluptate\",\n \"username\": \"laboris dolore quis ad e\",\n \"channel\": \"MOBILE_APP\",\n \"rememberMe\": true,\n \"secretCode\": \"anim\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"LoginVM\",\"required\":[\"password\",\"username\"],\"type\":\"object\",\"properties\":{\"channel\":{\"enum\":[\"MAIL\",\"MOBILE_APP\"],\"type\":\"string\"},\"password\":{\"maxLength\":100,\"minLength\":4,\"type\":\"string\"},\"rememberMe\":{\"type\":\"boolean\"},\"secretCode\":{\"type\":\"string\"},\"username\":{\"maxLength\":50,\"minLength\":1,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/LoginVM" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"password\": \"aute nostrud commodo voluptate\",\n \"username\": \"nulla eu laboris\",\n \"channel\": \"MOBILE_APP\",\n \"rememberMe\": false,\n \"secretCode\": \"qui\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"LoginVM\",\"required\":[\"password\",\"username\"],\"type\":\"object\",\"properties\":{\"channel\":{\"enum\":[\"MAIL\",\"MOBILE_APP\"],\"type\":\"string\"},\"password\":{\"maxLength\":100,\"minLength\":4,\"type\":\"string\"},\"rememberMe\":{\"type\":\"boolean\"},\"secretCode\":{\"type\":\"string\"},\"username\":{\"maxLength\":50,\"minLength\":1,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/LoginVM" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "category", + "meta": { + "title": { + "element": "string", + "content": "reference-code-resource" + }, + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "resourceGroup" + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Reference Code Resource" + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/reference-codes" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getAllReferenceCodes" + }, + "id": { + "element": "string", + "content": "getAllReferenceCodesUsingGET" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/reference-codes{?id%2eequals,id%2egreaterOrEqualThan,id%2egreaterThan,id%2ein*,id%2elessOrEqualThan,id%2elessThan,id%2especified,orderPriority%2eequals,orderPriority%2egreaterOrEqualThan,orderPriority%2egreaterThan,orderPriority%2ein*,orderPriority%2elessOrEqualThan,orderPriority%2elessThan,orderPriority%2especified,page,size,sort*,status%2eequals,status%2ein*,status%2especified,translationId%2eequals,translationId%2egreaterOrEqualThan,translationId%2egreaterThan,translationId%2ein*,translationId%2elessOrEqualThan,translationId%2elessThan,translationId%2especified,typeId%2eequals,typeId%2egreaterOrEqualThan,typeId%2egreaterThan,typeId%2ein*,typeId%2elessOrEqualThan,typeId%2elessThan,typeId%2especified}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Page number of the requested page" + } + }, + "content": { + "key": { + "element": "string", + "content": "page" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Size of a page" + } + }, + "content": { + "key": { + "element": "string", + "content": "size" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported." + } + }, + "content": { + "key": { + "element": "string", + "content": "sort" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status.equals" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "boolean" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "typeId.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "typeId.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "typeId.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "typeId.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "typeId.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "typeId.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "typeId.specified" + }, + "value": { + "element": "boolean" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ReferenceCodeDTO\"},\"definitions\":{\"ReferenceCodeDTO\":{\"title\":\"ReferenceCodeDTO\",\"description\":\"Uyguluma icinde kullanilacak Ortak Referans kodlarini icerir. Referans Tipleri tablosuyla ManyToOne iliskisi vardir. Aylar:Ocak..Aralik, Gunler:Pazartesi...Pazar, cinsiyetler, @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"aktiflik pasiflik bilgisidir.\",\"type\":\"boolean\"},\"translation\":{\"$ref\":\"#/definitions/ReferenceCodeLangDTO\"},\"typeId\":{\"format\":\"int64\",\"description\":\"Referans Tipi\",\"type\":\"integer\"}}},\"ReferenceCodeLangDTO\":{\"title\":\"ReferenceCodeLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"langCode\":{\"description\":\"Dil kod bilgisi.\",\"type\":\"string\"},\"langId\":{\"format\":\"int64\",\"description\":\"Dil kodu bilgisinin icermektedir.\",\"type\":\"integer\"},\"langName\":{\"description\":\"Dil kodu adidir.\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/ReferenceCodeDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "updateReferenceCode" + }, + "id": { + "element": "string", + "content": "updateReferenceCodeUsingPUT" + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"quis est ea nostru\",\n \"createdDate\": \"1982-03-10T07:05:44.238Z\",\n \"id\": 63904022,\n \"lastModifiedBy\": \"ad in\",\n \"lastModifiedDate\": \"1984-12-28T12:09:27.330Z\",\n \"orderPriority\": -23944611,\n \"status\": false,\n \"translation\": {\n \"name\": \"consequat\",\n \"createdBy\": \"qui\",\n \"createdDate\": \"1942-05-24T09:55:42.518Z\",\n \"defaultLang\": true,\n \"description\": \"aliqua voluptate sed irure\",\n \"id\": 88012782,\n \"langCode\": \"in\",\n \"langId\": -64704190,\n \"langName\": \"nulla eiusmod culpa\",\n \"lastModifiedBy\": \"reprehenderit\",\n \"lastModifiedDate\": \"1954-04-04T01:43:56.823Z\",\n \"ownerId\": -25885261\n },\n \"typeId\": -24471086\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/ReferenceCodeDTO\"}],\"definitions\":{\"ReferenceCodeDTO\":{\"title\":\"ReferenceCodeDTO\",\"description\":\"Uyguluma icinde kullanilacak Ortak Referans kodlarini icerir. Referans Tipleri tablosuyla ManyToOne iliskisi vardir. Aylar:Ocak..Aralik, Gunler:Pazartesi...Pazar, cinsiyetler, @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"aktiflik pasiflik bilgisidir.\",\"type\":\"boolean\"},\"translation\":{\"$ref\":\"#/definitions/ReferenceCodeLangDTO\"},\"typeId\":{\"format\":\"int64\",\"description\":\"Referans Tipi\",\"type\":\"integer\"}}},\"ReferenceCodeLangDTO\":{\"title\":\"ReferenceCodeLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"langCode\":{\"description\":\"Dil kod bilgisi.\",\"type\":\"string\"},\"langId\":{\"format\":\"int64\",\"description\":\"Dil kodu bilgisinin icermektedir.\",\"type\":\"integer\"},\"langName\":{\"description\":\"Dil kodu adidir.\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ReferenceCodeDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/ReferenceCodeDTO\"}],\"definitions\":{\"ReferenceCodeDTO\":{\"title\":\"ReferenceCodeDTO\",\"description\":\"Uyguluma icinde kullanilacak Ortak Referans kodlarini icerir. Referans Tipleri tablosuyla ManyToOne iliskisi vardir. Aylar:Ocak..Aralik, Gunler:Pazartesi...Pazar, cinsiyetler, @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"aktiflik pasiflik bilgisidir.\",\"type\":\"boolean\"},\"translation\":{\"$ref\":\"#/definitions/ReferenceCodeLangDTO\"},\"typeId\":{\"format\":\"int64\",\"description\":\"Referans Tipi\",\"type\":\"integer\"}}},\"ReferenceCodeLangDTO\":{\"title\":\"ReferenceCodeLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"langCode\":{\"description\":\"Dil kod bilgisi.\",\"type\":\"string\"},\"langId\":{\"format\":\"int64\",\"description\":\"Dil kodu bilgisinin icermektedir.\",\"type\":\"integer\"},\"langName\":{\"description\":\"Dil kodu adidir.\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ReferenceCodeDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"mollit\",\n \"createdDate\": \"1962-09-10T00:15:53.609Z\",\n \"id\": -41707575,\n \"lastModifiedBy\": \"magna elit voluptate tempor\",\n \"lastModifiedDate\": \"1994-06-02T02:20:57.744Z\",\n \"orderPriority\": -31113730,\n \"status\": false,\n \"translation\": {\n \"name\": \"ut\",\n \"createdBy\": \"nostrud\",\n \"createdDate\": \"1978-03-19T04:30:38.031Z\",\n \"defaultLang\": true,\n \"description\": \"sit tempor in dolor eiusmod\",\n \"id\": -3341580,\n \"langCode\": \"nulla cillum aliqua in cupida\",\n \"langId\": 5061978,\n \"langName\": \"Duis velit\",\n \"lastModifiedBy\": \"Ut cillu\",\n \"lastModifiedDate\": \"1954-06-09T13:01:04.734Z\",\n \"ownerId\": 72161349\n },\n \"typeId\": 93587821\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/ReferenceCodeDTO\"}],\"definitions\":{\"ReferenceCodeDTO\":{\"title\":\"ReferenceCodeDTO\",\"description\":\"Uyguluma icinde kullanilacak Ortak Referans kodlarini icerir. Referans Tipleri tablosuyla ManyToOne iliskisi vardir. Aylar:Ocak..Aralik, Gunler:Pazartesi...Pazar, cinsiyetler, @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"aktiflik pasiflik bilgisidir.\",\"type\":\"boolean\"},\"translation\":{\"$ref\":\"#/definitions/ReferenceCodeLangDTO\"},\"typeId\":{\"format\":\"int64\",\"description\":\"Referans Tipi\",\"type\":\"integer\"}}},\"ReferenceCodeLangDTO\":{\"title\":\"ReferenceCodeLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"langCode\":{\"description\":\"Dil kod bilgisi.\",\"type\":\"string\"},\"langId\":{\"format\":\"int64\",\"description\":\"Dil kodu bilgisinin icermektedir.\",\"type\":\"integer\"},\"langName\":{\"description\":\"Dil kodu adidir.\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ReferenceCodeDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"elit dolore ea\",\n \"createdDate\": \"1962-09-18T06:07:16.986Z\",\n \"id\": -31953126,\n \"lastModifiedBy\": \"deserunt\",\n \"lastModifiedDate\": \"1953-04-29T22:28:56.712Z\",\n \"orderPriority\": -89185458,\n \"status\": false,\n \"translation\": {\n \"name\": \"fugiat\",\n \"createdBy\": \"et\",\n \"createdDate\": \"2012-08-14T01:25:35.680Z\",\n \"defaultLang\": false,\n \"description\": \"enim veniam dolore fugiat laboris\",\n \"id\": -91212578,\n \"langCode\": \"Lorem nisi id dolor commodo\",\n \"langId\": -23073383,\n \"langName\": \"l\",\n \"lastModifiedBy\": \"anim in\",\n \"lastModifiedDate\": \"2017-09-02T04:06:04.814Z\",\n \"ownerId\": -49843250\n },\n \"typeId\": 49631981\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/ReferenceCodeDTO\"}],\"definitions\":{\"ReferenceCodeDTO\":{\"title\":\"ReferenceCodeDTO\",\"description\":\"Uyguluma icinde kullanilacak Ortak Referans kodlarini icerir. Referans Tipleri tablosuyla ManyToOne iliskisi vardir. Aylar:Ocak..Aralik, Gunler:Pazartesi...Pazar, cinsiyetler, @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"aktiflik pasiflik bilgisidir.\",\"type\":\"boolean\"},\"translation\":{\"$ref\":\"#/definitions/ReferenceCodeLangDTO\"},\"typeId\":{\"format\":\"int64\",\"description\":\"Referans Tipi\",\"type\":\"integer\"}}},\"ReferenceCodeLangDTO\":{\"title\":\"ReferenceCodeLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"langCode\":{\"description\":\"Dil kod bilgisi.\",\"type\":\"string\"},\"langId\":{\"format\":\"int64\",\"description\":\"Dil kodu bilgisinin icermektedir.\",\"type\":\"integer\"},\"langName\":{\"description\":\"Dil kodu adidir.\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ReferenceCodeDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"labore ex\",\n \"createdDate\": \"1962-09-01T19:19:23.971Z\",\n \"id\": 31933274,\n \"lastModifiedBy\": \"nostrud ullamco Excepteur aliquip mol\",\n \"lastModifiedDate\": \"2018-01-12T11:00:42.142Z\",\n \"orderPriority\": -37538471,\n \"status\": false,\n \"translation\": {\n \"name\": \"cu\",\n \"createdBy\": \"reprehenderit consequat nisi culpa\",\n \"createdDate\": \"1941-08-07T03:04:15.773Z\",\n \"defaultLang\": true,\n \"description\": \"ex laboris occaecat mollit eu\",\n \"id\": -83348719,\n \"langCode\": \"sunt\",\n \"langId\": 39120223,\n \"langName\": \"dolor adipisicing\",\n \"lastModifiedBy\": \"ullamco nisi\",\n \"lastModifiedDate\": \"2006-07-15T23:47:21.470Z\",\n \"ownerId\": 84657852\n },\n \"typeId\": -84911225\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/ReferenceCodeDTO\"}],\"definitions\":{\"ReferenceCodeDTO\":{\"title\":\"ReferenceCodeDTO\",\"description\":\"Uyguluma icinde kullanilacak Ortak Referans kodlarini icerir. Referans Tipleri tablosuyla ManyToOne iliskisi vardir. Aylar:Ocak..Aralik, Gunler:Pazartesi...Pazar, cinsiyetler, @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"aktiflik pasiflik bilgisidir.\",\"type\":\"boolean\"},\"translation\":{\"$ref\":\"#/definitions/ReferenceCodeLangDTO\"},\"typeId\":{\"format\":\"int64\",\"description\":\"Referans Tipi\",\"type\":\"integer\"}}},\"ReferenceCodeLangDTO\":{\"title\":\"ReferenceCodeLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"langCode\":{\"description\":\"Dil kod bilgisi.\",\"type\":\"string\"},\"langId\":{\"format\":\"int64\",\"description\":\"Dil kodu bilgisinin icermektedir.\",\"type\":\"integer\"},\"langName\":{\"description\":\"Dil kodu adidir.\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ReferenceCodeDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"eu pr\",\n \"createdDate\": \"1998-01-18T01:05:08.428Z\",\n \"id\": 65763754,\n \"lastModifiedBy\": \"sit et tempor\",\n \"lastModifiedDate\": \"1962-04-20T10:32:57.661Z\",\n \"orderPriority\": -4225446,\n \"status\": false,\n \"translation\": {\n \"name\": \"Duis ut pro\",\n \"createdBy\": \"tempor\",\n \"createdDate\": \"1942-06-06T13:01:49.733Z\",\n \"defaultLang\": true,\n \"description\": \"pariatur amet Lorem do in\",\n \"id\": -53605622,\n \"langCode\": \"minim reprehenderit Excepteur ut eiusmod\",\n \"langId\": -77157054,\n \"langName\": \"aliqua\",\n \"lastModifiedBy\": \"qui Ut consectetur\",\n \"lastModifiedDate\": \"2016-10-21T14:18:52.942Z\",\n \"ownerId\": -98606514\n },\n \"typeId\": 53350381\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/ReferenceCodeDTO\"}],\"definitions\":{\"ReferenceCodeDTO\":{\"title\":\"ReferenceCodeDTO\",\"description\":\"Uyguluma icinde kullanilacak Ortak Referans kodlarini icerir. Referans Tipleri tablosuyla ManyToOne iliskisi vardir. Aylar:Ocak..Aralik, Gunler:Pazartesi...Pazar, cinsiyetler, @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"aktiflik pasiflik bilgisidir.\",\"type\":\"boolean\"},\"translation\":{\"$ref\":\"#/definitions/ReferenceCodeLangDTO\"},\"typeId\":{\"format\":\"int64\",\"description\":\"Referans Tipi\",\"type\":\"integer\"}}},\"ReferenceCodeLangDTO\":{\"title\":\"ReferenceCodeLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"langCode\":{\"description\":\"Dil kod bilgisi.\",\"type\":\"string\"},\"langId\":{\"format\":\"int64\",\"description\":\"Dil kodu bilgisinin icermektedir.\",\"type\":\"integer\"},\"langName\":{\"description\":\"Dil kodu adidir.\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ReferenceCodeDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "createReferenceCode" + }, + "id": { + "element": "string", + "content": "createReferenceCodeUsingPOST" + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"occaecat\",\n \"createdDate\": \"1996-11-08T02:41:34.989Z\",\n \"id\": -44567475,\n \"lastModifiedBy\": \"sit adipisicing enim\",\n \"lastModifiedDate\": \"2020-01-24T02:33:30.467Z\",\n \"orderPriority\": -58161875,\n \"status\": false,\n \"translation\": {\n \"name\": \"cillum incididunt ut\",\n \"createdBy\": \"non dolor est\",\n \"createdDate\": \"1952-12-04T03:38:33.225Z\",\n \"defaultLang\": false,\n \"description\": \"tempor incididunt mollit\",\n \"id\": -14068790,\n \"langCode\": \"tempor ipsum\",\n \"langId\": -18678371,\n \"langName\": \"enim\",\n \"lastModifiedBy\": \"dol\",\n \"lastModifiedDate\": \"1997-05-14T14:54:43.647Z\",\n \"ownerId\": -35461668\n },\n \"typeId\": -42912305\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/ReferenceCodeDTO\"}],\"definitions\":{\"ReferenceCodeDTO\":{\"title\":\"ReferenceCodeDTO\",\"description\":\"Uyguluma icinde kullanilacak Ortak Referans kodlarini icerir. Referans Tipleri tablosuyla ManyToOne iliskisi vardir. Aylar:Ocak..Aralik, Gunler:Pazartesi...Pazar, cinsiyetler, @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"aktiflik pasiflik bilgisidir.\",\"type\":\"boolean\"},\"translation\":{\"$ref\":\"#/definitions/ReferenceCodeLangDTO\"},\"typeId\":{\"format\":\"int64\",\"description\":\"Referans Tipi\",\"type\":\"integer\"}}},\"ReferenceCodeLangDTO\":{\"title\":\"ReferenceCodeLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"langCode\":{\"description\":\"Dil kod bilgisi.\",\"type\":\"string\"},\"langId\":{\"format\":\"int64\",\"description\":\"Dil kodu bilgisinin icermektedir.\",\"type\":\"integer\"},\"langName\":{\"description\":\"Dil kodu adidir.\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ReferenceCodeDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/ReferenceCodeDTO\"}],\"definitions\":{\"ReferenceCodeDTO\":{\"title\":\"ReferenceCodeDTO\",\"description\":\"Uyguluma icinde kullanilacak Ortak Referans kodlarini icerir. Referans Tipleri tablosuyla ManyToOne iliskisi vardir. Aylar:Ocak..Aralik, Gunler:Pazartesi...Pazar, cinsiyetler, @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"aktiflik pasiflik bilgisidir.\",\"type\":\"boolean\"},\"translation\":{\"$ref\":\"#/definitions/ReferenceCodeLangDTO\"},\"typeId\":{\"format\":\"int64\",\"description\":\"Referans Tipi\",\"type\":\"integer\"}}},\"ReferenceCodeLangDTO\":{\"title\":\"ReferenceCodeLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"langCode\":{\"description\":\"Dil kod bilgisi.\",\"type\":\"string\"},\"langId\":{\"format\":\"int64\",\"description\":\"Dil kodu bilgisinin icermektedir.\",\"type\":\"integer\"},\"langName\":{\"description\":\"Dil kodu adidir.\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ReferenceCodeDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"occaecat labor\",\n \"createdDate\": \"1941-11-28T19:33:22.960Z\",\n \"id\": -22490305,\n \"lastModifiedBy\": \"i\",\n \"lastModifiedDate\": \"1983-10-20T12:39:44.017Z\",\n \"orderPriority\": -27386383,\n \"status\": false,\n \"translation\": {\n \"name\": \"ullamco fugiat\",\n \"createdBy\": \"aliqua Excepteur\",\n \"createdDate\": \"1979-11-17T02:59:30.879Z\",\n \"defaultLang\": true,\n \"description\": \"nisi ullamco ut\",\n \"id\": -32723858,\n \"langCode\": \"qu\",\n \"langId\": 77165115,\n \"langName\": \"est dolore dolore mollit occaecat\",\n \"lastModifiedBy\": \"Excepteur labore voluptate aliquip fugiat\",\n \"lastModifiedDate\": \"1945-07-23T14:03:09.799Z\",\n \"ownerId\": 16832054\n },\n \"typeId\": 56438618\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/ReferenceCodeDTO\"}],\"definitions\":{\"ReferenceCodeDTO\":{\"title\":\"ReferenceCodeDTO\",\"description\":\"Uyguluma icinde kullanilacak Ortak Referans kodlarini icerir. Referans Tipleri tablosuyla ManyToOne iliskisi vardir. Aylar:Ocak..Aralik, Gunler:Pazartesi...Pazar, cinsiyetler, @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"aktiflik pasiflik bilgisidir.\",\"type\":\"boolean\"},\"translation\":{\"$ref\":\"#/definitions/ReferenceCodeLangDTO\"},\"typeId\":{\"format\":\"int64\",\"description\":\"Referans Tipi\",\"type\":\"integer\"}}},\"ReferenceCodeLangDTO\":{\"title\":\"ReferenceCodeLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"langCode\":{\"description\":\"Dil kod bilgisi.\",\"type\":\"string\"},\"langId\":{\"format\":\"int64\",\"description\":\"Dil kodu bilgisinin icermektedir.\",\"type\":\"integer\"},\"langName\":{\"description\":\"Dil kodu adidir.\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ReferenceCodeDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"ea Lorem reprehenderit velit\",\n \"createdDate\": \"1970-12-04T06:31:55.716Z\",\n \"id\": -63486581,\n \"lastModifiedBy\": \"eu\",\n \"lastModifiedDate\": \"1948-10-08T23:09:37.465Z\",\n \"orderPriority\": -6519338,\n \"status\": false,\n \"translation\": {\n \"name\": \"est quis\",\n \"createdBy\": \"qui sint adipisicing\",\n \"createdDate\": \"1997-02-09T15:58:45.806Z\",\n \"defaultLang\": false,\n \"description\": \"ex esse reprehenderit anim ipsum\",\n \"id\": -95644958,\n \"langCode\": \"labore ipsum anim dolor\",\n \"langId\": -47972137,\n \"langName\": \"exercitation dolor amet proident\",\n \"lastModifiedBy\": \"laboris in\",\n \"lastModifiedDate\": \"1953-08-04T13:32:02.632Z\",\n \"ownerId\": -31041460\n },\n \"typeId\": -78417770\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/ReferenceCodeDTO\"}],\"definitions\":{\"ReferenceCodeDTO\":{\"title\":\"ReferenceCodeDTO\",\"description\":\"Uyguluma icinde kullanilacak Ortak Referans kodlarini icerir. Referans Tipleri tablosuyla ManyToOne iliskisi vardir. Aylar:Ocak..Aralik, Gunler:Pazartesi...Pazar, cinsiyetler, @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"aktiflik pasiflik bilgisidir.\",\"type\":\"boolean\"},\"translation\":{\"$ref\":\"#/definitions/ReferenceCodeLangDTO\"},\"typeId\":{\"format\":\"int64\",\"description\":\"Referans Tipi\",\"type\":\"integer\"}}},\"ReferenceCodeLangDTO\":{\"title\":\"ReferenceCodeLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"langCode\":{\"description\":\"Dil kod bilgisi.\",\"type\":\"string\"},\"langId\":{\"format\":\"int64\",\"description\":\"Dil kodu bilgisinin icermektedir.\",\"type\":\"integer\"},\"langName\":{\"description\":\"Dil kodu adidir.\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ReferenceCodeDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"dolor\",\n \"createdDate\": \"1975-08-17T01:42:53.619Z\",\n \"id\": -15069996,\n \"lastModifiedBy\": \"pariatur cupidatat id anim Ut\",\n \"lastModifiedDate\": \"1943-12-08T01:38:18.390Z\",\n \"orderPriority\": -13478595,\n \"status\": false,\n \"translation\": {\n \"name\": \"in do\",\n \"createdBy\": \"proident enim sed\",\n \"createdDate\": \"1986-08-25T16:01:42.233Z\",\n \"defaultLang\": true,\n \"description\": \"commodo sint officia cillum laboris\",\n \"id\": -64906761,\n \"langCode\": \"nulla ad qui pariatur\",\n \"langId\": -51457461,\n \"langName\": \"cillum\",\n \"lastModifiedBy\": \"ipsum dolore dolore\",\n \"lastModifiedDate\": \"1943-04-28T08:06:01.788Z\",\n \"ownerId\": 53172723\n },\n \"typeId\": 77725593\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/ReferenceCodeDTO\"}],\"definitions\":{\"ReferenceCodeDTO\":{\"title\":\"ReferenceCodeDTO\",\"description\":\"Uyguluma icinde kullanilacak Ortak Referans kodlarini icerir. Referans Tipleri tablosuyla ManyToOne iliskisi vardir. Aylar:Ocak..Aralik, Gunler:Pazartesi...Pazar, cinsiyetler, @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"aktiflik pasiflik bilgisidir.\",\"type\":\"boolean\"},\"translation\":{\"$ref\":\"#/definitions/ReferenceCodeLangDTO\"},\"typeId\":{\"format\":\"int64\",\"description\":\"Referans Tipi\",\"type\":\"integer\"}}},\"ReferenceCodeLangDTO\":{\"title\":\"ReferenceCodeLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"langCode\":{\"description\":\"Dil kod bilgisi.\",\"type\":\"string\"},\"langId\":{\"format\":\"int64\",\"description\":\"Dil kodu bilgisinin icermektedir.\",\"type\":\"integer\"},\"langName\":{\"description\":\"Dil kodu adidir.\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ReferenceCodeDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"reprehenderit\",\n \"createdDate\": \"1964-06-19T10:42:30.090Z\",\n \"id\": -81568641,\n \"lastModifiedBy\": \"ut exercitation\",\n \"lastModifiedDate\": \"1949-07-14T20:54:43.023Z\",\n \"orderPriority\": -19027587,\n \"status\": true,\n \"translation\": {\n \"name\": \"ve\",\n \"createdBy\": \"labore\",\n \"createdDate\": \"1991-12-03T04:52:05.509Z\",\n \"defaultLang\": false,\n \"description\": \"sit Duis eu\",\n \"id\": -58944263,\n \"langCode\": \"in laborum sit enim\",\n \"langId\": -48275957,\n \"langName\": \"laboris ut tempor ex\",\n \"lastModifiedBy\": \"sed voluptate tempor anim nulla\",\n \"lastModifiedDate\": \"1947-02-26T13:17:41.083Z\",\n \"ownerId\": 4349467\n },\n \"typeId\": -27967344\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/ReferenceCodeDTO\"}],\"definitions\":{\"ReferenceCodeDTO\":{\"title\":\"ReferenceCodeDTO\",\"description\":\"Uyguluma icinde kullanilacak Ortak Referans kodlarini icerir. Referans Tipleri tablosuyla ManyToOne iliskisi vardir. Aylar:Ocak..Aralik, Gunler:Pazartesi...Pazar, cinsiyetler, @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"aktiflik pasiflik bilgisidir.\",\"type\":\"boolean\"},\"translation\":{\"$ref\":\"#/definitions/ReferenceCodeLangDTO\"},\"typeId\":{\"format\":\"int64\",\"description\":\"Referans Tipi\",\"type\":\"integer\"}}},\"ReferenceCodeLangDTO\":{\"title\":\"ReferenceCodeLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"langCode\":{\"description\":\"Dil kod bilgisi.\",\"type\":\"string\"},\"langId\":{\"format\":\"int64\",\"description\":\"Dil kodu bilgisinin icermektedir.\",\"type\":\"integer\"},\"langName\":{\"description\":\"Dil kodu adidir.\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ReferenceCodeDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/reference-codes/count" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "countReferenceCodes" + }, + "id": { + "element": "string", + "content": "countReferenceCodesUsingGET" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/reference-codes/count{?id%2eequals,id%2egreaterOrEqualThan,id%2egreaterThan,id%2ein*,id%2elessOrEqualThan,id%2elessThan,id%2especified,orderPriority%2eequals,orderPriority%2egreaterOrEqualThan,orderPriority%2egreaterThan,orderPriority%2ein*,orderPriority%2elessOrEqualThan,orderPriority%2elessThan,orderPriority%2especified,status%2eequals,status%2ein*,status%2especified,translationId%2eequals,translationId%2egreaterOrEqualThan,translationId%2egreaterThan,translationId%2ein*,translationId%2elessOrEqualThan,translationId%2elessThan,translationId%2especified,typeId%2eequals,typeId%2egreaterOrEqualThan,typeId%2egreaterThan,typeId%2ein*,typeId%2elessOrEqualThan,typeId%2elessThan,typeId%2especified}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status.equals" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "boolean" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "translationId.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "typeId.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "typeId.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "typeId.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "typeId.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "typeId.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "typeId.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "typeId.specified" + }, + "value": { + "element": "boolean" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"format\":\"int64\",\"type\":\"integer\"}" + }, + { + "element": "dataStructure", + "content": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'int64'" + } + } + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/reference-codes/find" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "findByName" + }, + "id": { + "element": "string", + "content": "findByNameUsingGET" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/reference-codes/find{?name,page,referenceTypeId,size,sort*}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "name" + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Page number of the requested page" + } + }, + "content": { + "key": { + "element": "string", + "content": "page" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "referenceTypeId" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "referenceTypeId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Size of a page" + } + }, + "content": { + "key": { + "element": "string", + "content": "size" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported." + } + }, + "content": { + "key": { + "element": "string", + "content": "sort" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ReferenceCodeDTO\"},\"definitions\":{\"ReferenceCodeDTO\":{\"title\":\"ReferenceCodeDTO\",\"description\":\"Uyguluma icinde kullanilacak Ortak Referans kodlarini icerir. Referans Tipleri tablosuyla ManyToOne iliskisi vardir. Aylar:Ocak..Aralik, Gunler:Pazartesi...Pazar, cinsiyetler, @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"aktiflik pasiflik bilgisidir.\",\"type\":\"boolean\"},\"translation\":{\"$ref\":\"#/definitions/ReferenceCodeLangDTO\"},\"typeId\":{\"format\":\"int64\",\"description\":\"Referans Tipi\",\"type\":\"integer\"}}},\"ReferenceCodeLangDTO\":{\"title\":\"ReferenceCodeLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"langCode\":{\"description\":\"Dil kod bilgisi.\",\"type\":\"string\"},\"langId\":{\"format\":\"int64\",\"description\":\"Dil kodu bilgisinin icermektedir.\",\"type\":\"integer\"},\"langName\":{\"description\":\"Dil kodu adidir.\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/ReferenceCodeDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/reference-codes/type/{referenceTypeId}" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getAllReferenceCodesByType" + }, + "id": { + "element": "string", + "content": "getAllReferenceCodesByTypeUsingGET" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/reference-codes/type/{referenceTypeId}{?page,size,sort*}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Page number of the requested page" + } + }, + "content": { + "key": { + "element": "string", + "content": "page" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "referenceTypeId" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "referenceTypeId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Size of a page" + } + }, + "content": { + "key": { + "element": "string", + "content": "size" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported." + } + }, + "content": { + "key": { + "element": "string", + "content": "sort" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ReferenceCodeDTO\"},\"definitions\":{\"ReferenceCodeDTO\":{\"title\":\"ReferenceCodeDTO\",\"description\":\"Uyguluma icinde kullanilacak Ortak Referans kodlarini icerir. Referans Tipleri tablosuyla ManyToOne iliskisi vardir. Aylar:Ocak..Aralik, Gunler:Pazartesi...Pazar, cinsiyetler, @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"aktiflik pasiflik bilgisidir.\",\"type\":\"boolean\"},\"translation\":{\"$ref\":\"#/definitions/ReferenceCodeLangDTO\"},\"typeId\":{\"format\":\"int64\",\"description\":\"Referans Tipi\",\"type\":\"integer\"}}},\"ReferenceCodeLangDTO\":{\"title\":\"ReferenceCodeLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"langCode\":{\"description\":\"Dil kod bilgisi.\",\"type\":\"string\"},\"langId\":{\"format\":\"int64\",\"description\":\"Dil kodu bilgisinin icermektedir.\",\"type\":\"integer\"},\"langName\":{\"description\":\"Dil kodu adidir.\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/ReferenceCodeDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/reference-codes/{id}" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getReferenceCode" + }, + "id": { + "element": "string", + "content": "getReferenceCodeUsingGET" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "id" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/ReferenceCodeDTO\"}],\"definitions\":{\"ReferenceCodeDTO\":{\"title\":\"ReferenceCodeDTO\",\"description\":\"Uyguluma icinde kullanilacak Ortak Referans kodlarini icerir. Referans Tipleri tablosuyla ManyToOne iliskisi vardir. Aylar:Ocak..Aralik, Gunler:Pazartesi...Pazar, cinsiyetler, @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"aktiflik pasiflik bilgisidir.\",\"type\":\"boolean\"},\"translation\":{\"$ref\":\"#/definitions/ReferenceCodeLangDTO\"},\"typeId\":{\"format\":\"int64\",\"description\":\"Referans Tipi\",\"type\":\"integer\"}}},\"ReferenceCodeLangDTO\":{\"title\":\"ReferenceCodeLangDTO\",\"description\":\"Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defaultLang\":{\"description\":\"default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir.\",\"type\":\"boolean\"},\"description\":{\"description\":\"ilgili dildeki, Uzun detayli aciklama bilgisi.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"langCode\":{\"description\":\"Dil kod bilgisi.\",\"type\":\"string\"},\"langId\":{\"format\":\"int64\",\"description\":\"Dil kodu bilgisinin icermektedir.\",\"type\":\"integer\"},\"langName\":{\"description\":\"Dil kodu adidir.\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"ismin ilgili dildeki karsiligi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"ownerId\":{\"format\":\"int64\",\"description\":\"Tercume edilen obje\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ReferenceCodeDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "deleteReferenceCode" + }, + "id": { + "element": "string", + "content": "deleteReferenceCodeUsingDELETE" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "id" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "204" + } + }, + "content": [ + { + "element": "copy", + "content": "No Content" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "category", + "meta": { + "title": { + "element": "string", + "content": "reference-type-resource" + }, + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "resourceGroup" + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Reference Type Resource" + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/reference-types" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getAllReferenceTypes" + }, + "id": { + "element": "string", + "content": "getAllReferenceTypesUsingGET" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/reference-types{?description%2econtains,description%2eequals,description%2ein*,description%2especified,id%2eequals,id%2egreaterOrEqualThan,id%2egreaterThan,id%2ein*,id%2elessOrEqualThan,id%2elessThan,id%2especified,name%2econtains,name%2eequals,name%2ein*,name%2especified,page,size,sort*}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Page number of the requested page" + } + }, + "content": { + "key": { + "element": "string", + "content": "page" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Size of a page" + } + }, + "content": { + "key": { + "element": "string", + "content": "size" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported." + } + }, + "content": { + "key": { + "element": "string", + "content": "sort" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ReferenceTypeDTO\"},\"definitions\":{\"ReferenceTypeDTO\":{\"title\":\"ReferenceTypeDTO\",\"description\":\"Uyguluma icinde kullanilacak Ortak Referans tiplerini icerir. Aylar, haftanin gunleri, cinsiyetler, @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Uzun Aciklama bilgisidir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Kendine ozgu unique isim bilgisidir.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/ReferenceTypeDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "updateReferenceType" + }, + "id": { + "element": "string", + "content": "updateReferenceTypeUsingPUT" + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"name\": \"in sunt labore aliquip\",\n \"createdBy\": \"elit do est esse\",\n \"createdDate\": \"1973-08-01T02:10:29.530Z\",\n \"description\": \"eiusmod amet occaecat\",\n \"id\": 45882355,\n \"lastModifiedBy\": \"sed commo\",\n \"lastModifiedDate\": \"1973-04-12T13:56:05.982Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ReferenceTypeDTO\",\"description\":\"Uyguluma icinde kullanilacak Ortak Referans tiplerini icerir. Aylar, haftanin gunleri, cinsiyetler, @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Uzun Aciklama bilgisidir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Kendine ozgu unique isim bilgisidir.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ReferenceTypeDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ReferenceTypeDTO\",\"description\":\"Uyguluma icinde kullanilacak Ortak Referans tiplerini icerir. Aylar, haftanin gunleri, cinsiyetler, @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Uzun Aciklama bilgisidir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Kendine ozgu unique isim bilgisidir.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ReferenceTypeDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"name\": \"anim non aute esse pariatur\",\n \"createdBy\": \"Excepteur nulla magna\",\n \"createdDate\": \"1987-10-23T14:01:47.235Z\",\n \"description\": \"tempor proident irure officia laborum\",\n \"id\": 94009667,\n \"lastModifiedBy\": \"Duis dolor\",\n \"lastModifiedDate\": \"1946-09-14T17:39:02.262Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ReferenceTypeDTO\",\"description\":\"Uyguluma icinde kullanilacak Ortak Referans tiplerini icerir. Aylar, haftanin gunleri, cinsiyetler, @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Uzun Aciklama bilgisidir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Kendine ozgu unique isim bilgisidir.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ReferenceTypeDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"name\": \"ut\",\n \"createdBy\": \"qui\",\n \"createdDate\": \"1978-03-23T16:40:27.936Z\",\n \"description\": \"in\",\n \"id\": -17699930,\n \"lastModifiedBy\": \"deserunt nisi fugiat adipisicing\",\n \"lastModifiedDate\": \"1979-02-24T10:47:33.304Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ReferenceTypeDTO\",\"description\":\"Uyguluma icinde kullanilacak Ortak Referans tiplerini icerir. Aylar, haftanin gunleri, cinsiyetler, @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Uzun Aciklama bilgisidir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Kendine ozgu unique isim bilgisidir.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ReferenceTypeDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"name\": \"ea tempor eu\",\n \"createdBy\": \"enim esse elit\",\n \"createdDate\": \"2008-10-13T07:55:08.559Z\",\n \"description\": \"sit reprehenderit occaecat\",\n \"id\": 52737809,\n \"lastModifiedBy\": \"enim cupidatat labore esse\",\n \"lastModifiedDate\": \"1947-09-06T22:25:24.943Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ReferenceTypeDTO\",\"description\":\"Uyguluma icinde kullanilacak Ortak Referans tiplerini icerir. Aylar, haftanin gunleri, cinsiyetler, @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Uzun Aciklama bilgisidir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Kendine ozgu unique isim bilgisidir.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ReferenceTypeDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"name\": \"fugiat \",\n \"createdBy\": \"reprehenderit ut Duis occaecat qui\",\n \"createdDate\": \"1987-06-29T03:15:50.271Z\",\n \"description\": \"sed adipisicing incididunt occaecat pariatur\",\n \"id\": 32823433,\n \"lastModifiedBy\": \"tempor\",\n \"lastModifiedDate\": \"1985-12-27T07:37:43.761Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ReferenceTypeDTO\",\"description\":\"Uyguluma icinde kullanilacak Ortak Referans tiplerini icerir. Aylar, haftanin gunleri, cinsiyetler, @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Uzun Aciklama bilgisidir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Kendine ozgu unique isim bilgisidir.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ReferenceTypeDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "createReferenceType" + }, + "id": { + "element": "string", + "content": "createReferenceTypeUsingPOST" + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"name\": \"nostrud irure occa\",\n \"createdBy\": \"ut occaecat cillum\",\n \"createdDate\": \"1995-12-04T08:08:35.930Z\",\n \"description\": \"nisi in dolor\",\n \"id\": 59080912,\n \"lastModifiedBy\": \"ullamco enim\",\n \"lastModifiedDate\": \"2020-01-02T11:57:19.901Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ReferenceTypeDTO\",\"description\":\"Uyguluma icinde kullanilacak Ortak Referans tiplerini icerir. Aylar, haftanin gunleri, cinsiyetler, @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Uzun Aciklama bilgisidir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Kendine ozgu unique isim bilgisidir.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ReferenceTypeDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ReferenceTypeDTO\",\"description\":\"Uyguluma icinde kullanilacak Ortak Referans tiplerini icerir. Aylar, haftanin gunleri, cinsiyetler, @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Uzun Aciklama bilgisidir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Kendine ozgu unique isim bilgisidir.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ReferenceTypeDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"name\": \"do enim in aliquip\",\n \"createdBy\": \"dolor in\",\n \"createdDate\": \"1941-12-05T10:45:49.603Z\",\n \"description\": \"cupidatat qui laborum minim aliquip\",\n \"id\": -65628133,\n \"lastModifiedBy\": \"irure\",\n \"lastModifiedDate\": \"1983-10-19T14:45:38.091Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ReferenceTypeDTO\",\"description\":\"Uyguluma icinde kullanilacak Ortak Referans tiplerini icerir. Aylar, haftanin gunleri, cinsiyetler, @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Uzun Aciklama bilgisidir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Kendine ozgu unique isim bilgisidir.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ReferenceTypeDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"name\": \"nulla\",\n \"createdBy\": \"deserunt\",\n \"createdDate\": \"1953-10-25T04:51:58.054Z\",\n \"description\": \"laboris ipsum ullamco amet enim\",\n \"id\": -34735188,\n \"lastModifiedBy\": \"exercitation aute deserunt\",\n \"lastModifiedDate\": \"1963-02-21T10:05:54.958Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ReferenceTypeDTO\",\"description\":\"Uyguluma icinde kullanilacak Ortak Referans tiplerini icerir. Aylar, haftanin gunleri, cinsiyetler, @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Uzun Aciklama bilgisidir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Kendine ozgu unique isim bilgisidir.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ReferenceTypeDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"name\": \"Excepteur v\",\n \"createdBy\": \"sunt adipisicing id\",\n \"createdDate\": \"1947-06-23T07:59:51.198Z\",\n \"description\": \"et dolor in\",\n \"id\": -15338049,\n \"lastModifiedBy\": \"aute eiusmod labore\",\n \"lastModifiedDate\": \"1962-06-10T23:02:16.404Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ReferenceTypeDTO\",\"description\":\"Uyguluma icinde kullanilacak Ortak Referans tiplerini icerir. Aylar, haftanin gunleri, cinsiyetler, @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Uzun Aciklama bilgisidir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Kendine ozgu unique isim bilgisidir.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ReferenceTypeDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"name\": \"officia ex nisi sunt commodo\",\n \"createdBy\": \"ut\",\n \"createdDate\": \"2019-10-23T15:04:22.161Z\",\n \"description\": \"proident ad cillum\",\n \"id\": -93663821,\n \"lastModifiedBy\": \"irure commodo\",\n \"lastModifiedDate\": \"1977-10-03T06:44:27.351Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ReferenceTypeDTO\",\"description\":\"Uyguluma icinde kullanilacak Ortak Referans tiplerini icerir. Aylar, haftanin gunleri, cinsiyetler, @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Uzun Aciklama bilgisidir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Kendine ozgu unique isim bilgisidir.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ReferenceTypeDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/reference-types/count" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "countReferenceTypes" + }, + "id": { + "element": "string", + "content": "countReferenceTypesUsingGET" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/reference-types/count{?description%2econtains,description%2eequals,description%2ein*,description%2especified,id%2eequals,id%2egreaterOrEqualThan,id%2egreaterThan,id%2ein*,id%2elessOrEqualThan,id%2elessThan,id%2especified,name%2econtains,name%2eequals,name%2ein*,name%2especified}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.specified" + }, + "value": { + "element": "boolean" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"format\":\"int64\",\"type\":\"integer\"}" + }, + { + "element": "dataStructure", + "content": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'int64'" + } + } + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/reference-types/find" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "findByName" + }, + "id": { + "element": "string", + "content": "findByNameUsingGET_1" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/reference-types/find{?name,page,size,sort*}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "name" + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Page number of the requested page" + } + }, + "content": { + "key": { + "element": "string", + "content": "page" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Size of a page" + } + }, + "content": { + "key": { + "element": "string", + "content": "size" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported." + } + }, + "content": { + "key": { + "element": "string", + "content": "sort" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ReferenceTypeDTO\"},\"definitions\":{\"ReferenceTypeDTO\":{\"title\":\"ReferenceTypeDTO\",\"description\":\"Uyguluma icinde kullanilacak Ortak Referans tiplerini icerir. Aylar, haftanin gunleri, cinsiyetler, @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Uzun Aciklama bilgisidir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Kendine ozgu unique isim bilgisidir.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/ReferenceTypeDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/reference-types/{id}" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getReferenceType" + }, + "id": { + "element": "string", + "content": "getReferenceTypeUsingGET" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "id" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ReferenceTypeDTO\",\"description\":\"Uyguluma icinde kullanilacak Ortak Referans tiplerini icerir. Aylar, haftanin gunleri, cinsiyetler, @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Uzun Aciklama bilgisidir.\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Kendine ozgu unique isim bilgisidir.\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ReferenceTypeDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "deleteReferenceType" + }, + "id": { + "element": "string", + "content": "deleteReferenceTypeUsingDELETE" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "id" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "204" + } + }, + "content": [ + { + "element": "copy", + "content": "No Content" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "category", + "meta": { + "title": { + "element": "string", + "content": "responsibility-resource" + }, + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "resourceGroup" + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Responsibility Resource" + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/responsibilities" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getAllResponsibilities" + }, + "id": { + "element": "string", + "content": "getAllResponsibilitiesUsingGET" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/responsibilities{?authorityId%2eequals,authorityId%2egreaterOrEqualThan,authorityId%2egreaterThan,authorityId%2ein*,authorityId%2elessOrEqualThan,authorityId%2elessThan,authorityId%2especified,description%2econtains,description%2eequals,description%2ein*,description%2especified,id%2eequals,id%2egreaterOrEqualThan,id%2egreaterThan,id%2ein*,id%2elessOrEqualThan,id%2elessThan,id%2especified,name%2econtains,name%2eequals,name%2ein*,name%2especified,orderPriority%2eequals,orderPriority%2egreaterOrEqualThan,orderPriority%2egreaterThan,orderPriority%2ein*,orderPriority%2elessOrEqualThan,orderPriority%2elessThan,orderPriority%2especified,page,size,sort*,status%2eequals,status%2ein*,status%2especified}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "authorityId.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "authorityId.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "authorityId.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "authorityId.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "authorityId.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "authorityId.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "authorityId.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Page number of the requested page" + } + }, + "content": { + "key": { + "element": "string", + "content": "page" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Size of a page" + } + }, + "content": { + "key": { + "element": "string", + "content": "size" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported." + } + }, + "content": { + "key": { + "element": "string", + "content": "sort" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status.equals" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "boolean" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status.specified" + }, + "value": { + "element": "boolean" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ResponsibilityDTO\"},\"definitions\":{\"ResponsibilityDTO\":{\"title\":\"ResponsibilityDTO\",\"description\":\"Rollerin sahip oldugu sorumluluklari ifade eder. Surec icerisindeki, en kucuk gorev, vazife ve is parcacigini, ifade eder. Bu tanim, Program tarafindan; Modeller ve actionlar uzerinden erisimi ayarlar. Ornek sorumluluk: Kullanici ekleyebilir(bu sayede kullanici ekle, sil, duzenle, kullaniciya departman ata, unvan tanimla vb..) Fatura Hazirlayabilir, Musteri Kaydi yapabilir, Tc Kimlik Biglisine Erisebilir gibi... @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Sorumluluk ismi, Keyi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/ResponsibilityDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "updateResponsibility" + }, + "id": { + "element": "string", + "content": "updateResponsibilityUsingPUT" + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"name\": \"ea Excepteur in proident\",\n \"createdBy\": \"aute nostrud cillum\",\n \"createdDate\": \"1954-09-11T16:24:31.135Z\",\n \"description\": \"culpa laboris\",\n \"id\": -595676,\n \"lastModifiedBy\": \"id enim\",\n \"lastModifiedDate\": \"1997-01-29T19:38:19.807Z\",\n \"orderPriority\": -41988960,\n \"status\": false\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ResponsibilityDTO\",\"description\":\"Rollerin sahip oldugu sorumluluklari ifade eder. Surec icerisindeki, en kucuk gorev, vazife ve is parcacigini, ifade eder. Bu tanim, Program tarafindan; Modeller ve actionlar uzerinden erisimi ayarlar. Ornek sorumluluk: Kullanici ekleyebilir(bu sayede kullanici ekle, sil, duzenle, kullaniciya departman ata, unvan tanimla vb..) Fatura Hazirlayabilir, Musteri Kaydi yapabilir, Tc Kimlik Biglisine Erisebilir gibi... @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Sorumluluk ismi, Keyi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ResponsibilityDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ResponsibilityDTO\",\"description\":\"Rollerin sahip oldugu sorumluluklari ifade eder. Surec icerisindeki, en kucuk gorev, vazife ve is parcacigini, ifade eder. Bu tanim, Program tarafindan; Modeller ve actionlar uzerinden erisimi ayarlar. Ornek sorumluluk: Kullanici ekleyebilir(bu sayede kullanici ekle, sil, duzenle, kullaniciya departman ata, unvan tanimla vb..) Fatura Hazirlayabilir, Musteri Kaydi yapabilir, Tc Kimlik Biglisine Erisebilir gibi... @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Sorumluluk ismi, Keyi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ResponsibilityDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"name\": \"dolore\",\n \"createdBy\": \"non\",\n \"createdDate\": \"1980-02-24T13:34:15.986Z\",\n \"description\": \"sed officia anim aute adipisicing\",\n \"id\": -61943593,\n \"lastModifiedBy\": \"reprehend\",\n \"lastModifiedDate\": \"1995-09-01T00:45:13.967Z\",\n \"orderPriority\": -39433591,\n \"status\": false\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ResponsibilityDTO\",\"description\":\"Rollerin sahip oldugu sorumluluklari ifade eder. Surec icerisindeki, en kucuk gorev, vazife ve is parcacigini, ifade eder. Bu tanim, Program tarafindan; Modeller ve actionlar uzerinden erisimi ayarlar. Ornek sorumluluk: Kullanici ekleyebilir(bu sayede kullanici ekle, sil, duzenle, kullaniciya departman ata, unvan tanimla vb..) Fatura Hazirlayabilir, Musteri Kaydi yapabilir, Tc Kimlik Biglisine Erisebilir gibi... @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Sorumluluk ismi, Keyi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ResponsibilityDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"name\": \"cillum\",\n \"createdBy\": \"\",\n \"createdDate\": \"1970-09-25T19:58:45.406Z\",\n \"description\": \"laboris amet sed\",\n \"id\": -12341387,\n \"lastModifiedBy\": \"esse dolor \",\n \"lastModifiedDate\": \"2004-04-01T09:52:02.761Z\",\n \"orderPriority\": -94393641,\n \"status\": true\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ResponsibilityDTO\",\"description\":\"Rollerin sahip oldugu sorumluluklari ifade eder. Surec icerisindeki, en kucuk gorev, vazife ve is parcacigini, ifade eder. Bu tanim, Program tarafindan; Modeller ve actionlar uzerinden erisimi ayarlar. Ornek sorumluluk: Kullanici ekleyebilir(bu sayede kullanici ekle, sil, duzenle, kullaniciya departman ata, unvan tanimla vb..) Fatura Hazirlayabilir, Musteri Kaydi yapabilir, Tc Kimlik Biglisine Erisebilir gibi... @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Sorumluluk ismi, Keyi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ResponsibilityDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"name\": \"laborum e\",\n \"createdBy\": \"mollit aliquip\",\n \"createdDate\": \"1989-02-13T16:25:33.325Z\",\n \"description\": \"in velit ut cillum\",\n \"id\": -67607772,\n \"lastModifiedBy\": \"officia\",\n \"lastModifiedDate\": \"1966-07-28T21:49:59.782Z\",\n \"orderPriority\": -57900197,\n \"status\": false\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ResponsibilityDTO\",\"description\":\"Rollerin sahip oldugu sorumluluklari ifade eder. Surec icerisindeki, en kucuk gorev, vazife ve is parcacigini, ifade eder. Bu tanim, Program tarafindan; Modeller ve actionlar uzerinden erisimi ayarlar. Ornek sorumluluk: Kullanici ekleyebilir(bu sayede kullanici ekle, sil, duzenle, kullaniciya departman ata, unvan tanimla vb..) Fatura Hazirlayabilir, Musteri Kaydi yapabilir, Tc Kimlik Biglisine Erisebilir gibi... @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Sorumluluk ismi, Keyi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ResponsibilityDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"name\": \"se\",\n \"createdBy\": \"laborum exercitation\",\n \"createdDate\": \"1947-11-15T03:08:12.743Z\",\n \"description\": \"Ut esse\",\n \"id\": 91475707,\n \"lastModifiedBy\": \"labore id\",\n \"lastModifiedDate\": \"1992-01-03T14:54:33.711Z\",\n \"orderPriority\": -38072926,\n \"status\": true\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ResponsibilityDTO\",\"description\":\"Rollerin sahip oldugu sorumluluklari ifade eder. Surec icerisindeki, en kucuk gorev, vazife ve is parcacigini, ifade eder. Bu tanim, Program tarafindan; Modeller ve actionlar uzerinden erisimi ayarlar. Ornek sorumluluk: Kullanici ekleyebilir(bu sayede kullanici ekle, sil, duzenle, kullaniciya departman ata, unvan tanimla vb..) Fatura Hazirlayabilir, Musteri Kaydi yapabilir, Tc Kimlik Biglisine Erisebilir gibi... @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Sorumluluk ismi, Keyi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ResponsibilityDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "createResponsibility" + }, + "id": { + "element": "string", + "content": "createResponsibilityUsingPOST" + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"name\": \"cupidatat reprehenderit magna\",\n \"createdBy\": \"quis\",\n \"createdDate\": \"1945-04-09T01:52:49.121Z\",\n \"description\": \"irure culpa\",\n \"id\": -54713040,\n \"lastModifiedBy\": \"occaecat\",\n \"lastModifiedDate\": \"2000-07-30T19:59:56.429Z\",\n \"orderPriority\": -52491813,\n \"status\": true\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ResponsibilityDTO\",\"description\":\"Rollerin sahip oldugu sorumluluklari ifade eder. Surec icerisindeki, en kucuk gorev, vazife ve is parcacigini, ifade eder. Bu tanim, Program tarafindan; Modeller ve actionlar uzerinden erisimi ayarlar. Ornek sorumluluk: Kullanici ekleyebilir(bu sayede kullanici ekle, sil, duzenle, kullaniciya departman ata, unvan tanimla vb..) Fatura Hazirlayabilir, Musteri Kaydi yapabilir, Tc Kimlik Biglisine Erisebilir gibi... @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Sorumluluk ismi, Keyi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ResponsibilityDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ResponsibilityDTO\",\"description\":\"Rollerin sahip oldugu sorumluluklari ifade eder. Surec icerisindeki, en kucuk gorev, vazife ve is parcacigini, ifade eder. Bu tanim, Program tarafindan; Modeller ve actionlar uzerinden erisimi ayarlar. Ornek sorumluluk: Kullanici ekleyebilir(bu sayede kullanici ekle, sil, duzenle, kullaniciya departman ata, unvan tanimla vb..) Fatura Hazirlayabilir, Musteri Kaydi yapabilir, Tc Kimlik Biglisine Erisebilir gibi... @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Sorumluluk ismi, Keyi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ResponsibilityDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"name\": \"magna\",\n \"createdBy\": \"incididunt mollit\",\n \"createdDate\": \"1961-07-25T05:13:09.431Z\",\n \"description\": \"minim\",\n \"id\": 57601579,\n \"lastModifiedBy\": \"commodo eiusmod ea\",\n \"lastModifiedDate\": \"1941-03-14T09:38:26.282Z\",\n \"orderPriority\": -52246427,\n \"status\": true\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ResponsibilityDTO\",\"description\":\"Rollerin sahip oldugu sorumluluklari ifade eder. Surec icerisindeki, en kucuk gorev, vazife ve is parcacigini, ifade eder. Bu tanim, Program tarafindan; Modeller ve actionlar uzerinden erisimi ayarlar. Ornek sorumluluk: Kullanici ekleyebilir(bu sayede kullanici ekle, sil, duzenle, kullaniciya departman ata, unvan tanimla vb..) Fatura Hazirlayabilir, Musteri Kaydi yapabilir, Tc Kimlik Biglisine Erisebilir gibi... @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Sorumluluk ismi, Keyi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ResponsibilityDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"name\": \"consectetur \",\n \"createdBy\": \"qui pariatur officia sed\",\n \"createdDate\": \"1979-12-26T22:07:45.058Z\",\n \"description\": \"occaecat nostrud elit eiusmod consectetur\",\n \"id\": -24081476,\n \"lastModifiedBy\": \"nul\",\n \"lastModifiedDate\": \"1994-07-01T01:29:14.189Z\",\n \"orderPriority\": -92131401,\n \"status\": true\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ResponsibilityDTO\",\"description\":\"Rollerin sahip oldugu sorumluluklari ifade eder. Surec icerisindeki, en kucuk gorev, vazife ve is parcacigini, ifade eder. Bu tanim, Program tarafindan; Modeller ve actionlar uzerinden erisimi ayarlar. Ornek sorumluluk: Kullanici ekleyebilir(bu sayede kullanici ekle, sil, duzenle, kullaniciya departman ata, unvan tanimla vb..) Fatura Hazirlayabilir, Musteri Kaydi yapabilir, Tc Kimlik Biglisine Erisebilir gibi... @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Sorumluluk ismi, Keyi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ResponsibilityDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"name\": \"dolore irure occaeca\",\n \"createdBy\": \"nisi am\",\n \"createdDate\": \"1976-01-27T18:50:22.909Z\",\n \"description\": \"proident non voluptate nulla\",\n \"id\": -78146920,\n \"lastModifiedBy\": \"laboris\",\n \"lastModifiedDate\": \"2016-12-11T16:03:13.724Z\",\n \"orderPriority\": -13088208,\n \"status\": false\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ResponsibilityDTO\",\"description\":\"Rollerin sahip oldugu sorumluluklari ifade eder. Surec icerisindeki, en kucuk gorev, vazife ve is parcacigini, ifade eder. Bu tanim, Program tarafindan; Modeller ve actionlar uzerinden erisimi ayarlar. Ornek sorumluluk: Kullanici ekleyebilir(bu sayede kullanici ekle, sil, duzenle, kullaniciya departman ata, unvan tanimla vb..) Fatura Hazirlayabilir, Musteri Kaydi yapabilir, Tc Kimlik Biglisine Erisebilir gibi... @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Sorumluluk ismi, Keyi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ResponsibilityDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"name\": \"eu deserunt dolore\",\n \"createdBy\": \"irure\",\n \"createdDate\": \"2000-11-09T01:25:00.266Z\",\n \"description\": \"et incididunt ut dolor irure\",\n \"id\": -50553854,\n \"lastModifiedBy\": \"minim\",\n \"lastModifiedDate\": \"1945-05-22T15:51:57.885Z\",\n \"orderPriority\": -71216643,\n \"status\": true\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ResponsibilityDTO\",\"description\":\"Rollerin sahip oldugu sorumluluklari ifade eder. Surec icerisindeki, en kucuk gorev, vazife ve is parcacigini, ifade eder. Bu tanim, Program tarafindan; Modeller ve actionlar uzerinden erisimi ayarlar. Ornek sorumluluk: Kullanici ekleyebilir(bu sayede kullanici ekle, sil, duzenle, kullaniciya departman ata, unvan tanimla vb..) Fatura Hazirlayabilir, Musteri Kaydi yapabilir, Tc Kimlik Biglisine Erisebilir gibi... @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Sorumluluk ismi, Keyi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ResponsibilityDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/responsibilities/count" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "countResponsibilities" + }, + "id": { + "element": "string", + "content": "countResponsibilitiesUsingGET" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/responsibilities/count{?authorityId%2eequals,authorityId%2egreaterOrEqualThan,authorityId%2egreaterThan,authorityId%2ein*,authorityId%2elessOrEqualThan,authorityId%2elessThan,authorityId%2especified,description%2econtains,description%2eequals,description%2ein*,description%2especified,id%2eequals,id%2egreaterOrEqualThan,id%2egreaterThan,id%2ein*,id%2elessOrEqualThan,id%2elessThan,id%2especified,name%2econtains,name%2eequals,name%2ein*,name%2especified,orderPriority%2eequals,orderPriority%2egreaterOrEqualThan,orderPriority%2egreaterThan,orderPriority%2ein*,orderPriority%2elessOrEqualThan,orderPriority%2elessThan,orderPriority%2especified,status%2eequals,status%2ein*,status%2especified}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "authorityId.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "authorityId.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "authorityId.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "authorityId.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "authorityId.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "authorityId.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "authorityId.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status.equals" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "boolean" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status.specified" + }, + "value": { + "element": "boolean" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"format\":\"int64\",\"type\":\"integer\"}" + }, + { + "element": "dataStructure", + "content": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'int64'" + } + } + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/responsibilities/{id}" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getResponsibility" + }, + "id": { + "element": "string", + "content": "getResponsibilityUsingGET" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "id" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ResponsibilityDTO\",\"description\":\"Rollerin sahip oldugu sorumluluklari ifade eder. Surec icerisindeki, en kucuk gorev, vazife ve is parcacigini, ifade eder. Bu tanim, Program tarafindan; Modeller ve actionlar uzerinden erisimi ayarlar. Ornek sorumluluk: Kullanici ekleyebilir(bu sayede kullanici ekle, sil, duzenle, kullaniciya departman ata, unvan tanimla vb..) Fatura Hazirlayabilir, Musteri Kaydi yapabilir, Tc Kimlik Biglisine Erisebilir gibi... @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Sorumluluk detayli aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Sorumluluk ismi, Keyi\",\"maxLength\":50,\"minLength\":1,\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"Aktif pasiflik bilgisi\",\"type\":\"boolean\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ResponsibilityDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "deleteResponsibility" + }, + "id": { + "element": "string", + "content": "deleteResponsibilityUsingDELETE" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "id" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "204" + } + }, + "content": [ + { + "element": "copy", + "content": "No Content" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "category", + "meta": { + "title": { + "element": "string", + "content": "responsibility-permission-resource" + }, + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "resourceGroup" + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Responsibility Permission Resource" + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/responsibility-permissions" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getAllResponsibilityPermissions" + }, + "id": { + "element": "string", + "content": "getAllResponsibilityPermissionsUsingGET" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/responsibility-permissions{?id%2eequals,id%2egreaterOrEqualThan,id%2egreaterThan,id%2ein*,id%2elessOrEqualThan,id%2elessThan,id%2especified,methodId%2eequals,methodId%2egreaterOrEqualThan,methodId%2egreaterThan,methodId%2ein*,methodId%2elessOrEqualThan,methodId%2elessThan,methodId%2especified,page,permission%2eequals,permission%2ein*,permission%2especified,responsibilityId%2eequals,responsibilityId%2egreaterOrEqualThan,responsibilityId%2egreaterThan,responsibilityId%2ein*,responsibilityId%2elessOrEqualThan,responsibilityId%2elessThan,responsibilityId%2especified,size,sort*}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "methodId.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "methodId.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "methodId.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "methodId.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "methodId.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "methodId.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "methodId.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Page number of the requested page" + } + }, + "content": { + "key": { + "element": "string", + "content": "page" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "permission.equals" + }, + "value": { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "ALLOW" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "BLANK" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "DENY" + } + ] + } + } + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "permission.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "ALLOW" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "BLANK" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "DENY" + } + ] + } + } + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "permission.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "responsibilityId.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "responsibilityId.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "responsibilityId.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "responsibilityId.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "responsibilityId.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "responsibilityId.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "responsibilityId.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Size of a page" + } + }, + "content": { + "key": { + "element": "string", + "content": "size" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported." + } + }, + "content": { + "key": { + "element": "string", + "content": "sort" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ResponsibilityPermissionDTO\"},\"definitions\":{\"ResponsibilityPermissionDTO\":{\"title\":\"ResponsibilityPermissionDTO\",\"description\":\"Sistemde tanimli olan sorumluluklara, yetki verme veya kisitlama yeridir. Sorumluluk ile methodlar eslestirilir. ALLOW, DENY secenekleri ile yetkilendirilir. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"methodFullName\":{\"type\":\"string\"},\"methodId\":{\"format\":\"int64\",\"description\":\"methodlara-yetkilere sorumluluk eslestirme\",\"type\":\"integer\"},\"permission\":{\"description\":\"Sorumlulugun, ilgili metoda ait, Yetki parametresidir.\",\"enum\":[\"ALLOW\",\"BLANK\",\"DENY\"],\"type\":\"string\"},\"responsibilityId\":{\"format\":\"int64\",\"description\":\"Sorumluluklara yetki eslestirme\",\"type\":\"integer\"},\"responsibilityName\":{\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/ResponsibilityPermissionDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "updateResponsibilityPermission" + }, + "id": { + "element": "string", + "content": "updateResponsibilityPermissionUsingPUT" + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"magna\",\n \"createdDate\": \"1953-01-19T03:29:54.326Z\",\n \"id\": -15574997,\n \"lastModifiedBy\": \"ad irure Excepteur\",\n \"lastModifiedDate\": \"1950-01-22T13:29:32.725Z\",\n \"methodFullName\": \"id exercitation labore\",\n \"methodId\": -62094894,\n \"permission\": \"BLANK\",\n \"responsibilityId\": 37747457,\n \"responsibilityName\": \"amet\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ResponsibilityPermissionDTO\",\"description\":\"Sistemde tanimli olan sorumluluklara, yetki verme veya kisitlama yeridir. Sorumluluk ile methodlar eslestirilir. ALLOW, DENY secenekleri ile yetkilendirilir. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"methodFullName\":{\"type\":\"string\"},\"methodId\":{\"format\":\"int64\",\"description\":\"methodlara-yetkilere sorumluluk eslestirme\",\"type\":\"integer\"},\"permission\":{\"description\":\"Sorumlulugun, ilgili metoda ait, Yetki parametresidir.\",\"enum\":[\"ALLOW\",\"BLANK\",\"DENY\"],\"type\":\"string\"},\"responsibilityId\":{\"format\":\"int64\",\"description\":\"Sorumluluklara yetki eslestirme\",\"type\":\"integer\"},\"responsibilityName\":{\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ResponsibilityPermissionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ResponsibilityPermissionDTO\",\"description\":\"Sistemde tanimli olan sorumluluklara, yetki verme veya kisitlama yeridir. Sorumluluk ile methodlar eslestirilir. ALLOW, DENY secenekleri ile yetkilendirilir. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"methodFullName\":{\"type\":\"string\"},\"methodId\":{\"format\":\"int64\",\"description\":\"methodlara-yetkilere sorumluluk eslestirme\",\"type\":\"integer\"},\"permission\":{\"description\":\"Sorumlulugun, ilgili metoda ait, Yetki parametresidir.\",\"enum\":[\"ALLOW\",\"BLANK\",\"DENY\"],\"type\":\"string\"},\"responsibilityId\":{\"format\":\"int64\",\"description\":\"Sorumluluklara yetki eslestirme\",\"type\":\"integer\"},\"responsibilityName\":{\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ResponsibilityPermissionDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"in labore\",\n \"createdDate\": \"1947-09-28T07:27:19.226Z\",\n \"id\": -17589072,\n \"lastModifiedBy\": \"ut\",\n \"lastModifiedDate\": \"1998-05-14T04:49:54.719Z\",\n \"methodFullName\": \"nulla esse et repr\",\n \"methodId\": -97134449,\n \"permission\": \"ALLOW\",\n \"responsibilityId\": 49109673,\n \"responsibilityName\": \"voluptate laboris do\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ResponsibilityPermissionDTO\",\"description\":\"Sistemde tanimli olan sorumluluklara, yetki verme veya kisitlama yeridir. Sorumluluk ile methodlar eslestirilir. ALLOW, DENY secenekleri ile yetkilendirilir. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"methodFullName\":{\"type\":\"string\"},\"methodId\":{\"format\":\"int64\",\"description\":\"methodlara-yetkilere sorumluluk eslestirme\",\"type\":\"integer\"},\"permission\":{\"description\":\"Sorumlulugun, ilgili metoda ait, Yetki parametresidir.\",\"enum\":[\"ALLOW\",\"BLANK\",\"DENY\"],\"type\":\"string\"},\"responsibilityId\":{\"format\":\"int64\",\"description\":\"Sorumluluklara yetki eslestirme\",\"type\":\"integer\"},\"responsibilityName\":{\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ResponsibilityPermissionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"culpa nulla cillum pariatur occaecat\",\n \"createdDate\": \"1942-07-23T04:03:30.072Z\",\n \"id\": -6927505,\n \"lastModifiedBy\": \"sit voluptate cupidatat enim dolore\",\n \"lastModifiedDate\": \"1977-03-08T02:47:02.713Z\",\n \"methodFullName\": \"cillum\",\n \"methodId\": -77938893,\n \"permission\": \"ALLOW\",\n \"responsibilityId\": 91534732,\n \"responsibilityName\": \"nostrud minim laborum\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ResponsibilityPermissionDTO\",\"description\":\"Sistemde tanimli olan sorumluluklara, yetki verme veya kisitlama yeridir. Sorumluluk ile methodlar eslestirilir. ALLOW, DENY secenekleri ile yetkilendirilir. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"methodFullName\":{\"type\":\"string\"},\"methodId\":{\"format\":\"int64\",\"description\":\"methodlara-yetkilere sorumluluk eslestirme\",\"type\":\"integer\"},\"permission\":{\"description\":\"Sorumlulugun, ilgili metoda ait, Yetki parametresidir.\",\"enum\":[\"ALLOW\",\"BLANK\",\"DENY\"],\"type\":\"string\"},\"responsibilityId\":{\"format\":\"int64\",\"description\":\"Sorumluluklara yetki eslestirme\",\"type\":\"integer\"},\"responsibilityName\":{\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ResponsibilityPermissionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"velit tempor ad magna\",\n \"createdDate\": \"1980-04-12T09:50:28.519Z\",\n \"id\": -90916628,\n \"lastModifiedBy\": \"occaecat ut qui nulla ex\",\n \"lastModifiedDate\": \"1954-06-03T20:29:09.177Z\",\n \"methodFullName\": \"voluptate fugiat cupidatat consectetur\",\n \"methodId\": 59052919,\n \"permission\": \"DENY\",\n \"responsibilityId\": -69991958,\n \"responsibilityName\": \"laboris dolore labore reprehenderit\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ResponsibilityPermissionDTO\",\"description\":\"Sistemde tanimli olan sorumluluklara, yetki verme veya kisitlama yeridir. Sorumluluk ile methodlar eslestirilir. ALLOW, DENY secenekleri ile yetkilendirilir. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"methodFullName\":{\"type\":\"string\"},\"methodId\":{\"format\":\"int64\",\"description\":\"methodlara-yetkilere sorumluluk eslestirme\",\"type\":\"integer\"},\"permission\":{\"description\":\"Sorumlulugun, ilgili metoda ait, Yetki parametresidir.\",\"enum\":[\"ALLOW\",\"BLANK\",\"DENY\"],\"type\":\"string\"},\"responsibilityId\":{\"format\":\"int64\",\"description\":\"Sorumluluklara yetki eslestirme\",\"type\":\"integer\"},\"responsibilityName\":{\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ResponsibilityPermissionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"eu aliqua labore\",\n \"createdDate\": \"2000-10-25T09:23:46.639Z\",\n \"id\": -30020632,\n \"lastModifiedBy\": \"consectetur cupidatat eiusmod\",\n \"lastModifiedDate\": \"1994-11-05T15:27:40.607Z\",\n \"methodFullName\": \"officia\",\n \"methodId\": -58278297,\n \"permission\": \"DENY\",\n \"responsibilityId\": 84191265,\n \"responsibilityName\": \"quis dolor\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ResponsibilityPermissionDTO\",\"description\":\"Sistemde tanimli olan sorumluluklara, yetki verme veya kisitlama yeridir. Sorumluluk ile methodlar eslestirilir. ALLOW, DENY secenekleri ile yetkilendirilir. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"methodFullName\":{\"type\":\"string\"},\"methodId\":{\"format\":\"int64\",\"description\":\"methodlara-yetkilere sorumluluk eslestirme\",\"type\":\"integer\"},\"permission\":{\"description\":\"Sorumlulugun, ilgili metoda ait, Yetki parametresidir.\",\"enum\":[\"ALLOW\",\"BLANK\",\"DENY\"],\"type\":\"string\"},\"responsibilityId\":{\"format\":\"int64\",\"description\":\"Sorumluluklara yetki eslestirme\",\"type\":\"integer\"},\"responsibilityName\":{\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ResponsibilityPermissionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "createResponsibilityPermission" + }, + "id": { + "element": "string", + "content": "createResponsibilityPermissionUsingPOST" + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"sit enim exercitation dolore consequat\",\n \"createdDate\": \"1953-06-14T20:34:58.522Z\",\n \"id\": 47711789,\n \"lastModifiedBy\": \"sunt non qui exercitation\",\n \"lastModifiedDate\": \"1960-09-24T00:26:33.086Z\",\n \"methodFullName\": \"dolore reprehenderit\",\n \"methodId\": -48978511,\n \"permission\": \"BLANK\",\n \"responsibilityId\": -3602945,\n \"responsibilityName\": \"aliqua sed velit\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ResponsibilityPermissionDTO\",\"description\":\"Sistemde tanimli olan sorumluluklara, yetki verme veya kisitlama yeridir. Sorumluluk ile methodlar eslestirilir. ALLOW, DENY secenekleri ile yetkilendirilir. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"methodFullName\":{\"type\":\"string\"},\"methodId\":{\"format\":\"int64\",\"description\":\"methodlara-yetkilere sorumluluk eslestirme\",\"type\":\"integer\"},\"permission\":{\"description\":\"Sorumlulugun, ilgili metoda ait, Yetki parametresidir.\",\"enum\":[\"ALLOW\",\"BLANK\",\"DENY\"],\"type\":\"string\"},\"responsibilityId\":{\"format\":\"int64\",\"description\":\"Sorumluluklara yetki eslestirme\",\"type\":\"integer\"},\"responsibilityName\":{\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ResponsibilityPermissionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ResponsibilityPermissionDTO\",\"description\":\"Sistemde tanimli olan sorumluluklara, yetki verme veya kisitlama yeridir. Sorumluluk ile methodlar eslestirilir. ALLOW, DENY secenekleri ile yetkilendirilir. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"methodFullName\":{\"type\":\"string\"},\"methodId\":{\"format\":\"int64\",\"description\":\"methodlara-yetkilere sorumluluk eslestirme\",\"type\":\"integer\"},\"permission\":{\"description\":\"Sorumlulugun, ilgili metoda ait, Yetki parametresidir.\",\"enum\":[\"ALLOW\",\"BLANK\",\"DENY\"],\"type\":\"string\"},\"responsibilityId\":{\"format\":\"int64\",\"description\":\"Sorumluluklara yetki eslestirme\",\"type\":\"integer\"},\"responsibilityName\":{\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ResponsibilityPermissionDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"quis\",\n \"createdDate\": \"2011-05-26T12:16:54.494Z\",\n \"id\": -12591380,\n \"lastModifiedBy\": \"est\",\n \"lastModifiedDate\": \"2000-12-23T02:14:11.214Z\",\n \"methodFullName\": \"elit in\",\n \"methodId\": 1667064,\n \"permission\": \"BLANK\",\n \"responsibilityId\": 78966688,\n \"responsibilityName\": \"tempor\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ResponsibilityPermissionDTO\",\"description\":\"Sistemde tanimli olan sorumluluklara, yetki verme veya kisitlama yeridir. Sorumluluk ile methodlar eslestirilir. ALLOW, DENY secenekleri ile yetkilendirilir. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"methodFullName\":{\"type\":\"string\"},\"methodId\":{\"format\":\"int64\",\"description\":\"methodlara-yetkilere sorumluluk eslestirme\",\"type\":\"integer\"},\"permission\":{\"description\":\"Sorumlulugun, ilgili metoda ait, Yetki parametresidir.\",\"enum\":[\"ALLOW\",\"BLANK\",\"DENY\"],\"type\":\"string\"},\"responsibilityId\":{\"format\":\"int64\",\"description\":\"Sorumluluklara yetki eslestirme\",\"type\":\"integer\"},\"responsibilityName\":{\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ResponsibilityPermissionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"do Lorem in\",\n \"createdDate\": \"1970-05-29T07:04:50.356Z\",\n \"id\": 40063625,\n \"lastModifiedBy\": \"aute Ut\",\n \"lastModifiedDate\": \"1947-11-28T04:53:03.722Z\",\n \"methodFullName\": \"pariatur\",\n \"methodId\": -38082883,\n \"permission\": \"ALLOW\",\n \"responsibilityId\": -38106563,\n \"responsibilityName\": \"fugiat dolore labore deserunt cupidatat\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ResponsibilityPermissionDTO\",\"description\":\"Sistemde tanimli olan sorumluluklara, yetki verme veya kisitlama yeridir. Sorumluluk ile methodlar eslestirilir. ALLOW, DENY secenekleri ile yetkilendirilir. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"methodFullName\":{\"type\":\"string\"},\"methodId\":{\"format\":\"int64\",\"description\":\"methodlara-yetkilere sorumluluk eslestirme\",\"type\":\"integer\"},\"permission\":{\"description\":\"Sorumlulugun, ilgili metoda ait, Yetki parametresidir.\",\"enum\":[\"ALLOW\",\"BLANK\",\"DENY\"],\"type\":\"string\"},\"responsibilityId\":{\"format\":\"int64\",\"description\":\"Sorumluluklara yetki eslestirme\",\"type\":\"integer\"},\"responsibilityName\":{\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ResponsibilityPermissionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"reprehenderit\",\n \"createdDate\": \"1993-05-17T13:59:30.499Z\",\n \"id\": -61654303,\n \"lastModifiedBy\": \"minim tempor dolore\",\n \"lastModifiedDate\": \"2006-03-11T16:41:56.014Z\",\n \"methodFullName\": \"ullamco ea irure dolor\",\n \"methodId\": 29354121,\n \"permission\": \"BLANK\",\n \"responsibilityId\": -88285845,\n \"responsibilityName\": \"non est laborum amet\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ResponsibilityPermissionDTO\",\"description\":\"Sistemde tanimli olan sorumluluklara, yetki verme veya kisitlama yeridir. Sorumluluk ile methodlar eslestirilir. ALLOW, DENY secenekleri ile yetkilendirilir. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"methodFullName\":{\"type\":\"string\"},\"methodId\":{\"format\":\"int64\",\"description\":\"methodlara-yetkilere sorumluluk eslestirme\",\"type\":\"integer\"},\"permission\":{\"description\":\"Sorumlulugun, ilgili metoda ait, Yetki parametresidir.\",\"enum\":[\"ALLOW\",\"BLANK\",\"DENY\"],\"type\":\"string\"},\"responsibilityId\":{\"format\":\"int64\",\"description\":\"Sorumluluklara yetki eslestirme\",\"type\":\"integer\"},\"responsibilityName\":{\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ResponsibilityPermissionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"laborum ipsum ad\",\n \"createdDate\": \"2001-04-09T23:44:58.250Z\",\n \"id\": 92531901,\n \"lastModifiedBy\": \"cillum sit\",\n \"lastModifiedDate\": \"1980-03-06T03:45:28.621Z\",\n \"methodFullName\": \"in non ut cons\",\n \"methodId\": -38728631,\n \"permission\": \"ALLOW\",\n \"responsibilityId\": 38437606,\n \"responsibilityName\": \"laborum ullamco mollit in consectetur\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ResponsibilityPermissionDTO\",\"description\":\"Sistemde tanimli olan sorumluluklara, yetki verme veya kisitlama yeridir. Sorumluluk ile methodlar eslestirilir. ALLOW, DENY secenekleri ile yetkilendirilir. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"methodFullName\":{\"type\":\"string\"},\"methodId\":{\"format\":\"int64\",\"description\":\"methodlara-yetkilere sorumluluk eslestirme\",\"type\":\"integer\"},\"permission\":{\"description\":\"Sorumlulugun, ilgili metoda ait, Yetki parametresidir.\",\"enum\":[\"ALLOW\",\"BLANK\",\"DENY\"],\"type\":\"string\"},\"responsibilityId\":{\"format\":\"int64\",\"description\":\"Sorumluluklara yetki eslestirme\",\"type\":\"integer\"},\"responsibilityName\":{\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ResponsibilityPermissionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/responsibility-permissions/count" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "countResponsibilityPermissions" + }, + "id": { + "element": "string", + "content": "countResponsibilityPermissionsUsingGET" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/responsibility-permissions/count{?id%2eequals,id%2egreaterOrEqualThan,id%2egreaterThan,id%2ein*,id%2elessOrEqualThan,id%2elessThan,id%2especified,methodId%2eequals,methodId%2egreaterOrEqualThan,methodId%2egreaterThan,methodId%2ein*,methodId%2elessOrEqualThan,methodId%2elessThan,methodId%2especified,permission%2eequals,permission%2ein*,permission%2especified,responsibilityId%2eequals,responsibilityId%2egreaterOrEqualThan,responsibilityId%2egreaterThan,responsibilityId%2ein*,responsibilityId%2elessOrEqualThan,responsibilityId%2elessThan,responsibilityId%2especified}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "methodId.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "methodId.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "methodId.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "methodId.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "methodId.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "methodId.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "methodId.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "permission.equals" + }, + "value": { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "ALLOW" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "BLANK" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "DENY" + } + ] + } + } + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "permission.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "ALLOW" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "BLANK" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "DENY" + } + ] + } + } + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "permission.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "responsibilityId.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "responsibilityId.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "responsibilityId.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "responsibilityId.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "responsibilityId.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "responsibilityId.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "responsibilityId.specified" + }, + "value": { + "element": "boolean" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"format\":\"int64\",\"type\":\"integer\"}" + }, + { + "element": "dataStructure", + "content": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'int64'" + } + } + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/responsibility-permissions/methods/save" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "updateResponsibilityPermissions" + }, + "id": { + "element": "string", + "content": "updateResponsibilityPermissionsUsingPUT" + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "[\n {\n \"className\": \"nulla Excepteur\",\n \"description\": \"cillum nulla Ut tempor\",\n \"id\": 19479677,\n \"methodFullName\": \"voluptate cupidatat proident nulla\",\n \"methodId\": -64799683,\n \"methodName\": \"laboris et do dolor\",\n \"packageName\": \"voluptate\",\n \"permission\": \"DENY\",\n \"responsibilityId\": -12015974,\n \"responsibilityName\": \"consequat\",\n \"userFriendlyName\": \"tempor et\"\n }\n]" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ResponsibilitiesPermissionsCheckVM\"},\"definitions\":{\"ResponsibilitiesPermissionsCheckVM\":{\"title\":\"ResponsibilitiesPermissionsCheckVM\",\"type\":\"object\",\"properties\":{\"className\":{\"type\":\"string\"},\"description\":{\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"methodFullName\":{\"type\":\"string\"},\"methodId\":{\"format\":\"int64\",\"type\":\"integer\"},\"methodName\":{\"type\":\"string\"},\"packageName\":{\"type\":\"string\"},\"permission\":{\"enum\":[\"ALLOW\",\"BLANK\",\"DENY\"],\"type\":\"string\"},\"responsibilityId\":{\"format\":\"int64\",\"type\":\"integer\"},\"responsibilityName\":{\"type\":\"string\"},\"userFriendlyName\":{\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/ResponsibilitiesPermissionsCheckVM" + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "[\n {\n \"className\": \"ulla\",\n \"description\": \"sit in reprehenderit qui\",\n \"id\": 47684365,\n \"methodFullName\": \"ut eu Ut\",\n \"methodId\": -32343065,\n \"methodName\": \"dolore\",\n \"packageName\": \"in anim\",\n \"permission\": \"BLANK\",\n \"responsibilityId\": -2913795,\n \"responsibilityName\": \"aliqua ad labore\",\n \"userFriendlyName\": \"aute Excepteur\"\n }\n]" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ResponsibilitiesPermissionsCheckVM\"},\"definitions\":{\"ResponsibilitiesPermissionsCheckVM\":{\"title\":\"ResponsibilitiesPermissionsCheckVM\",\"type\":\"object\",\"properties\":{\"className\":{\"type\":\"string\"},\"description\":{\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"methodFullName\":{\"type\":\"string\"},\"methodId\":{\"format\":\"int64\",\"type\":\"integer\"},\"methodName\":{\"type\":\"string\"},\"packageName\":{\"type\":\"string\"},\"permission\":{\"enum\":[\"ALLOW\",\"BLANK\",\"DENY\"],\"type\":\"string\"},\"responsibilityId\":{\"format\":\"int64\",\"type\":\"integer\"},\"responsibilityName\":{\"type\":\"string\"},\"userFriendlyName\":{\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/ResponsibilitiesPermissionsCheckVM" + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "[\n {\n \"className\": \"ullamco cupidatat\",\n \"description\": \"dolore minim\",\n \"id\": -32954376,\n \"methodFullName\": \"culpa\",\n \"methodId\": -76532924,\n \"methodName\": \"irure tempor occaecat reprehenderit ipsum\",\n \"packageName\": \"ullamco\",\n \"permission\": \"DENY\",\n \"responsibilityId\": -11954776,\n \"responsibilityName\": \"laborum sed consequat\",\n \"userFriendlyName\": \"incididunt\"\n }\n]" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ResponsibilitiesPermissionsCheckVM\"},\"definitions\":{\"ResponsibilitiesPermissionsCheckVM\":{\"title\":\"ResponsibilitiesPermissionsCheckVM\",\"type\":\"object\",\"properties\":{\"className\":{\"type\":\"string\"},\"description\":{\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"methodFullName\":{\"type\":\"string\"},\"methodId\":{\"format\":\"int64\",\"type\":\"integer\"},\"methodName\":{\"type\":\"string\"},\"packageName\":{\"type\":\"string\"},\"permission\":{\"enum\":[\"ALLOW\",\"BLANK\",\"DENY\"],\"type\":\"string\"},\"responsibilityId\":{\"format\":\"int64\",\"type\":\"integer\"},\"responsibilityName\":{\"type\":\"string\"},\"userFriendlyName\":{\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/ResponsibilitiesPermissionsCheckVM" + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "[\n {\n \"className\": \"\",\n \"description\": \"culpa aliquip aute\",\n \"id\": -88511446,\n \"methodFullName\": \"officia eu ad laboris minim\",\n \"methodId\": 9294012,\n \"methodName\": \"nisi nostrud consectetur\",\n \"packageName\": \"eiusmod quis nulla est\",\n \"permission\": \"ALLOW\",\n \"responsibilityId\": -22723769,\n \"responsibilityName\": \"eiusmod mollit qui enim\",\n \"userFriendlyName\": \"consectetur dolor\"\n }\n]" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ResponsibilitiesPermissionsCheckVM\"},\"definitions\":{\"ResponsibilitiesPermissionsCheckVM\":{\"title\":\"ResponsibilitiesPermissionsCheckVM\",\"type\":\"object\",\"properties\":{\"className\":{\"type\":\"string\"},\"description\":{\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"methodFullName\":{\"type\":\"string\"},\"methodId\":{\"format\":\"int64\",\"type\":\"integer\"},\"methodName\":{\"type\":\"string\"},\"packageName\":{\"type\":\"string\"},\"permission\":{\"enum\":[\"ALLOW\",\"BLANK\",\"DENY\"],\"type\":\"string\"},\"responsibilityId\":{\"format\":\"int64\",\"type\":\"integer\"},\"responsibilityName\":{\"type\":\"string\"},\"userFriendlyName\":{\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/ResponsibilitiesPermissionsCheckVM" + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "[\n {\n \"className\": \"ipsum\",\n \"description\": \"enim ut eu\",\n \"id\": 54473805,\n \"methodFullName\": \"culpa\",\n \"methodId\": 91676294,\n \"methodName\": \"in Excepteur sunt enim\",\n \"packageName\": \"voluptate in officia consequat\",\n \"permission\": \"BLANK\",\n \"responsibilityId\": 63319257,\n \"responsibilityName\": \"Duis id in fugiat\",\n \"userFriendlyName\": \"proident mollit consequat\"\n }\n]" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ResponsibilitiesPermissionsCheckVM\"},\"definitions\":{\"ResponsibilitiesPermissionsCheckVM\":{\"title\":\"ResponsibilitiesPermissionsCheckVM\",\"type\":\"object\",\"properties\":{\"className\":{\"type\":\"string\"},\"description\":{\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"methodFullName\":{\"type\":\"string\"},\"methodId\":{\"format\":\"int64\",\"type\":\"integer\"},\"methodName\":{\"type\":\"string\"},\"packageName\":{\"type\":\"string\"},\"permission\":{\"enum\":[\"ALLOW\",\"BLANK\",\"DENY\"],\"type\":\"string\"},\"responsibilityId\":{\"format\":\"int64\",\"type\":\"integer\"},\"responsibilityName\":{\"type\":\"string\"},\"userFriendlyName\":{\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/ResponsibilitiesPermissionsCheckVM" + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/responsibility-permissions/methods/{responsibilityId}" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getMethodDefinitionsMarkedByResponsibility" + }, + "id": { + "element": "string", + "content": "getMethodDefinitionsMarkedByResponsibilityUsingGET" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/responsibility-permissions/methods/{responsibilityId}{?methodName,page,permission,size,sort*}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "methodName" + } + }, + "content": { + "key": { + "element": "string", + "content": "methodName" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Page number of the requested page" + } + }, + "content": { + "key": { + "element": "string", + "content": "page" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "permission" + } + }, + "content": { + "key": { + "element": "string", + "content": "permission" + }, + "value": { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "ALLOW" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "BLANK" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "DENY" + } + ] + } + } + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "responsibilityId" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "responsibilityId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Size of a page" + } + }, + "content": { + "key": { + "element": "string", + "content": "size" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported." + } + }, + "content": { + "key": { + "element": "string", + "content": "sort" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ResponsibilitiesPermissionsCheckVM\"},\"definitions\":{\"ResponsibilitiesPermissionsCheckVM\":{\"title\":\"ResponsibilitiesPermissionsCheckVM\",\"type\":\"object\",\"properties\":{\"className\":{\"type\":\"string\"},\"description\":{\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"methodFullName\":{\"type\":\"string\"},\"methodId\":{\"format\":\"int64\",\"type\":\"integer\"},\"methodName\":{\"type\":\"string\"},\"packageName\":{\"type\":\"string\"},\"permission\":{\"enum\":[\"ALLOW\",\"BLANK\",\"DENY\"],\"type\":\"string\"},\"responsibilityId\":{\"format\":\"int64\",\"type\":\"integer\"},\"responsibilityName\":{\"type\":\"string\"},\"userFriendlyName\":{\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/ResponsibilitiesPermissionsCheckVM" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/responsibility-permissions/{id}" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getResponsibilityPermission" + }, + "id": { + "element": "string", + "content": "getResponsibilityPermissionUsingGET" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "id" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ResponsibilityPermissionDTO\",\"description\":\"Sistemde tanimli olan sorumluluklara, yetki verme veya kisitlama yeridir. Sorumluluk ile methodlar eslestirilir. ALLOW, DENY secenekleri ile yetkilendirilir. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"methodFullName\":{\"type\":\"string\"},\"methodId\":{\"format\":\"int64\",\"description\":\"methodlara-yetkilere sorumluluk eslestirme\",\"type\":\"integer\"},\"permission\":{\"description\":\"Sorumlulugun, ilgili metoda ait, Yetki parametresidir.\",\"enum\":[\"ALLOW\",\"BLANK\",\"DENY\"],\"type\":\"string\"},\"responsibilityId\":{\"format\":\"int64\",\"description\":\"Sorumluluklara yetki eslestirme\",\"type\":\"integer\"},\"responsibilityName\":{\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ResponsibilityPermissionDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "deleteResponsibilityPermission" + }, + "id": { + "element": "string", + "content": "deleteResponsibilityPermissionUsingDELETE" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "id" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "204" + } + }, + "content": [ + { + "element": "copy", + "content": "No Content" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "category", + "meta": { + "title": { + "element": "string", + "content": "bolge-resource" + }, + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "resourceGroup" + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Bolge Resource" + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/bolges" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Bolgeleri id ve isim olarak listeler." + }, + "id": { + "element": "string", + "content": "getAllBolges" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/bolges{?page,size,sort*}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Page number of the requested page" + } + }, + "content": { + "key": { + "element": "string", + "content": "page" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Size of a page" + } + }, + "content": { + "key": { + "element": "string", + "content": "size" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported." + } + }, + "content": { + "key": { + "element": "string", + "content": "sort" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Gets a list of all `BolgeLOV` entities." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "Successful" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/BolgeLOV\"},\"definitions\":{\"BolgeLOV\":{\"title\":\"BolgeLOV\",\"description\":\"Bolgeye ait tanimi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Bolge adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/BolgeLOV" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "category", + "meta": { + "title": { + "element": "string", + "content": "mintika-resource" + }, + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "resourceGroup" + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Mintika Resource" + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/bolges/{bolgeId}/mintikas" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Bir bölgeye ait bütün mıntıkaları id ve name bilgileri ile listeler." + }, + "id": { + "element": "string", + "content": "getAllMintikasByBolge" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/bolges/{bolgeId}/mintikas{?page,size,sort*}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Bölge idsi" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "bolgeId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Page number of the requested page" + } + }, + "content": { + "key": { + "element": "string", + "content": "page" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Size of a page" + } + }, + "content": { + "key": { + "element": "string", + "content": "size" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported." + } + }, + "content": { + "key": { + "element": "string", + "content": "sort" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Gets a list of all `MintikaLOV` entities by `Bolge`." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "Successful" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/MintikaLOV\"},\"definitions\":{\"MintikaLOV\":{\"title\":\"MintikaLOV\",\"description\":\"Mintika tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Mintika adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/MintikaLOV" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/mintikas" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Mıntıka listesini id ne name bilgileri ile verir." + }, + "id": { + "element": "string", + "content": "getAllMintikas" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/mintikas{?page,size,sort*}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Page number of the requested page" + } + }, + "content": { + "key": { + "element": "string", + "content": "page" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Size of a page" + } + }, + "content": { + "key": { + "element": "string", + "content": "size" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported." + } + }, + "content": { + "key": { + "element": "string", + "content": "sort" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Gets a list of all `MintikaLOV` entities." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "Successful" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/MintikaLOV\"},\"definitions\":{\"MintikaLOV\":{\"title\":\"MintikaLOV\",\"description\":\"Mintika tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Mintika adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/MintikaLOV" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "category", + "meta": { + "title": { + "element": "string", + "content": "individual-common-data-resource" + }, + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "resourceGroup" + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Individual Common Data Resource" + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/common/individual/blood-groups" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Tüm kan gruplarını döner" + }, + "id": { + "element": "string", + "content": "getAllBloodGroupLOVS" + } + }, + "content": [ + { + "element": "copy", + "content": "Kangrubu Listeleme Servisidir." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "Successful response - returns an array of `BloodGroupLOV` entities." + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/BloodGroupDTO\"},\"definitions\":{\"BloodGroupDTO\":{\"title\":\"Root Type for InternalEducationGradeDTO\",\"description\":\"Kangurubu Veri Modeli\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Oluşturan Kullanıcı\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Oluşturulma Tarihi\",\"type\":\"string\"},\"description\":{\"description\":\"Açıklama\",\"type\":\"string\"},\"id\":{\"format\":\"int32\",\"description\":\"ID unique alan\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son Güncelleyen\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son Güncellenme Zamanı\",\"type\":\"string\"},\"name\":{\"description\":\"İsmi\",\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Sıralama Öncelik Bilgisi\",\"type\":\"integer\"},\"status\":{\"description\":\"Aktiflik Pasiflik Bilgisi\",\"type\":\"boolean\"}},\"examples\":[{\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"description\":\"some text\",\"id\":79,\"lastModifiedBy\":\"some text\",\"lastModifiedDate\":\"2018-02-10T09:30Z\",\"name\":\"some text\",\"orderPriority\":31,\"status\":true}]}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/BloodGroupDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Kangrubu Ekleme Servisi" + }, + "id": { + "element": "string", + "content": "createBloodGroup" + } + }, + "content": [ + { + "element": "copy", + "content": "Kangrubu Ekleme Servisi" + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"Root Type for InternalEducationGradeDTO\",\"description\":\"Kangurubu Veri Modeli\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Oluşturan Kullanıcı\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Oluşturulma Tarihi\",\"type\":\"string\"},\"description\":{\"description\":\"Açıklama\",\"type\":\"string\"},\"id\":{\"format\":\"int32\",\"description\":\"ID unique alan\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son Güncelleyen\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son Güncellenme Zamanı\",\"type\":\"string\"},\"name\":{\"description\":\"İsmi\",\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Sıralama Öncelik Bilgisi\",\"type\":\"integer\"},\"status\":{\"description\":\"Aktiflik Pasiflik Bilgisi\",\"type\":\"boolean\"}},\"examples\":[{\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"description\":\"some text\",\"id\":79,\"lastModifiedBy\":\"some text\",\"lastModifiedDate\":\"2018-02-10T09:30Z\",\"name\":\"some text\",\"orderPriority\":31,\"status\":true}]}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/BloodGroupDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem Başarılı" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/common/individual/blood-groups/lov" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Key Value, Kangurubu Listesi Servisidir." + } + }, + "content": [ + { + "element": "copy", + "content": "Key Value, Kangurubu Listesi Servisidir." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem Başarılı" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/common/individual/blood-groups/{id}" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Kangrubu Güncelleme Servisi" + }, + "id": { + "element": "string", + "content": "updateBloodGroup" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Kan grubu id bilgisi" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Kangrubu Güncelleme Servisi" + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"Root Type for InternalEducationGradeDTO\",\"description\":\"Kangurubu Veri Modeli\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Oluşturan Kullanıcı\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Oluşturulma Tarihi\",\"type\":\"string\"},\"description\":{\"description\":\"Açıklama\",\"type\":\"string\"},\"id\":{\"format\":\"int32\",\"description\":\"ID unique alan\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son Güncelleyen\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son Güncellenme Zamanı\",\"type\":\"string\"},\"name\":{\"description\":\"İsmi\",\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Sıralama Öncelik Bilgisi\",\"type\":\"integer\"},\"status\":{\"description\":\"Aktiflik Pasiflik Bilgisi\",\"type\":\"boolean\"}},\"examples\":[{\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"description\":\"some text\",\"id\":79,\"lastModifiedBy\":\"some text\",\"lastModifiedDate\":\"2018-02-10T09:30Z\",\"name\":\"some text\",\"orderPriority\":31,\"status\":true}]}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/BloodGroupDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem Başarılı" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Kangurubu Silme Servisi" + }, + "id": { + "element": "string", + "content": "delIndividualBloodGroups" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Kan grubu id bilgisi" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Kangurubu Silme Servisi" + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem Başarılı" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/common/individual/citizen-number-verify/offline/{citizenNumber}" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Offline tc kimlik numara doğrulaması yapar." + }, + "id": { + "element": "string", + "content": "verifyCitizenNumberOffline" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Citizen number" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "citizenNumber" + }, + "value": { + "element": "string" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Gets a list of all `DiseaseLOV` entities." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "Successful" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Validation exception" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/common/individual/citizen-number-verify/online" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Offline tc kimlik numara doğrulaması yapar." + }, + "id": { + "element": "string", + "content": "verifyCitizenNumberOnline" + } + }, + "content": [ + { + "element": "copy", + "content": "Offline tc kimlik numara doğrulaması yapar. Offline tc kimlik dogrulamasi sadece tc kimlik numarasının tc kimlik oluşturma kurallarına uygunluğunu kontrol eder. Devletin herhangi bir sistemine sorgulama yaparak tc kimligin varlıgı yoklugu gibi bir bilgi sorgulanmaz. Örneğin ; Tc no 11 karakter mi ? Çift sayı ile bitiyor mu ?" + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"birthYear\": \"dolore\",\n \"citizenNumber\": \"ipsum aute nisi occaecat magna\",\n \"firstName\": \"nulla sunt exercitation\",\n \"lastName\": \"velit dolor esse\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"CitizenNumberVerify\",\"description\":\"Tc kimlik numarasını DOĞRULAYABİLMEK İÇİN gerekli olan bilgileri içerir. long string string int https://tckimlik.nvi.gov.tr/Service/KPSPublic.asmx?op=TCKimlikNoDogrula\",\"type\":\"object\",\"properties\":{\"birthYear\":{\"description\":\"Dogum Tarihi\",\"type\":\"string\"},\"citizenNumber\":{\"description\":\"Vatandaslik numarasi\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adi\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadi\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CitizenNumberVerify" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "Successful" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"birthYear\": \"labore\",\n \"citizenNumber\": \"ea irure\",\n \"firstName\": \"pariatur Lorem exercitation\",\n \"lastName\": \"sunt laborum\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"CitizenNumberVerify\",\"description\":\"Tc kimlik numarasını DOĞRULAYABİLMEK İÇİN gerekli olan bilgileri içerir. long string string int https://tckimlik.nvi.gov.tr/Service/KPSPublic.asmx?op=TCKimlikNoDogrula\",\"type\":\"object\",\"properties\":{\"birthYear\":{\"description\":\"Dogum Tarihi\",\"type\":\"string\"},\"citizenNumber\":{\"description\":\"Vatandaslik numarasi\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adi\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadi\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CitizenNumberVerify" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"birthYear\": \"in\",\n \"citizenNumber\": \"dolor minim fugiat reprehenderit\",\n \"firstName\": \"amet nisi et voluptate commodo\",\n \"lastName\": \"aliquip non in irure\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"CitizenNumberVerify\",\"description\":\"Tc kimlik numarasını DOĞRULAYABİLMEK İÇİN gerekli olan bilgileri içerir. long string string int https://tckimlik.nvi.gov.tr/Service/KPSPublic.asmx?op=TCKimlikNoDogrula\",\"type\":\"object\",\"properties\":{\"birthYear\":{\"description\":\"Dogum Tarihi\",\"type\":\"string\"},\"citizenNumber\":{\"description\":\"Vatandaslik numarasi\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adi\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadi\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CitizenNumberVerify" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"birthYear\": \"amet reprehenderit commodo\",\n \"citizenNumber\": \"sunt aliqua proident amet\",\n \"firstName\": \"ut aliquip id\",\n \"lastName\": \"in\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"CitizenNumberVerify\",\"description\":\"Tc kimlik numarasını DOĞRULAYABİLMEK İÇİN gerekli olan bilgileri içerir. long string string int https://tckimlik.nvi.gov.tr/Service/KPSPublic.asmx?op=TCKimlikNoDogrula\",\"type\":\"object\",\"properties\":{\"birthYear\":{\"description\":\"Dogum Tarihi\",\"type\":\"string\"},\"citizenNumber\":{\"description\":\"Vatandaslik numarasi\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adi\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadi\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CitizenNumberVerify" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"birthYear\": \"ipsum consectetur\",\n \"citizenNumber\": \"veniam\",\n \"firstName\": \"magna cillum minim cupida\",\n \"lastName\": \"ullamco dolor Ut nostrud\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"CitizenNumberVerify\",\"description\":\"Tc kimlik numarasını DOĞRULAYABİLMEK İÇİN gerekli olan bilgileri içerir. long string string int https://tckimlik.nvi.gov.tr/Service/KPSPublic.asmx?op=TCKimlikNoDogrula\",\"type\":\"object\",\"properties\":{\"birthYear\":{\"description\":\"Dogum Tarihi\",\"type\":\"string\"},\"citizenNumber\":{\"description\":\"Vatandaslik numarasi\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adi\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadi\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CitizenNumberVerify" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"birthYear\": \"deserunt sed\",\n \"citizenNumber\": \"dolor velit eiusmod sit\",\n \"firstName\": \"veniam elit nulla velit adipisicing\",\n \"lastName\": \"occaecat quis laboris ex consequat\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"CitizenNumberVerify\",\"description\":\"Tc kimlik numarasını DOĞRULAYABİLMEK İÇİN gerekli olan bilgileri içerir. long string string int https://tckimlik.nvi.gov.tr/Service/KPSPublic.asmx?op=TCKimlikNoDogrula\",\"type\":\"object\",\"properties\":{\"birthYear\":{\"description\":\"Dogum Tarihi\",\"type\":\"string\"},\"citizenNumber\":{\"description\":\"Vatandaslik numarasi\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adi\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadi\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CitizenNumberVerify" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Validation exception" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/common/individual/citizenships/lov" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Key Value şeklide Ülke bilgisi doner. (Vatandaşlık Servisi)" + }, + "id": { + "element": "string", + "content": "getAllCitizenshipLOV" + } + }, + "content": [ + { + "element": "copy", + "content": "Key Value şeklide Ülke bilgisi doner. (Vatandaşlık Servisi)" + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem Başarılı" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"CitizenshipLOV\",\"description\":\"Vatandaşlık bilgilerini taşır\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Vatan adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CitizenshipLOV" + } + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/common/individual/citizenships" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getAllCitizenship" + }, + "id": { + "element": "string", + "content": "getAllCitizenshipUsingGET" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/common/individual/citizenships{?page,size,sort*}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Page number of the requested page" + } + }, + "content": { + "key": { + "element": "string", + "content": "page" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Size of a page" + } + }, + "content": { + "key": { + "element": "string", + "content": "size" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported." + } + }, + "content": { + "key": { + "element": "string", + "content": "sort" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/CitizenshipLOV\"},\"definitions\":{\"CitizenshipLOV\":{\"title\":\"CitizenshipLOV\",\"description\":\"Vatandaşlık bilgilerini taşır\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Vatan adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/CitizenshipLOV" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/common/individual/diseases" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Hastalık Listeleme Servisi" + }, + "id": { + "element": "string", + "content": "getAllDiseases" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/common/individual/diseases{?page,size,sort*}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Page number of the requested page" + } + }, + "content": { + "key": { + "element": "string", + "content": "page" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Size of a page" + } + }, + "content": { + "key": { + "element": "string", + "content": "size" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported." + } + }, + "content": { + "key": { + "element": "string", + "content": "sort" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Gets a list of all `DiseaseLOV` entities." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "Successful response - returns an array of `DiseaseLOV` entities." + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/DiseaseLOV\"},\"definitions\":{\"DiseaseLOV\":{\"title\":\"DiseaseLOV\",\"description\":\"Hastalık bilgilerini tutar. Hastalıklar etiket olarak tanımlanabilir.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Hastaligin adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/DiseaseLOV" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Hastalık Ekleme Servisi" + }, + "id": { + "element": "string", + "content": "createDiseases" + } + }, + "content": [ + { + "element": "copy", + "content": "Hastalık Ekleme Servisi" + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"DiseaseLOV\",\"description\":\"Hastalık bilgilerini tutar. Hastalıklar etiket olarak tanımlanabilir.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Hastaligin adi\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/DiseaseLOV" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem Başarılı" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/common/individual/diseases/{id}" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Hastalık Silme Servisi" + }, + "id": { + "element": "string", + "content": "delDisease" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Hastalık id bilgisi" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Hastalık Silme Servisi" + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem Başarılı" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/common/individual/education-categories" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Tüm egitim kademelerini doner" + }, + "id": { + "element": "string", + "content": "getAllEducationCategories" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/common/individual/education-categories{?page,size,sort*}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Page number of the requested page" + } + }, + "content": { + "key": { + "element": "string", + "content": "page" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Size of a page" + } + }, + "content": { + "key": { + "element": "string", + "content": "size" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported." + } + }, + "content": { + "key": { + "element": "string", + "content": "sort" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Gets a list of all `EducationalStageLOV` entities." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "Successful response - returns an array of `EducationalStageLOV` entities." + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/EducationalStageDTO\"},\"definitions\":{\"EducationalStageDTO\":{\"title\":\"Root Type for InternalEducationGradeDTO\",\"description\":\"Eğitim kategorilerini tutar. Örneğin; Ön lisans, Lisans vb.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Oluşturan Kullanıcı\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Oluşturulma Tarihi\",\"type\":\"string\"},\"description\":{\"description\":\"Açıklama\",\"type\":\"string\"},\"id\":{\"format\":\"int32\",\"description\":\"ID unique alan\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son Güncelleyen\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son Güncellenme Zamanı\",\"type\":\"string\"},\"name\":{\"description\":\"İsmi\",\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Sıralama Öncelik Bilgisi\",\"type\":\"integer\"},\"status\":{\"description\":\"Aktiflik Pasiflik Bilgisi\",\"type\":\"boolean\"}},\"examples\":[{\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"description\":\"some text\",\"id\":79,\"lastModifiedBy\":\"some text\",\"lastModifiedDate\":\"2018-02-10T09:30Z\",\"name\":\"some text\",\"orderPriority\":31,\"status\":true}]}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/EducationalStageDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Yeni Eğitim kademesi ekleyen servistir." + }, + "id": { + "element": "string", + "content": "createEducationalStage" + } + }, + "content": [ + { + "element": "copy", + "content": "Yeni Eğitim kademesi ekleyen servistir." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"Root Type for InternalEducationGradeDTO\",\"description\":\"Eğitim kategorilerini tutar. Örneğin; Ön lisans, Lisans vb.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Oluşturan Kullanıcı\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Oluşturulma Tarihi\",\"type\":\"string\"},\"description\":{\"description\":\"Açıklama\",\"type\":\"string\"},\"id\":{\"format\":\"int32\",\"description\":\"ID unique alan\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son Güncelleyen\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son Güncellenme Zamanı\",\"type\":\"string\"},\"name\":{\"description\":\"İsmi\",\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Sıralama Öncelik Bilgisi\",\"type\":\"integer\"},\"status\":{\"description\":\"Aktiflik Pasiflik Bilgisi\",\"type\":\"boolean\"}},\"examples\":[{\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"description\":\"some text\",\"id\":79,\"lastModifiedBy\":\"some text\",\"lastModifiedDate\":\"2018-02-10T09:30Z\",\"name\":\"some text\",\"orderPriority\":31,\"status\":true}]}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/EducationalStageDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem Başarılı" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/common/individual/education-categories/lov" + } + } + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/common/individual/education-categories/{id}" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Eğitim kademesi guncelleyen servis" + }, + "id": { + "element": "string", + "content": "updateEducationalStage" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Eğitim kademesi id bilgisi" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Eğitim kademesi guncelleyen servis" + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"Root Type for InternalEducationGradeDTO\",\"description\":\"Eğitim kategorilerini tutar. Örneğin; Ön lisans, Lisans vb.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Oluşturan Kullanıcı\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Oluşturulma Tarihi\",\"type\":\"string\"},\"description\":{\"description\":\"Açıklama\",\"type\":\"string\"},\"id\":{\"format\":\"int32\",\"description\":\"ID unique alan\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son Güncelleyen\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son Güncellenme Zamanı\",\"type\":\"string\"},\"name\":{\"description\":\"İsmi\",\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Sıralama Öncelik Bilgisi\",\"type\":\"integer\"},\"status\":{\"description\":\"Aktiflik Pasiflik Bilgisi\",\"type\":\"boolean\"}},\"examples\":[{\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"description\":\"some text\",\"id\":79,\"lastModifiedBy\":\"some text\",\"lastModifiedDate\":\"2018-02-10T09:30Z\",\"name\":\"some text\",\"orderPriority\":31,\"status\":true}]}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/EducationalStageDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem Başarılı" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Eğitim kademesi silmek için kullanılacak Servistir." + }, + "id": { + "element": "string", + "content": "delEducationalStage" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Eğitim kademesi id bilgisi" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Eğitim kademesi silmek için kullanılacak Servistir." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem Başarılı" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/common/individual/genders" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Gets a list of all genders" + }, + "id": { + "element": "string", + "content": "getAllGenders" + } + }, + "content": [ + { + "element": "copy", + "content": "Gets a list of all `GenderLOV` entities." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "Successful response - returns an array of `GenderLOV` entities." + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/GenderDTO\"},\"definitions\":{\"GenderDTO\":{\"title\":\"Root Type for InternalEducationGradeDTO\",\"description\":\"Cinsiyet tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Oluşturan Kullanıcı\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Oluşturulma Tarihi\",\"type\":\"string\"},\"description\":{\"description\":\"Açıklama\",\"type\":\"string\"},\"id\":{\"format\":\"int32\",\"description\":\"ID unique alan\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son Güncelleyen\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son Güncellenme Zamanı\",\"type\":\"string\"},\"name\":{\"description\":\"İsmi\",\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Sıralama Öncelik Bilgisi\",\"type\":\"integer\"},\"status\":{\"description\":\"Aktiflik Pasiflik Bilgisi\",\"type\":\"boolean\"}},\"examples\":[{\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"description\":\"some text\",\"id\":79,\"lastModifiedBy\":\"some text\",\"lastModifiedDate\":\"2018-02-10T09:30Z\",\"name\":\"some text\",\"orderPriority\":31,\"status\":true}]}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/GenderDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Cinsiyet Ekleme Servisi" + }, + "id": { + "element": "string", + "content": "createGender" + } + }, + "content": [ + { + "element": "copy", + "content": "Cinsiyet Ekleme Servisi" + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"Root Type for InternalEducationGradeDTO\",\"description\":\"Cinsiyet tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Oluşturan Kullanıcı\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Oluşturulma Tarihi\",\"type\":\"string\"},\"description\":{\"description\":\"Açıklama\",\"type\":\"string\"},\"id\":{\"format\":\"int32\",\"description\":\"ID unique alan\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son Güncelleyen\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son Güncellenme Zamanı\",\"type\":\"string\"},\"name\":{\"description\":\"İsmi\",\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Sıralama Öncelik Bilgisi\",\"type\":\"integer\"},\"status\":{\"description\":\"Aktiflik Pasiflik Bilgisi\",\"type\":\"boolean\"}},\"examples\":[{\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"description\":\"some text\",\"id\":79,\"lastModifiedBy\":\"some text\",\"lastModifiedDate\":\"2018-02-10T09:30Z\",\"name\":\"some text\",\"orderPriority\":31,\"status\":true}]}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/GenderDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "Successful" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/common/individual/genders/lov" + } + } + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/common/individual/hafiz-statuses" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Tüm hafızlık durumlarını döner" + }, + "id": { + "element": "string", + "content": "getAllHafizStatuses" + } + }, + "content": [ + { + "element": "copy", + "content": "Gets a list of all `HafizStatusLOV` entities." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "Successful response - returns an array of `HafizStatusLOV` entities." + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/HafizStatusLOV\"},\"definitions\":{\"HafizStatusLOV\":{\"title\":\"HafizStatusLOV\",\"description\":\"Hafızlık durumlarının tanımlarıdır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Hafizlik durum adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/HafizStatusLOV" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/common/individual/languages" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "List All LanguageLOVS" + }, + "id": { + "element": "string", + "content": "getAllLanguages" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/common/individual/languages{?page,size,sort*}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Page number of the requested page" + } + }, + "content": { + "key": { + "element": "string", + "content": "page" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Size of a page" + } + }, + "content": { + "key": { + "element": "string", + "content": "size" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported." + } + }, + "content": { + "key": { + "element": "string", + "content": "sort" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Gets a list of all `LanguageCodeLOV` entities." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "Successful response - returns an array of `LanguageCodeLOV` entities." + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/LanguageCodeLOV\"},\"definitions\":{\"LanguageCodeLOV\":{\"title\":\"LanguageCodeLOV\",\"description\":\"* Sabit tanımlanmış dil bilgisini tutar. Comboboxlar için dil listesi dönmek için kullanılmaktadır. ForeignLanguage bilgisi ile aynı veriyi sağlamaz. Bu dto içerisinde sadece sistem ( translation vb. ) işlemlerinde kullanılabilir dil bilgileri yer alır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"englishName\":{\"description\":\"Dil bilgisi ingilizce adi\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Dil bilgisi adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/LanguageCodeLOV" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/common/individual/marital-statuses" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Gets a list of all marital statuses" + }, + "id": { + "element": "string", + "content": "getAllMaritalStatuses" + } + }, + "content": [ + { + "element": "copy", + "content": "Gets a list of all `MaritalStatusLOV` entities." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "Successful response - returns an array of `MaritalStatusLOV` entities." + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/MaritalStatusLOV\"},\"definitions\":{\"MaritalStatusLOV\":{\"title\":\"MaritalStatusLOV\",\"description\":\"Medeni hal durum tanimlerini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/MaritalStatusLOV" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/common/individual/mazhabs" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Tüm mezhepleri döner" + }, + "id": { + "element": "string", + "content": "getAllMazhabs" + } + }, + "content": [ + { + "element": "copy", + "content": "Gets a list of all `MazhabLOV` entities." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "Successful response - returns an array of `MazhabLOV` entities." + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/MazhabLOV\"},\"definitions\":{\"MazhabLOV\":{\"title\":\"MazhabLOV\",\"description\":\"Mezhep tanımını tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Mezhep adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/MazhabLOV" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/common/individual/measurement-unit/length" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "List All LengthMeasurementUnitLOVS" + }, + "id": { + "element": "string", + "content": "getAllLengthMeasurementUnitLOVS" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/common/individual/measurement-unit/length{?page,size,sort*}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Page number of the requested page" + } + }, + "content": { + "key": { + "element": "string", + "content": "page" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Size of a page" + } + }, + "content": { + "key": { + "element": "string", + "content": "size" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported." + } + }, + "content": { + "key": { + "element": "string", + "content": "sort" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Gets a list of all `LengthMeasurementUnitLOV` entities." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "Successful response - returns an array of `LengthMeasurementUnitLOV` entities." + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/LengthMeasurementUnitLOV\"},\"definitions\":{\"LengthMeasurementUnitLOV\":{\"title\":\"LengthMeasurementUnitLOV\",\"description\":\"Uzunluk ölçü birimleridir. Ölçüm sistemi farketmez. Örneğin : cm, metre, desimetre, mil, km vb.. \",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/LengthMeasurementUnitLOV" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/common/individual/measurement-unit/weight" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "List All WeightMeasurementUnitLOVS" + }, + "id": { + "element": "string", + "content": "getAllWeightMeasurementUnitLOVS" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/common/individual/measurement-unit/weight{?page,size,sort*}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Page number of the requested page" + } + }, + "content": { + "key": { + "element": "string", + "content": "page" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Size of a page" + } + }, + "content": { + "key": { + "element": "string", + "content": "size" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported." + } + }, + "content": { + "key": { + "element": "string", + "content": "sort" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Gets a list of all `WeightMeasurementUnitLOV` entities." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "Successful response - returns an array of `WeightMeasurementUnitLOV` entities." + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/WeightMeasurementUnitLOV\"},\"definitions\":{\"WeightMeasurementUnitLOV\":{\"title\":\"WeightMeasurementUnitLOV\",\"description\":\"Ağırlık ölçü birimleridir. Ölçüm sistemi farketmez. Örneğin : kg, gr, ton, galon vb..\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Agirlik birim adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/WeightMeasurementUnitLOV" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/common/individual/rabita-statuses" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Tüm rabıta durumlarını döner" + }, + "id": { + "element": "string", + "content": "getAllRabitaLOVS" + } + }, + "content": [ + { + "element": "copy", + "content": "Gets a list of all `RabitaLOV` entities." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "Successful response - returns an array of `RabitaLOV` entities." + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/RabitaLOV\"},\"definitions\":{\"RabitaLOV\":{\"title\":\"RabitaLOV\",\"description\":\"Vazife durumunu ifade eder. Örneğin : Ön vazifeli, Var, Yok gibi değerler alır. Bunlar şunu ifade eder rabıtası var, rabıtası yok, tesbihli.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Rabita adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/RabitaLOV" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/common/students/classifications" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "List All StudentClassificationLOVS" + }, + "id": { + "element": "string", + "content": "getAllStudentClassificationLOVS" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/common/students/classifications{?page,size,sort*}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Page number of the requested page" + } + }, + "content": { + "key": { + "element": "string", + "content": "page" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Size of a page" + } + }, + "content": { + "key": { + "element": "string", + "content": "size" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported." + } + }, + "content": { + "key": { + "element": "string", + "content": "sort" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Gets a list of all `StudentClassificationLOV` entities." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "Successful response - returns an array of `StudentClassificationLOV` entities." + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/StudentClassificationLOV\"},\"definitions\":{\"StudentClassificationLOV\":{\"title\":\"StudentClassificationLOV\",\"description\":\"Talebe nevileridir. Örneğin; Orta okul, lise, üniversite, daimi, tekamul, daimi ortaokul, üniversite hazırlık\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Talebe nevi adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/StudentClassificationLOV" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/common/students/document-types" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "List All StudentDocumentTypeLOVS" + }, + "id": { + "element": "string", + "content": "getAllStudentDocumentTypeLOVS" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/common/students/document-types{?page,size,sort*}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Page number of the requested page" + } + }, + "content": { + "key": { + "element": "string", + "content": "page" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Size of a page" + } + }, + "content": { + "key": { + "element": "string", + "content": "size" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported." + } + }, + "content": { + "key": { + "element": "string", + "content": "sort" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Gets a list of all `DocumentTypeLOV` entities." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "Successful response - returns an array of `DocumentTypeLOV` entities." + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/DocumentTypeLOV\"},\"definitions\":{\"DocumentTypeLOV\":{\"title\":\"DocumentTypeLOV\",\"description\":\"Dökümanların tiplerinin tutulduğu yerdir. Örneğin : Transkript, öğrenci belgesi, ehliyet fotokopisi, İskan, KatPlanı, Ruhsat, Resim, Vergi levhası vs.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/DocumentTypeLOV" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/common/students/formal-education-grade" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "List All FormalEducationGradeLOVS" + }, + "id": { + "element": "string", + "content": "getAllFormalEducationGradeLOVS" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/common/students/formal-education-grade{?page,size,sort*}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Page number of the requested page" + } + }, + "content": { + "key": { + "element": "string", + "content": "page" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Size of a page" + } + }, + "content": { + "key": { + "element": "string", + "content": "size" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported." + } + }, + "content": { + "key": { + "element": "string", + "content": "sort" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Gets a list of all `FormalEducationGradeLOV` entities." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "Tree yapısında dönüş yampası planlanıyor" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/FormalEducationGradeLOV\"},\"definitions\":{\"FormalEducationGradeLOV\":{\"title\":\"FormalEducationGradeLOV\",\"description\":\"Örgün eğitime ait okul seviyelerini tutar. Örneğin; Orta okul 1.Sınıf, Meslek lisesi 2.Sınıf, Üniversite 3.Sınıf vb.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Okul seviye adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/FormalEducationGradeLOV" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/common/students/guardian-types" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "List All StudentParentTypeLOVS" + }, + "id": { + "element": "string", + "content": "getAllStudentGuardianTypeLOVS" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/common/students/guardian-types{?page,size,sort*}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Page number of the requested page" + } + }, + "content": { + "key": { + "element": "string", + "content": "page" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Size of a page" + } + }, + "content": { + "key": { + "element": "string", + "content": "size" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported." + } + }, + "content": { + "key": { + "element": "string", + "content": "sort" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Gets a list of all `StudentParentTypeLOV` entities." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "Successful response - returns an array of `StudentParentTypeLOV` entities." + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/StudentGuardianTypeLOV\"},\"definitions\":{\"StudentGuardianTypeLOV\":{\"title\":\"StudentGuardianTypeLOV\",\"description\":\"Talebelerin velisinin yakınlık tipidir. Annesi, Babasi, Amcasi vs.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Veli tipi adi. \",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/StudentGuardianTypeLOV" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/common/students/internal-education-grade" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "List All InternalEducationGradeLOVS" + }, + "id": { + "element": "string", + "content": "getAllInternalEducationGradeLOVS" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/common/students/internal-education-grade{?page,size,sort*}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Page number of the requested page" + } + }, + "content": { + "key": { + "element": "string", + "content": "page" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Size of a page" + } + }, + "content": { + "key": { + "element": "string", + "content": "size" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported." + } + }, + "content": { + "key": { + "element": "string", + "content": "sort" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Gets a list of all `InternalEducationGradeLOV` entities." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "Tree yapısında dönüş yampası planlanıyor" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/InternalEducationGradeLOV\"},\"definitions\":{\"InternalEducationGradeLOV\":{\"title\":\"InternalEducationGradeLOV\",\"description\":\"Dahili eğitim seviyeleri. Örneğin; S1, S2, S3, S4, S5, S6, S7, ibtidai, ihzari, tekamul altı, tekamul, üniversite Kuran-ı Kerim\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Dahili egitim seviyesi adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/InternalEducationGradeLOV" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/common/individual/professions" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Gets a list of all professions" + }, + "id": { + "element": "string", + "content": "getAllProfessions" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/common/individual/professions{?page,size,sort*}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Page number of the requested page" + } + }, + "content": { + "key": { + "element": "string", + "content": "page" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Size of a page" + } + }, + "content": { + "key": { + "element": "string", + "content": "size" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported." + } + }, + "content": { + "key": { + "element": "string", + "content": "sort" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Gets a list of all `ProfessionLOV` entities." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "Successful response - returns an array of `ProfessionLOV` entities." + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ProfessionLOV\"},\"definitions\":{\"ProfessionLOV\":{\"title\":\"ProfessionLOV\",\"description\":\"Meslek tanımlarını tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Meslek adı\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/ProfessionLOV" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz." + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Yeni meslek eklemek için kullanılır" + }, + "id": { + "element": "string", + "content": "createProfession" + } + }, + "content": [ + { + "element": "copy", + "content": "Yeni meslek tanımlamak için kullanılır." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"Root Type for ProfessionDTO\",\"description\":\"Meslek tanımlarını tutan dtodur.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Meslek adı\",\"type\":\"string\"},\"description\":{\"description\":\"Meslek açıklaması\",\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\": 1,\\n \\\"name\\\": \\\"\\\",\\n \\\"description\\\": \\\"\\\"\\n}\"]}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ProfessionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"Root Type for ProfessionDTO\",\"description\":\"Meslek tanımlarını tutan dtodur.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Meslek adı\",\"type\":\"string\"},\"description\":{\"description\":\"Meslek açıklaması\",\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\": 1,\\n \\\"name\\\": \\\"\\\",\\n \\\"description\\\": \\\"\\\"\\n}\"]}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ProfessionDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"Root Type for ProfessionDTO\",\"description\":\"Meslek tanımlarını tutan dtodur.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Meslek adı\",\"type\":\"string\"},\"description\":{\"description\":\"Meslek açıklaması\",\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\": 1,\\n \\\"name\\\": \\\"\\\",\\n \\\"description\\\": \\\"\\\"\\n}\"]}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ProfessionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"Root Type for ProfessionDTO\",\"description\":\"Meslek tanımlarını tutan dtodur.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Meslek adı\",\"type\":\"string\"},\"description\":{\"description\":\"Meslek açıklaması\",\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\": 1,\\n \\\"name\\\": \\\"\\\",\\n \\\"description\\\": \\\"\\\"\\n}\"]}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ProfessionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"Root Type for ProfessionDTO\",\"description\":\"Meslek tanımlarını tutan dtodur.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Meslek adı\",\"type\":\"string\"},\"description\":{\"description\":\"Meslek açıklaması\",\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\": 1,\\n \\\"name\\\": \\\"\\\",\\n \\\"description\\\": \\\"\\\"\\n}\"]}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ProfessionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"Root Type for ProfessionDTO\",\"description\":\"Meslek tanımlarını tutan dtodur.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Meslek adı\",\"type\":\"string\"},\"description\":{\"description\":\"Meslek açıklaması\",\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\": 1,\\n \\\"name\\\": \\\"\\\",\\n \\\"description\\\": \\\"\\\"\\n}\"]}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ProfessionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"Root Type for ProfessionDTO\",\"description\":\"Meslek tanımlarını tutan dtodur.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Meslek adı\",\"type\":\"string\"},\"description\":{\"description\":\"Meslek açıklaması\",\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\": 1,\\n \\\"name\\\": \\\"\\\",\\n \\\"description\\\": \\\"\\\"\\n}\"]}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ProfessionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz." + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Profession Id" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + }, + "href": { + "element": "string", + "content": "/api/sbt/common/individual/professions/{id}" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Meslek bilgilerini günceller" + }, + "id": { + "element": "string", + "content": "updateProfession" + } + }, + "content": [ + { + "element": "copy", + "content": "Meslek bilgisini günceller" + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"Root Type for ProfessionDTO\",\"description\":\"Meslek tanımlarını tutan dtodur.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Meslek adı\",\"type\":\"string\"},\"description\":{\"description\":\"Meslek açıklaması\",\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\": 1,\\n \\\"name\\\": \\\"\\\",\\n \\\"description\\\": \\\"\\\"\\n}\"]}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ProfessionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "202" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"Root Type for ProfessionDTO\",\"description\":\"Meslek tanımlarını tutan dtodur.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Meslek adı\",\"type\":\"string\"},\"description\":{\"description\":\"Meslek açıklaması\",\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\": 1,\\n \\\"name\\\": \\\"\\\",\\n \\\"description\\\": \\\"\\\"\\n}\"]}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ProfessionDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"Root Type for ProfessionDTO\",\"description\":\"Meslek tanımlarını tutan dtodur.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Meslek adı\",\"type\":\"string\"},\"description\":{\"description\":\"Meslek açıklaması\",\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\": 1,\\n \\\"name\\\": \\\"\\\",\\n \\\"description\\\": \\\"\\\"\\n}\"]}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ProfessionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"Root Type for ProfessionDTO\",\"description\":\"Meslek tanımlarını tutan dtodur.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Meslek adı\",\"type\":\"string\"},\"description\":{\"description\":\"Meslek açıklaması\",\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\": 1,\\n \\\"name\\\": \\\"\\\",\\n \\\"description\\\": \\\"\\\"\\n}\"]}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ProfessionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"Root Type for ProfessionDTO\",\"description\":\"Meslek tanımlarını tutan dtodur.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Meslek adı\",\"type\":\"string\"},\"description\":{\"description\":\"Meslek açıklaması\",\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\": 1,\\n \\\"name\\\": \\\"\\\",\\n \\\"description\\\": \\\"\\\"\\n}\"]}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ProfessionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"Root Type for ProfessionDTO\",\"description\":\"Meslek tanımlarını tutan dtodur.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Meslek adı\",\"type\":\"string\"},\"description\":{\"description\":\"Meslek açıklaması\",\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\": 1,\\n \\\"name\\\": \\\"\\\",\\n \\\"description\\\": \\\"\\\"\\n}\"]}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ProfessionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"Root Type for ProfessionDTO\",\"description\":\"Meslek tanımlarını tutan dtodur.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Meslek adı\",\"type\":\"string\"},\"description\":{\"description\":\"Meslek açıklaması\",\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\": 1,\\n \\\"name\\\": \\\"\\\",\\n \\\"description\\\": \\\"\\\"\\n}\"]}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ProfessionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz." + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Meslek bilgisini siler" + }, + "id": { + "element": "string", + "content": "deleteProfession" + } + }, + "content": [ + { + "element": "copy", + "content": "Meslek bilgisini siler" + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "204" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz." + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/common/teachers/document-types/" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "List All DocumentTypeLOVS" + }, + "id": { + "element": "string", + "content": "getAllTeacherDocumentTypeLOVS" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/common/teachers/document-types/{?page,size,sort*}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Page number of the requested page" + } + }, + "content": { + "key": { + "element": "string", + "content": "page" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Size of a page" + } + }, + "content": { + "key": { + "element": "string", + "content": "size" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported." + } + }, + "content": { + "key": { + "element": "string", + "content": "sort" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Gets a list of all `DocumentTypeLOV` entities." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "Successful response - returns an array of `DocumentTypeLOV` entities." + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/DocumentTypeLOV\"},\"definitions\":{\"DocumentTypeLOV\":{\"title\":\"DocumentTypeLOV\",\"description\":\"Dökümanların tiplerinin tutulduğu yerdir. Örneğin : Transkript, öğrenci belgesi, ehliyet fotokopisi, İskan, KatPlanı, Ruhsat, Resim, Vergi levhası vs.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/DocumentTypeLOV" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/od/def/internal-class-group" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Kayıtlı tüm dahili ders seviyelerini görebilmek için kullanılır" + }, + "id": { + "element": "string", + "content": "getAllInternalClassGroup" + } + }, + "content": [ + { + "element": "copy", + "content": "Gets a list of all `InternalClassGroupDTO` entities." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "Successful response - returns an array of `InternalClassGroupDTO` entities." + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/InternalClassGroupDTO\"},\"definitions\":{\"InternalClassGroupDTO\":{\"title\":\"Root Type for InternalClassGroupDTO\",\"description\":\"Dahili Ders Grubu veri modelidir.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int32\",\"description\":\"Dahili Ders grubu Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Dahili Ders grubunun personeller tarafından anlaşılır kısa adı\",\"type\":\"string\"},\"descritpion\":{\"description\":\"Dahili Ders grubunun uzun açıklamasıdır. \",\"type\":\"string\"},\"active\":{\"description\":\"Dahili Ders grubunun aktiflik pasiflik durumunu ifade eder.\",\"type\":\"boolean\"},\"internalClassLevel\":{\"description\":\"Dahili Ders grubuna dahil olan seviyelerdir. Örneğin tanımlarken kısıtlama yapıldığında; Bu seviyede (S1, S2 seviyesinde) talebe alınmasını sağlayacak.\",\"type\":\"object\"},\"academicYear\":{\"description\":\"Dahili Ders seviyesinin geçerli olacağı akademik yıl veya yıllar bilgisidir.\",\"type\":\"object\"},\"code\":{\"description\":\"Dahili Ders grubuna verilen kısa kod bilgisidir. \",\"type\":\"string\"}},\"examples\":[{\"id\":72,\"name\":\"some text\",\"descritpion\":\"some text\",\"active\":true,\"academicYear\":{},\"internalClassLevel\":{}}]}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/InternalClassGroupDTO" + } + ] + } + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Dahili ders tanımı ekleme metodudur." + }, + "id": { + "element": "string", + "content": "createInternalClassGroup" + } + }, + "content": [ + { + "element": "copy", + "content": "Creates a new instance of a `InternalClassGroupDTO`." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"Root Type for InternalClassGroupDTO\",\"description\":\"Dahili Ders Grubu veri modelidir.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int32\",\"description\":\"Dahili Ders grubu Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Dahili Ders grubunun personeller tarafından anlaşılır kısa adı\",\"type\":\"string\"},\"descritpion\":{\"description\":\"Dahili Ders grubunun uzun açıklamasıdır. \",\"type\":\"string\"},\"active\":{\"description\":\"Dahili Ders grubunun aktiflik pasiflik durumunu ifade eder.\",\"type\":\"boolean\"},\"internalClassLevel\":{\"description\":\"Dahili Ders grubuna dahil olan seviyelerdir. Örneğin tanımlarken kısıtlama yapıldığında; Bu seviyede (S1, S2 seviyesinde) talebe alınmasını sağlayacak.\",\"type\":\"object\"},\"academicYear\":{\"description\":\"Dahili Ders seviyesinin geçerli olacağı akademik yıl veya yıllar bilgisidir.\",\"type\":\"object\"},\"code\":{\"description\":\"Dahili Ders grubuna verilen kısa kod bilgisidir. \",\"type\":\"string\"}},\"examples\":[{\"id\":72,\"name\":\"some text\",\"descritpion\":\"some text\",\"active\":true,\"academicYear\":{},\"internalClassLevel\":{}}]}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/InternalClassGroupDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Successful response." + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"Root Type for InternalClassGroupDTO\",\"description\":\"Dahili Ders Grubu veri modelidir.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int32\",\"description\":\"Dahili Ders grubu Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Dahili Ders grubunun personeller tarafından anlaşılır kısa adı\",\"type\":\"string\"},\"descritpion\":{\"description\":\"Dahili Ders grubunun uzun açıklamasıdır. \",\"type\":\"string\"},\"active\":{\"description\":\"Dahili Ders grubunun aktiflik pasiflik durumunu ifade eder.\",\"type\":\"boolean\"},\"internalClassLevel\":{\"description\":\"Dahili Ders grubuna dahil olan seviyelerdir. Örneğin tanımlarken kısıtlama yapıldığında; Bu seviyede (S1, S2 seviyesinde) talebe alınmasını sağlayacak.\",\"type\":\"object\"},\"academicYear\":{\"description\":\"Dahili Ders seviyesinin geçerli olacağı akademik yıl veya yıllar bilgisidir.\",\"type\":\"object\"},\"code\":{\"description\":\"Dahili Ders grubuna verilen kısa kod bilgisidir. \",\"type\":\"string\"}},\"examples\":[{\"id\":72,\"name\":\"some text\",\"descritpion\":\"some text\",\"active\":true,\"academicYear\":{},\"internalClassLevel\":{}}]}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/InternalClassGroupDTO" + } + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/od/def/etude-groups" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Etüt grupları listeleme servisidir." + }, + "id": { + "element": "string", + "content": "getAllEtudeGroups" + } + }, + "content": [ + { + "element": "copy", + "content": "Gets a list of all `EtudeGroup` entities." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "Successful response - returns an array of `EtudeGroup` entities." + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/EtudeGroupDTO\"},\"definitions\":{\"EtudeGroupDTO\":{\"title\":\"Root Type for EtudeGroup\",\"description\":\"Etüt grubu veri modeli. Etüt dimek Okul dersine takviye dimektir. Okuldaki sınıf seviyesine göre etüt grupları belirlenir.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int32\",\"description\":\"Etut grubu UNIQUE ID bilgisidir.\",\"type\":\"integer\"},\"name\":{\"type\":\"string\"},\"code\":{\"description\":\"Etude grubuna verilen kısa kod bilgisidir. S1-A : Seviye 1 A sınıfı\",\"type\":\"string\"},\"description\":{\"description\":\"Etut grubunun uzun açıklama bilgisidir. \",\"type\":\"string\"},\"active\":{\"description\":\"Etut grubu aktiflik pasiflik bilgisidir.\",\"type\":\"boolean\"},\"academicYears\":{\"description\":\"Etut grubunun dahil oldugu, Akademik yıl-yıllar bilgisidir. 2018-2019 eğitim öğretim yılı \",\"type\":\"object\"}},\"examples\":[{\"id\":16,\"name\":\"some text\",\"code\":\"some text\",\"description\":\"some text\",\"active\":true,\"academicYears\":{}}]}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/EtudeGroupDTO" + } + ] + } + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Yeni etüt grubu ekleme servisidir" + }, + "id": { + "element": "string", + "content": "createEtudeGroup" + } + }, + "content": [ + { + "element": "copy", + "content": "Creates a new instance of a `EtudeGroup`." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"Root Type for EtudeGroup\",\"description\":\"Etüt grubu veri modeli. Etüt dimek Okul dersine takviye dimektir. Okuldaki sınıf seviyesine göre etüt grupları belirlenir.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int32\",\"description\":\"Etut grubu UNIQUE ID bilgisidir.\",\"type\":\"integer\"},\"name\":{\"type\":\"string\"},\"code\":{\"description\":\"Etude grubuna verilen kısa kod bilgisidir. S1-A : Seviye 1 A sınıfı\",\"type\":\"string\"},\"description\":{\"description\":\"Etut grubunun uzun açıklama bilgisidir. \",\"type\":\"string\"},\"active\":{\"description\":\"Etut grubu aktiflik pasiflik bilgisidir.\",\"type\":\"boolean\"},\"academicYears\":{\"description\":\"Etut grubunun dahil oldugu, Akademik yıl-yıllar bilgisidir. 2018-2019 eğitim öğretim yılı \",\"type\":\"object\"}},\"examples\":[{\"id\":16,\"name\":\"some text\",\"code\":\"some text\",\"description\":\"some text\",\"active\":true,\"academicYears\":{}}]}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/EtudeGroupDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Successful response." + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"Root Type for EtudeGroup\",\"description\":\"Etüt grubu veri modeli. Etüt dimek Okul dersine takviye dimektir. Okuldaki sınıf seviyesine göre etüt grupları belirlenir.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int32\",\"description\":\"Etut grubu UNIQUE ID bilgisidir.\",\"type\":\"integer\"},\"name\":{\"type\":\"string\"},\"code\":{\"description\":\"Etude grubuna verilen kısa kod bilgisidir. S1-A : Seviye 1 A sınıfı\",\"type\":\"string\"},\"description\":{\"description\":\"Etut grubunun uzun açıklama bilgisidir. \",\"type\":\"string\"},\"active\":{\"description\":\"Etut grubu aktiflik pasiflik bilgisidir.\",\"type\":\"boolean\"},\"academicYears\":{\"description\":\"Etut grubunun dahil oldugu, Akademik yıl-yıllar bilgisidir. 2018-2019 eğitim öğretim yılı \",\"type\":\"object\"}},\"examples\":[{\"id\":16,\"name\":\"some text\",\"code\":\"some text\",\"description\":\"some text\",\"active\":true,\"academicYears\":{}}]}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/EtudeGroupDTO" + } + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "A unique identifier for a `EtudeGroup`." + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "string" + } + } + } + ] + }, + "href": { + "element": "string", + "content": "/api/sbt/od/def/etude-groups/{id}" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Etüt grubu goruntuleme metodur." + }, + "id": { + "element": "string", + "content": "getEtudeGroup" + } + }, + "content": [ + { + "element": "copy", + "content": "Gets the details of a single instance of a `EtudeGroup`." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "Successful response - returns a single `EtudeGroup`." + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"Root Type for EtudeGroup\",\"description\":\"Etüt grubu veri modeli. Etüt dimek Okul dersine takviye dimektir. Okuldaki sınıf seviyesine göre etüt grupları belirlenir.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int32\",\"description\":\"Etut grubu UNIQUE ID bilgisidir.\",\"type\":\"integer\"},\"name\":{\"type\":\"string\"},\"code\":{\"description\":\"Etude grubuna verilen kısa kod bilgisidir. S1-A : Seviye 1 A sınıfı\",\"type\":\"string\"},\"description\":{\"description\":\"Etut grubunun uzun açıklama bilgisidir. \",\"type\":\"string\"},\"active\":{\"description\":\"Etut grubu aktiflik pasiflik bilgisidir.\",\"type\":\"boolean\"},\"academicYears\":{\"description\":\"Etut grubunun dahil oldugu, Akademik yıl-yıllar bilgisidir. 2018-2019 eğitim öğretim yılı \",\"type\":\"object\"}},\"examples\":[{\"id\":16,\"name\":\"some text\",\"code\":\"some text\",\"description\":\"some text\",\"active\":true,\"academicYears\":{}}]}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/EtudeGroupDTO" + } + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Etut grubu guncelleme metodu" + }, + "id": { + "element": "string", + "content": "updateEtudeGroup" + } + }, + "content": [ + { + "element": "copy", + "content": "Updates an existing `EtudeGroup`." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"Root Type for EtudeGroup\",\"description\":\"Etüt grubu veri modeli. Etüt dimek Okul dersine takviye dimektir. Okuldaki sınıf seviyesine göre etüt grupları belirlenir.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int32\",\"description\":\"Etut grubu UNIQUE ID bilgisidir.\",\"type\":\"integer\"},\"name\":{\"type\":\"string\"},\"code\":{\"description\":\"Etude grubuna verilen kısa kod bilgisidir. S1-A : Seviye 1 A sınıfı\",\"type\":\"string\"},\"description\":{\"description\":\"Etut grubunun uzun açıklama bilgisidir. \",\"type\":\"string\"},\"active\":{\"description\":\"Etut grubu aktiflik pasiflik bilgisidir.\",\"type\":\"boolean\"},\"academicYears\":{\"description\":\"Etut grubunun dahil oldugu, Akademik yıl-yıllar bilgisidir. 2018-2019 eğitim öğretim yılı \",\"type\":\"object\"}},\"examples\":[{\"id\":16,\"name\":\"some text\",\"code\":\"some text\",\"description\":\"some text\",\"active\":true,\"academicYears\":{}}]}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/EtudeGroupDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "202" + } + }, + "content": [ + { + "element": "copy", + "content": "Successful response." + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"Root Type for EtudeGroup\",\"description\":\"Etüt grubu veri modeli. Etüt dimek Okul dersine takviye dimektir. Okuldaki sınıf seviyesine göre etüt grupları belirlenir.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int32\",\"description\":\"Etut grubu UNIQUE ID bilgisidir.\",\"type\":\"integer\"},\"name\":{\"type\":\"string\"},\"code\":{\"description\":\"Etude grubuna verilen kısa kod bilgisidir. S1-A : Seviye 1 A sınıfı\",\"type\":\"string\"},\"description\":{\"description\":\"Etut grubunun uzun açıklama bilgisidir. \",\"type\":\"string\"},\"active\":{\"description\":\"Etut grubu aktiflik pasiflik bilgisidir.\",\"type\":\"boolean\"},\"academicYears\":{\"description\":\"Etut grubunun dahil oldugu, Akademik yıl-yıllar bilgisidir. 2018-2019 eğitim öğretim yılı \",\"type\":\"object\"}},\"examples\":[{\"id\":16,\"name\":\"some text\",\"code\":\"some text\",\"description\":\"some text\",\"active\":true,\"academicYears\":{}}]}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/EtudeGroupDTO" + } + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Etut grubu silme metodu" + }, + "id": { + "element": "string", + "content": "delEtudeGroup" + } + }, + "content": [ + { + "element": "copy", + "content": "Deletes an existing `EtudeGroup`." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "204" + } + }, + "content": [ + { + "element": "copy", + "content": "Successful response." + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"boolean\"}" + }, + { + "element": "dataStructure", + "content": { + "element": "boolean" + } + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "A unique identifier for a `InternalClassGroupDTO`." + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "string" + } + } + } + ] + }, + "href": { + "element": "string", + "content": "/api/sbt/od/def/internal-class-group/{id}" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Dahili ders grubuna ait tek bir kaydı görüntülemek için kullanılır." + }, + "id": { + "element": "string", + "content": "getInternalClassGroup" + } + }, + "content": [ + { + "element": "copy", + "content": "Gets the details of a single instance of a `InternalClassGroupDTO`." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "Successful response - returns a single `InternalClassGroupDTO`." + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"Root Type for InternalClassGroupDTO\",\"description\":\"Dahili Ders Grubu veri modelidir.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int32\",\"description\":\"Dahili Ders grubu Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Dahili Ders grubunun personeller tarafından anlaşılır kısa adı\",\"type\":\"string\"},\"descritpion\":{\"description\":\"Dahili Ders grubunun uzun açıklamasıdır. \",\"type\":\"string\"},\"active\":{\"description\":\"Dahili Ders grubunun aktiflik pasiflik durumunu ifade eder.\",\"type\":\"boolean\"},\"internalClassLevel\":{\"description\":\"Dahili Ders grubuna dahil olan seviyelerdir. Örneğin tanımlarken kısıtlama yapıldığında; Bu seviyede (S1, S2 seviyesinde) talebe alınmasını sağlayacak.\",\"type\":\"object\"},\"academicYear\":{\"description\":\"Dahili Ders seviyesinin geçerli olacağı akademik yıl veya yıllar bilgisidir.\",\"type\":\"object\"},\"code\":{\"description\":\"Dahili Ders grubuna verilen kısa kod bilgisidir. \",\"type\":\"string\"}},\"examples\":[{\"id\":72,\"name\":\"some text\",\"descritpion\":\"some text\",\"active\":true,\"academicYear\":{},\"internalClassLevel\":{}}]}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/InternalClassGroupDTO" + } + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Dahili ders grubu güncellemek için kullanılır." + }, + "id": { + "element": "string", + "content": "updateInternalClassGroup" + } + }, + "content": [ + { + "element": "copy", + "content": "Updates an existing `InternalClassGroupDTO`." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"Root Type for InternalClassGroupDTO\",\"description\":\"Dahili Ders Grubu veri modelidir.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int32\",\"description\":\"Dahili Ders grubu Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Dahili Ders grubunun personeller tarafından anlaşılır kısa adı\",\"type\":\"string\"},\"descritpion\":{\"description\":\"Dahili Ders grubunun uzun açıklamasıdır. \",\"type\":\"string\"},\"active\":{\"description\":\"Dahili Ders grubunun aktiflik pasiflik durumunu ifade eder.\",\"type\":\"boolean\"},\"internalClassLevel\":{\"description\":\"Dahili Ders grubuna dahil olan seviyelerdir. Örneğin tanımlarken kısıtlama yapıldığında; Bu seviyede (S1, S2 seviyesinde) talebe alınmasını sağlayacak.\",\"type\":\"object\"},\"academicYear\":{\"description\":\"Dahili Ders seviyesinin geçerli olacağı akademik yıl veya yıllar bilgisidir.\",\"type\":\"object\"},\"code\":{\"description\":\"Dahili Ders grubuna verilen kısa kod bilgisidir. \",\"type\":\"string\"}},\"examples\":[{\"id\":72,\"name\":\"some text\",\"descritpion\":\"some text\",\"active\":true,\"academicYear\":{},\"internalClassLevel\":{}}]}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/InternalClassGroupDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "202" + } + }, + "content": [ + { + "element": "copy", + "content": "Successful response." + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"Root Type for InternalClassGroupDTO\",\"description\":\"Dahili Ders Grubu veri modelidir.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int32\",\"description\":\"Dahili Ders grubu Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Dahili Ders grubunun personeller tarafından anlaşılır kısa adı\",\"type\":\"string\"},\"descritpion\":{\"description\":\"Dahili Ders grubunun uzun açıklamasıdır. \",\"type\":\"string\"},\"active\":{\"description\":\"Dahili Ders grubunun aktiflik pasiflik durumunu ifade eder.\",\"type\":\"boolean\"},\"internalClassLevel\":{\"description\":\"Dahili Ders grubuna dahil olan seviyelerdir. Örneğin tanımlarken kısıtlama yapıldığında; Bu seviyede (S1, S2 seviyesinde) talebe alınmasını sağlayacak.\",\"type\":\"object\"},\"academicYear\":{\"description\":\"Dahili Ders seviyesinin geçerli olacağı akademik yıl veya yıllar bilgisidir.\",\"type\":\"object\"},\"code\":{\"description\":\"Dahili Ders grubuna verilen kısa kod bilgisidir. \",\"type\":\"string\"}},\"examples\":[{\"id\":72,\"name\":\"some text\",\"descritpion\":\"some text\",\"active\":true,\"academicYear\":{},\"internalClassLevel\":{}}]}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/InternalClassGroupDTO" + } + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Tanımlı dahili ders kaydı silme metodudur." + }, + "id": { + "element": "string", + "content": "delInternalClassGroup" + } + }, + "content": [ + { + "element": "copy", + "content": "Deletes an existing `InternalClassGroupDTO`." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "204" + } + }, + "content": [ + { + "element": "copy", + "content": "Successful response." + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"boolean\"}" + }, + { + "element": "dataStructure", + "content": { + "element": "boolean" + } + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/od/def/academic-years" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Tum akademik yıllari listeleyen servistir." + }, + "id": { + "element": "string", + "content": "getAllAcademicYears" + } + }, + "content": [ + { + "element": "copy", + "content": "Gets a list of all `AcademicYear` entities. Ornek : \n1- 2018-2019 egitim ogretim yili\n2- 2019-2020 egitim ogretim yili" + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "Successful response - returns an array of `AcademicYear` entities." + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/AcademicYearDTO\"},\"definitions\":{\"AcademicYearDTO\":{\"title\":\"Root Type for AcademicYear\",\"description\":\"Akademik yılların veri modelidir. Orn: 2018-2019 egitim ogretim yili\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int32\",\"type\":\"integer\"},\"name\":{\"type\":\"string\"},\"active\":{\"type\":\"boolean\"},\"code\":{\"type\":\"string\"},\"description\":{\"type\":\"string\"},\"startDate\":{\"format\":\"date\",\"type\":\"string\"},\"endDate\":{\"format\":\"date\",\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\":1,\\n \\\"name\\\":\\\"some text\\\",\\n \\\"active\\\":true,\\n \\\"code\\\":\\\"some text\\\",\\n \\\"description\\\":\\\"some text\\\",\\n \\\"startDate\\\":\\\"2018-09-14\\\",\\n \\\"endDate\\\":\\\"2019-06-14\\\"\\n}\"]}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/AcademicYearDTO" + } + ] + } + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Akademik yıl ekleme servisi" + }, + "id": { + "element": "string", + "content": "createAcademicYear" + } + }, + "content": [ + { + "element": "copy", + "content": "Creates a new instance of a `AcademicYear`." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"Root Type for AcademicYear\",\"description\":\"Akademik yılların veri modelidir. Orn: 2018-2019 egitim ogretim yili\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int32\",\"type\":\"integer\"},\"name\":{\"type\":\"string\"},\"active\":{\"type\":\"boolean\"},\"code\":{\"type\":\"string\"},\"description\":{\"type\":\"string\"},\"startDate\":{\"format\":\"date\",\"type\":\"string\"},\"endDate\":{\"format\":\"date\",\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\":1,\\n \\\"name\\\":\\\"some text\\\",\\n \\\"active\\\":true,\\n \\\"code\\\":\\\"some text\\\",\\n \\\"description\\\":\\\"some text\\\",\\n \\\"startDate\\\":\\\"2018-09-14\\\",\\n \\\"endDate\\\":\\\"2019-06-14\\\"\\n}\"]}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/AcademicYearDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Successful response." + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"Root Type for AcademicYear\",\"description\":\"Akademik yılların veri modelidir. Orn: 2018-2019 egitim ogretim yili\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int32\",\"type\":\"integer\"},\"name\":{\"type\":\"string\"},\"active\":{\"type\":\"boolean\"},\"code\":{\"type\":\"string\"},\"description\":{\"type\":\"string\"},\"startDate\":{\"format\":\"date\",\"type\":\"string\"},\"endDate\":{\"format\":\"date\",\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\":1,\\n \\\"name\\\":\\\"some text\\\",\\n \\\"active\\\":true,\\n \\\"code\\\":\\\"some text\\\",\\n \\\"description\\\":\\\"some text\\\",\\n \\\"startDate\\\":\\\"2018-09-14\\\",\\n \\\"endDate\\\":\\\"2019-06-14\\\"\\n}\"]}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/AcademicYearDTO" + } + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "A unique identifier for a `AcademicYear`." + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "string" + } + } + } + ] + }, + "href": { + "element": "string", + "content": "/api/sbt/od/def/academic-years/{id}" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Akademik yıl goruntuleme servisidir." + }, + "id": { + "element": "string", + "content": "getAcademicYear" + } + }, + "content": [ + { + "element": "copy", + "content": "Gets the details of a single instance of a `AcademicYear`." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "Successful response - returns a single `AcademicYear`." + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"Root Type for AcademicYear\",\"description\":\"Akademik yılların veri modelidir. Orn: 2018-2019 egitim ogretim yili\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int32\",\"type\":\"integer\"},\"name\":{\"type\":\"string\"},\"active\":{\"type\":\"boolean\"},\"code\":{\"type\":\"string\"},\"description\":{\"type\":\"string\"},\"startDate\":{\"format\":\"date\",\"type\":\"string\"},\"endDate\":{\"format\":\"date\",\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\":1,\\n \\\"name\\\":\\\"some text\\\",\\n \\\"active\\\":true,\\n \\\"code\\\":\\\"some text\\\",\\n \\\"description\\\":\\\"some text\\\",\\n \\\"startDate\\\":\\\"2018-09-14\\\",\\n \\\"endDate\\\":\\\"2019-06-14\\\"\\n}\"]}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/AcademicYearDTO" + } + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Akademik yıl guncelleme servisi" + }, + "id": { + "element": "string", + "content": "updateAcademicYear" + } + }, + "content": [ + { + "element": "copy", + "content": "Updates an existing `AcademicYear`." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"Root Type for AcademicYear\",\"description\":\"Akademik yılların veri modelidir. Orn: 2018-2019 egitim ogretim yili\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int32\",\"type\":\"integer\"},\"name\":{\"type\":\"string\"},\"active\":{\"type\":\"boolean\"},\"code\":{\"type\":\"string\"},\"description\":{\"type\":\"string\"},\"startDate\":{\"format\":\"date\",\"type\":\"string\"},\"endDate\":{\"format\":\"date\",\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\":1,\\n \\\"name\\\":\\\"some text\\\",\\n \\\"active\\\":true,\\n \\\"code\\\":\\\"some text\\\",\\n \\\"description\\\":\\\"some text\\\",\\n \\\"startDate\\\":\\\"2018-09-14\\\",\\n \\\"endDate\\\":\\\"2019-06-14\\\"\\n}\"]}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/AcademicYearDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "202" + } + }, + "content": [ + { + "element": "copy", + "content": "Successful response." + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"Root Type for AcademicYear\",\"description\":\"Akademik yılların veri modelidir. Orn: 2018-2019 egitim ogretim yili\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int32\",\"type\":\"integer\"},\"name\":{\"type\":\"string\"},\"active\":{\"type\":\"boolean\"},\"code\":{\"type\":\"string\"},\"description\":{\"type\":\"string\"},\"startDate\":{\"format\":\"date\",\"type\":\"string\"},\"endDate\":{\"format\":\"date\",\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\":1,\\n \\\"name\\\":\\\"some text\\\",\\n \\\"active\\\":true,\\n \\\"code\\\":\\\"some text\\\",\\n \\\"description\\\":\\\"some text\\\",\\n \\\"startDate\\\":\\\"2018-09-14\\\",\\n \\\"endDate\\\":\\\"2019-06-14\\\"\\n}\"]}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/AcademicYearDTO" + } + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Akademik yıl silme servisidir." + }, + "id": { + "element": "string", + "content": "delAcademicYear" + } + }, + "content": [ + { + "element": "copy", + "content": "Deletes an existing `AcademicYear`." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "204" + } + }, + "content": [ + { + "element": "copy", + "content": "Successful response." + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"boolean\"}" + }, + { + "element": "dataStructure", + "content": { + "element": "boolean" + } + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "category", + "meta": { + "title": { + "element": "string", + "content": "corporation-resource" + }, + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "resourceGroup" + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Corporation Resource" + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/corporations" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Kurum Listemele Servisi" + }, + "id": { + "element": "string", + "content": "getAllCorporations" + } + }, + "content": [ + { + "element": "copy", + "content": "Kurum Listemele Servisi\n" + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/CorporationDTO\"},\"definitions\":{\"CorporationDTO\":{\"title\":\"Root Type for CorporationDTO\",\"description\":\"Kuruma ait ana bilgiler yer alır.\\nÖrnek : ID, ADI, Organizasyonu, vb...\",\"required\":[\"bolge\"],\"type\":\"object\",\"properties\":{\"bolge\":{\"$ref\":\"#/definitions/BolgeLOV\"},\"code\":{\"description\":\"Kuruma verilen özel code bilgisidir. Kullanıcı tarafından belirli bir düzende oluşturulur.\",\"type\":\"string\"},\"generalInfo\":{\"$ref\":\"#/definitions/CorporationGeneralInfoDTO\"},\"id\":{\"format\":\"int64\",\"description\":\"Kurum ID bilgisidir.\",\"type\":\"integer\"},\"mintika\":{\"$ref\":\"#/definitions/MintikaLOV\"},\"name\":{\"description\":\"Kurum ismi bilgisidir.\",\"type\":\"string\"},\"status\":{\"$ref\":\"#/definitions/CorporationStatusLOV\"}},\"examples\":[{\"bolge\":{\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"id\":49,\"lastModifiedBy\":\"some text\",\"lastModifiedDate\":\"2018-02-10T09:30Z\",\"name\":\"some text\"},\"code\":\"some text\",\"id\":99,\"mintika\":{\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"id\":58,\"lastModifiedBy\":\"some text\",\"lastModifiedDate\":\"2018-02-10T09:30Z\",\"name\":\"some text\"},\"name\":\"some text\",\"status\":{\"id\":22,\"name\":\"some text\"}}]},\"CorporationStatusLOV\":{\"title\":\"Root Type for CorporationStatusLOV\",\"description\":\"Kurumun Statüleri belirler.\\nÖrnek: Aktif, İnşaat, Kapalı, Tadilatta gibi durumlardır.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int32\",\"description\":\"Kurum Status ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Kurum Status Name\",\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\": 1,\\n \\\"name\\\": \\\"some text\\\"\\n}\"]},\"MintikaLOV\":{\"title\":\"MintikaLOV\",\"description\":\"Mintika tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Mintika adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"CorporationGeneralInfoDTO\":{\"description\":\"Faal Kurum bilgisidir.\",\"required\":[\"buildingType\",\"corporationFormalStatus\",\"formalName\",\"formalityStatus\",\"openingDate\",\"ownershipStatus\"],\"type\":\"object\",\"properties\":{\"buildingType\":{\"$ref\":\"#/definitions/BuildingTypeLOV\"},\"corporationFormalStatus\":{\"$ref\":\"#/definitions/CorporationFormalityStatusLOV\"},\"formalName\":{\"description\":\"Kurumun resmi adı bilgisidir.\",\"type\":\"string\"},\"formalityStatus\":{\"$ref\":\"#/definitions/FormalityStatusLOV\"},\"openingDate\":{\"format\":\"date\",\"description\":\"Açılış tarihi bilgisi.\",\"type\":\"string\"},\"ownershipStatus\":{\"$ref\":\"#/definitions/OwnershipStatusLOV\"}},\"examples\":[{\"buildingType\":{\"id\":71,\"name\":\"some text\"},\"corporationFormalStatus\":{\"id\":7,\"name\":\"some text\"},\"formalName\":\"some text\",\"formalityStatus\":{\"id\":74,\"name\":\"some text\"},\"openingDate\":\"2018-01-17T00:00:00.000Z\",\"ownershipStatus\":{\"id\":12,\"name\":\"some text\"}}]},\"OwnershipStatusLOV\":{\"description\":\"Kurumun mülkiyet durumları bilgisi.\",\"required\":[\"id\",\"name\"],\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"id bilgisi.\",\"type\":\"integer\"},\"name\":{\"description\":\"Mülkiyet adı bilgisi.\",\"type\":\"string\"}}},\"FormalityStatusLOV\":{\"description\":\"Resmiyet durumları. Örnek: Resmi ve hususi.\\nResmi : Devlet nezdinde resmiyete kavuşturulmuş (tapu, vergi, vb.) kurumlar için kullanılır.\\nHususi : Henüz devlet nezdinde resmiyete kavuşturulamamış kurumları ifade eder.\",\"required\":[\"id\",\"name\"],\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"Resmiyet statusü id bilgisi.\",\"type\":\"integer\"},\"name\":{\"description\":\"Resmiyet statüsüne ait isim bilgisi.\",\"type\":\"string\"}}},\"CorporationFormalityStatusLOV\":{\"title\":\"Root Type for CorporationFormalStatusLOV\",\"description\":\"Kurumun resmiyet ve hususiyet durumları:\\nÖrnek :\\nKurum RESMİYET DURUMLARI\\n\\n RESMİ (seçilirse 2. combobox da çıkacak seçenekler)\\n ORTAOKUL ERKEK YURDU\\n ORTAOKUL KIZ YURDU\\n ORTAÖĞRENİM ERKEK YURDU\\n ORTAÖĞRENİM ERKEK PANSİYONU\\n ORTAÖĞRENİM KIZ YURDU\\n ORTAÖĞRENİM KIZ PANSİYONU\\n YÜKSEKÖĞRENİM ERKEK YURDU\\n YÜKSEKÖĞRENİM ERKEK PANSİYONU\\n YÜKSEKÖĞRENİM ERKEK APARTI\\n ERKEK KUR’AN KURSU\\n KIZ KUR’AN KURSU\\n HUSUSİ (seçilirse 2. combobox da çıkacak seçenekler)\\n HUSUSİ YURT\\n HUSUSİ EV YURDU\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int32\",\"description\":\"Kurum resmiyet seçenekleri ID bilgisi\",\"type\":\"integer\"},\"name\":{\"description\":\"Kurum resmiyet seçenekleri isim bilgisi\",\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\": 1,\\n \\\"name\\\": \\\"some text\\\"\\n}\"]},\"BuildingTypeLOV\":{\"title\":\"Root Type for BuildingType\",\"description\":\"Key Value şeklinde; Bina Türlerini ifade eder. Örnek : Yurt, Ofis, Nehari Yurt, Lokal, Hizmet Mahalli\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"Bina Türü ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Bina Türü Adı\",\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\": 1,\\n \\\"name\\\": \\\"some text\\\"\\n}\"]},\"BolgeLOV\":{\"title\":\"BolgeLOV\",\"description\":\"Bolgeye ait tanimi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Bolge adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/CorporationDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz." + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Kurum Ekleme Servisi" + }, + "id": { + "element": "string", + "content": "createCorporation" + } + }, + "content": [ + { + "element": "copy", + "content": "Yeni Kurum ekleme servisidir. " + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/CorporationCreateDTO\"}],\"definitions\":{\"CorporationCreateDTO\":{\"description\":\"Kurum kaydı oluşturmayı sağlayan objedir.\",\"required\":[\"address\",\"bolge\",\"corporationCode\",\"corporationName\",\"corporationStatus\",\"mintika\"],\"type\":\"object\",\"properties\":{\"activeCorporationInfo\":{\"$ref\":\"#/definitions/ActiveCorporationInfoDTO\"},\"address\":{\"$ref\":\"#/definitions/AddressCreateDTO\"},\"bolge\":{\"$ref\":\"#/definitions/BolgeLOV\"},\"buildInfo\":{\"$ref\":\"#/definitions/CorporationBuildInfoDTO\"},\"contactInfo\":{\"$ref\":\"#/definitions/ContactInfoCreateDTO\"},\"corporationCode\":{\"description\":\"Sistem tarafından generate edilen Kurum kodu bilgisidir.\",\"type\":\"string\"},\"corporationName\":{\"description\":\"Kurumun isim bilgisidir.\",\"type\":\"string\"},\"corporationStatus\":{\"$ref\":\"#/definitions/CorporationStatusLOV\"},\"mintika\":{\"$ref\":\"#/definitions/MintikaLOV\"},\"note\":{\"description\":\"Açıklama bilgisidir. \",\"type\":\"string\"}}},\"MintikaLOV\":{\"title\":\"MintikaLOV\",\"description\":\"Mintika tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Mintika adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"CorporationStatusLOV\":{\"title\":\"Root Type for CorporationStatusLOV\",\"description\":\"Kurumun Statüleri belirler.\\nÖrnek: Aktif, İnşaat, Kapalı, Tadilatta gibi durumlardır.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int32\",\"description\":\"Kurum Status ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Kurum Status Name\",\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\": 1,\\n \\\"name\\\": \\\"some text\\\"\\n}\"]},\"ContactInfoCreateDTO\":{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"CorporationBuildInfoDTO\":{\"title\":\"Root Type for CorporationBuildInfo\",\"description\":\"Kurum İnşaat Bilgisi. Bir Kurum ilk inşaat statüsünde açılır. daha sonrasında aktif olur. İnşaat bilgisi Kurumun genel bilgileriyle benzerlik gösterir. Aslında planlanan Kurum bilgileridir.\",\"type\":\"object\",\"properties\":{\"constructionDate\":{\"format\":\"date\",\"description\":\"İnşaat Başlama Tarihi\",\"type\":\"string\"},\"id\":{\"format\":\"int32\",\"description\":\"Kurum ID bilgisi\",\"type\":\"integer\"},\"note\":{\"description\":\"Açıklama Bilgisi\",\"type\":\"string\"},\"openedDate\":{\"format\":\"date\",\"description\":\"Açılış Tarihi\",\"type\":\"string\"},\"plannedCorporationFormalityStatus\":{\"$ref\":\"#/definitions/CorporationFormalityStatusLOV\"},\"plannedFormalityStatus\":{\"$ref\":\"#/definitions/FormalityStatusLOV\"},\"plannedGender\":{\"$ref\":\"#/definitions/GenderLOV\"},\"plannedOwnershipStatus\":{\"$ref\":\"#/definitions/OwnershipStatusLOV\"},\"plannedQuota\":{\"format\":\"int32\",\"description\":\"Planlanan Kontenjan Bilgisi\",\"type\":\"integer\"},\"plannedQuotaStudentClassification\":{\"$ref\":\"#/definitions/StudentClassificationLOV\"},\"plannedUsageArea\":{\"format\":\"int32\",\"description\":\"Planlanan, Kullanım alanı metrekare olarak bilgisi\",\"type\":\"integer\"}},\"examples\":[{\"constructionDate\":\"2018-01-17T00:00:00.000Z\",\"id\":49,\"note\":\"some text\",\"openedDate\":\"2018-01-17T00:00:00.000Z\",\"plannedCorporationFormalityStatus\":{\"id\":47,\"name\":\"some text\"},\"plannedFormalityStatus\":{\"id\":43,\"name\":\"some text\"},\"plannedGender\":{\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"id\":87,\"lastModifiedBy\":\"some text\",\"lastModifiedDate\":\"2018-02-10T09:30Z\",\"name\":\"some text\"},\"plannedOwnershipStatus\":{\"id\":33,\"name\":\"some text\"},\"plannedQuota\":70,\"plannedQuotaStudentClassification\":{\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"id\":50,\"lastModifiedBy\":\"some text\",\"lastModifiedDate\":\"2018-02-10T09:30Z\",\"name\":\"some text\"},\"plannedUsageArea\":51}]},\"StudentClassificationLOV\":{\"title\":\"StudentClassificationLOV\",\"description\":\"Talebe nevileridir. Örneğin; Orta okul, lise, üniversite, daimi, tekamul, daimi ortaokul, üniversite hazırlık\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Talebe nevi adi\",\"type\":\"string\"}}},\"OwnershipStatusLOV\":{\"description\":\"Kurumun mülkiyet durumları bilgisi.\",\"required\":[\"id\",\"name\"],\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"id bilgisi.\",\"type\":\"integer\"},\"name\":{\"description\":\"Mülkiyet adı bilgisi.\",\"type\":\"string\"}}},\"GenderLOV\":{\"title\":\"GenderLOV\",\"description\":\"Cinsiyet tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Cinsiyet adi\",\"type\":\"string\"}}},\"FormalityStatusLOV\":{\"description\":\"Resmiyet durumları. Örnek: Resmi ve hususi.\\nResmi : Devlet nezdinde resmiyete kavuşturulmuş (tapu, vergi, vb.) kurumlar için kullanılır.\\nHususi : Henüz devlet nezdinde resmiyete kavuşturulamamış kurumları ifade eder.\",\"required\":[\"id\",\"name\"],\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"Resmiyet statusü id bilgisi.\",\"type\":\"integer\"},\"name\":{\"description\":\"Resmiyet statüsüne ait isim bilgisi.\",\"type\":\"string\"}}},\"CorporationFormalityStatusLOV\":{\"title\":\"Root Type for CorporationFormalStatusLOV\",\"description\":\"Kurumun resmiyet ve hususiyet durumları:\\nÖrnek :\\nKurum RESMİYET DURUMLARI\\n\\n RESMİ (seçilirse 2. combobox da çıkacak seçenekler)\\n ORTAOKUL ERKEK YURDU\\n ORTAOKUL KIZ YURDU\\n ORTAÖĞRENİM ERKEK YURDU\\n ORTAÖĞRENİM ERKEK PANSİYONU\\n ORTAÖĞRENİM KIZ YURDU\\n ORTAÖĞRENİM KIZ PANSİYONU\\n YÜKSEKÖĞRENİM ERKEK YURDU\\n YÜKSEKÖĞRENİM ERKEK PANSİYONU\\n YÜKSEKÖĞRENİM ERKEK APARTI\\n ERKEK KUR’AN KURSU\\n KIZ KUR’AN KURSU\\n HUSUSİ (seçilirse 2. combobox da çıkacak seçenekler)\\n HUSUSİ YURT\\n HUSUSİ EV YURDU\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int32\",\"description\":\"Kurum resmiyet seçenekleri ID bilgisi\",\"type\":\"integer\"},\"name\":{\"description\":\"Kurum resmiyet seçenekleri isim bilgisi\",\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\": 1,\\n \\\"name\\\": \\\"some text\\\"\\n}\"]},\"BolgeLOV\":{\"title\":\"BolgeLOV\",\"description\":\"Bolgeye ait tanimi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Bolge adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"AddressCreateDTO\":{\"title\":\"AddressCreateDTO\",\"description\":\" Kisi veya kurumun adres bilgisini olusturmak icin kullanılır.\\n Adrese ait lokasyon bilgisini içerisinde barındırır.\\n Lokasyon bilgisi önceden tanımlı olmalıdır. Lokasyon bilgisi alınırken lokasyon hierarşisinde kullanıcının seçtiği en altta kalan lokasyonun idsi yeterlidir.\\n Örneğin Türkiye - İstanbul - Ümraniye lokasyonu için sadece Ümraniyenin id sinin verilmesi yeterlidir.\",\"type\":\"object\",\"properties\":{\"address1\":{\"description\":\"Açık adres 1. satır\",\"type\":\"string\"},\"address2\":{\"description\":\"Açık adres 2. satır\",\"type\":\"string\"},\"address3\":{\"description\":\"Açık adres 3. satır\",\"type\":\"string\"},\"categories\":{\"description\":\"Adres kategorileri. İş adresi, Ev adresi, Öncelikli adres\",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Açık adres ve lokasyon bilgilerini içeren tam adres\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"locationId\":{\"format\":\"int64\",\"description\":\"Adresin bağlı olduğu en dip lokasyon bilgisi. Ümraniye, Üsküdar vb.\",\"type\":\"integer\"}}},\"ActiveCorporationInfoDTO\":{\"description\":\"Faal Kurum bilgisidir.\",\"required\":[\"generalInfo\"],\"type\":\"object\",\"properties\":{\"generalInfo\":{\"$ref\":\"#/definitions/CorporationGeneralInfoDTO\"},\"studentClassificationQuotaInfo\":{\"$ref\":\"#/definitions/CorporationStudentClassificationInfoDTO\"}}},\"CorporationStudentClassificationInfoDTO\":{\"title\":\"Root Type for CorporationBuildInfo\",\"description\":\"Kurumda kalan talebe nevileri ve buna ait kontenjan bilgilerini içerir.\",\"type\":\"object\",\"properties\":{\"gender\":{\"$ref\":\"#/definitions/GenderLOV\"},\"note\":{\"description\":\"Açıklama Bilgisi\",\"type\":\"string\"},\"quota\":{\"format\":\"int32\",\"description\":\"Kontenjan Bilgisi\",\"type\":\"integer\"},\"quotaStudentClassification\":{\"description\":\"Kuruma alınacak Talebe nevisi.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/CorporationStudentClassificationQuotaDTO\"}},\"usageArea\":{\"format\":\"int32\",\"description\":\"Kullanım alanı metrekare olarak bilgisi\",\"type\":\"integer\"}},\"examples\":[{\"gender\":{\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"id\":33,\"lastModifiedBy\":\"some text\",\"lastModifiedDate\":\"2018-02-10T09:30Z\",\"name\":\"some text\"},\"note\":\"some text\",\"quota\":24,\"quotaStudentClassification\":[{\"corporationID\":95,\"corporationStatusID\":59,\"quota\":38,\"studentClassificationID\":1},{\"corporationID\":96,\"corporationStatusID\":75,\"quota\":86,\"studentClassificationID\":28}],\"usageArea\":9}]},\"CorporationStudentClassificationQuotaDTO\":{\"title\":\"Root Type for corporationStudentClassificationQuota\",\"description\":\"Kurum Öğrenci Nevileri kota bilgisi. corporationID, corporationStatusID, studentClassificationID ve kontenjan bilgisi yer alır.\",\"type\":\"object\",\"properties\":{\"corporationID\":{\"format\":\"int32\",\"description\":\"Kurum Bilgisi\",\"type\":\"integer\"},\"corporationStatus\":{\"$ref\":\"#/definitions/CorporationStatusLOV\"},\"quota\":{\"format\":\"int32\",\"description\":\"Kontenjan Bilgisi\",\"type\":\"integer\"},\"studentClassification\":{\"$ref\":\"#/definitions/CorporationStudentClassificationInfoDTO\"}},\"examples\":[{\"corporationID\":95,\"corporationStatus\":{\"id\":14,\"name\":\"some text\"},\"quota\":59,\"studentClassification\":{\"gender\":{\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"id\":88,\"name\":\"some text\"},\"note\":\"some text\",\"quota\":35,\"quotaStudentClassification\":[{\"corporationID\":56,\"corporationStatus\":{\"id\":65,\"name\":\"some text\"},\"quota\":64,\"studentClassification\":{}},{\"corporationID\":94,\"corporationStatus\":{\"id\":51,\"name\":\"some text\"},\"quota\":72,\"studentClassification\":{}}],\"usageArea\":96}}]},\"CorporationGeneralInfoDTO\":{\"description\":\"Faal Kurum bilgisidir.\",\"required\":[\"buildingType\",\"corporationFormalStatus\",\"formalName\",\"formalityStatus\",\"openingDate\",\"ownershipStatus\"],\"type\":\"object\",\"properties\":{\"buildingType\":{\"$ref\":\"#/definitions/BuildingTypeLOV\"},\"corporationFormalStatus\":{\"$ref\":\"#/definitions/CorporationFormalityStatusLOV\"},\"formalName\":{\"description\":\"Kurumun resmi adı bilgisidir.\",\"type\":\"string\"},\"formalityStatus\":{\"$ref\":\"#/definitions/FormalityStatusLOV\"},\"openingDate\":{\"format\":\"date\",\"description\":\"Açılış tarihi bilgisi.\",\"type\":\"string\"},\"ownershipStatus\":{\"$ref\":\"#/definitions/OwnershipStatusLOV\"}},\"examples\":[{\"buildingType\":{\"id\":71,\"name\":\"some text\"},\"corporationFormalStatus\":{\"id\":7,\"name\":\"some text\"},\"formalName\":\"some text\",\"formalityStatus\":{\"id\":74,\"name\":\"some text\"},\"openingDate\":\"2018-01-17T00:00:00.000Z\",\"ownershipStatus\":{\"id\":12,\"name\":\"some text\"}}]},\"BuildingTypeLOV\":{\"title\":\"Root Type for BuildingType\",\"description\":\"Key Value şeklinde; Bina Türlerini ifade eder. Örnek : Yurt, Ofis, Nehari Yurt, Lokal, Hizmet Mahalli\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"Bina Türü ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Bina Türü Adı\",\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\": 1,\\n \\\"name\\\": \\\"some text\\\"\\n}\"]}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CorporationCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem Başarılı" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/CorporationDTO\"}],\"definitions\":{\"CorporationDTO\":{\"title\":\"Root Type for CorporationDTO\",\"description\":\"Kuruma ait ana bilgiler yer alır.\\nÖrnek : ID, ADI, Organizasyonu, vb...\",\"required\":[\"bolge\"],\"type\":\"object\",\"properties\":{\"bolge\":{\"$ref\":\"#/definitions/BolgeLOV\"},\"code\":{\"description\":\"Kuruma verilen özel code bilgisidir. Kullanıcı tarafından belirli bir düzende oluşturulur.\",\"type\":\"string\"},\"generalInfo\":{\"$ref\":\"#/definitions/CorporationGeneralInfoDTO\"},\"id\":{\"format\":\"int64\",\"description\":\"Kurum ID bilgisidir.\",\"type\":\"integer\"},\"mintika\":{\"$ref\":\"#/definitions/MintikaLOV\"},\"name\":{\"description\":\"Kurum ismi bilgisidir.\",\"type\":\"string\"},\"status\":{\"$ref\":\"#/definitions/CorporationStatusLOV\"}},\"examples\":[{\"bolge\":{\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"id\":49,\"lastModifiedBy\":\"some text\",\"lastModifiedDate\":\"2018-02-10T09:30Z\",\"name\":\"some text\"},\"code\":\"some text\",\"id\":99,\"mintika\":{\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"id\":58,\"lastModifiedBy\":\"some text\",\"lastModifiedDate\":\"2018-02-10T09:30Z\",\"name\":\"some text\"},\"name\":\"some text\",\"status\":{\"id\":22,\"name\":\"some text\"}}]},\"CorporationStatusLOV\":{\"title\":\"Root Type for CorporationStatusLOV\",\"description\":\"Kurumun Statüleri belirler.\\nÖrnek: Aktif, İnşaat, Kapalı, Tadilatta gibi durumlardır.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int32\",\"description\":\"Kurum Status ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Kurum Status Name\",\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\": 1,\\n \\\"name\\\": \\\"some text\\\"\\n}\"]},\"MintikaLOV\":{\"title\":\"MintikaLOV\",\"description\":\"Mintika tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Mintika adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"CorporationGeneralInfoDTO\":{\"description\":\"Faal Kurum bilgisidir.\",\"required\":[\"buildingType\",\"corporationFormalStatus\",\"formalName\",\"formalityStatus\",\"openingDate\",\"ownershipStatus\"],\"type\":\"object\",\"properties\":{\"buildingType\":{\"$ref\":\"#/definitions/BuildingTypeLOV\"},\"corporationFormalStatus\":{\"$ref\":\"#/definitions/CorporationFormalityStatusLOV\"},\"formalName\":{\"description\":\"Kurumun resmi adı bilgisidir.\",\"type\":\"string\"},\"formalityStatus\":{\"$ref\":\"#/definitions/FormalityStatusLOV\"},\"openingDate\":{\"format\":\"date\",\"description\":\"Açılış tarihi bilgisi.\",\"type\":\"string\"},\"ownershipStatus\":{\"$ref\":\"#/definitions/OwnershipStatusLOV\"}},\"examples\":[{\"buildingType\":{\"id\":71,\"name\":\"some text\"},\"corporationFormalStatus\":{\"id\":7,\"name\":\"some text\"},\"formalName\":\"some text\",\"formalityStatus\":{\"id\":74,\"name\":\"some text\"},\"openingDate\":\"2018-01-17T00:00:00.000Z\",\"ownershipStatus\":{\"id\":12,\"name\":\"some text\"}}]},\"OwnershipStatusLOV\":{\"description\":\"Kurumun mülkiyet durumları bilgisi.\",\"required\":[\"id\",\"name\"],\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"id bilgisi.\",\"type\":\"integer\"},\"name\":{\"description\":\"Mülkiyet adı bilgisi.\",\"type\":\"string\"}}},\"FormalityStatusLOV\":{\"description\":\"Resmiyet durumları. Örnek: Resmi ve hususi.\\nResmi : Devlet nezdinde resmiyete kavuşturulmuş (tapu, vergi, vb.) kurumlar için kullanılır.\\nHususi : Henüz devlet nezdinde resmiyete kavuşturulamamış kurumları ifade eder.\",\"required\":[\"id\",\"name\"],\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"Resmiyet statusü id bilgisi.\",\"type\":\"integer\"},\"name\":{\"description\":\"Resmiyet statüsüne ait isim bilgisi.\",\"type\":\"string\"}}},\"CorporationFormalityStatusLOV\":{\"title\":\"Root Type for CorporationFormalStatusLOV\",\"description\":\"Kurumun resmiyet ve hususiyet durumları:\\nÖrnek :\\nKurum RESMİYET DURUMLARI\\n\\n RESMİ (seçilirse 2. combobox da çıkacak seçenekler)\\n ORTAOKUL ERKEK YURDU\\n ORTAOKUL KIZ YURDU\\n ORTAÖĞRENİM ERKEK YURDU\\n ORTAÖĞRENİM ERKEK PANSİYONU\\n ORTAÖĞRENİM KIZ YURDU\\n ORTAÖĞRENİM KIZ PANSİYONU\\n YÜKSEKÖĞRENİM ERKEK YURDU\\n YÜKSEKÖĞRENİM ERKEK PANSİYONU\\n YÜKSEKÖĞRENİM ERKEK APARTI\\n ERKEK KUR’AN KURSU\\n KIZ KUR’AN KURSU\\n HUSUSİ (seçilirse 2. combobox da çıkacak seçenekler)\\n HUSUSİ YURT\\n HUSUSİ EV YURDU\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int32\",\"description\":\"Kurum resmiyet seçenekleri ID bilgisi\",\"type\":\"integer\"},\"name\":{\"description\":\"Kurum resmiyet seçenekleri isim bilgisi\",\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\": 1,\\n \\\"name\\\": \\\"some text\\\"\\n}\"]},\"BuildingTypeLOV\":{\"title\":\"Root Type for BuildingType\",\"description\":\"Key Value şeklinde; Bina Türlerini ifade eder. Örnek : Yurt, Ofis, Nehari Yurt, Lokal, Hizmet Mahalli\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"Bina Türü ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Bina Türü Adı\",\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\": 1,\\n \\\"name\\\": \\\"some text\\\"\\n}\"]},\"BolgeLOV\":{\"title\":\"BolgeLOV\",\"description\":\"Bolgeye ait tanimi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Bolge adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CorporationDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/CorporationCreateDTO\"}],\"definitions\":{\"CorporationCreateDTO\":{\"description\":\"Kurum kaydı oluşturmayı sağlayan objedir.\",\"required\":[\"address\",\"bolge\",\"corporationCode\",\"corporationName\",\"corporationStatus\",\"mintika\"],\"type\":\"object\",\"properties\":{\"activeCorporationInfo\":{\"$ref\":\"#/definitions/ActiveCorporationInfoDTO\"},\"address\":{\"$ref\":\"#/definitions/AddressCreateDTO\"},\"bolge\":{\"$ref\":\"#/definitions/BolgeLOV\"},\"buildInfo\":{\"$ref\":\"#/definitions/CorporationBuildInfoDTO\"},\"contactInfo\":{\"$ref\":\"#/definitions/ContactInfoCreateDTO\"},\"corporationCode\":{\"description\":\"Sistem tarafından generate edilen Kurum kodu bilgisidir.\",\"type\":\"string\"},\"corporationName\":{\"description\":\"Kurumun isim bilgisidir.\",\"type\":\"string\"},\"corporationStatus\":{\"$ref\":\"#/definitions/CorporationStatusLOV\"},\"mintika\":{\"$ref\":\"#/definitions/MintikaLOV\"},\"note\":{\"description\":\"Açıklama bilgisidir. \",\"type\":\"string\"}}},\"MintikaLOV\":{\"title\":\"MintikaLOV\",\"description\":\"Mintika tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Mintika adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"CorporationStatusLOV\":{\"title\":\"Root Type for CorporationStatusLOV\",\"description\":\"Kurumun Statüleri belirler.\\nÖrnek: Aktif, İnşaat, Kapalı, Tadilatta gibi durumlardır.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int32\",\"description\":\"Kurum Status ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Kurum Status Name\",\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\": 1,\\n \\\"name\\\": \\\"some text\\\"\\n}\"]},\"ContactInfoCreateDTO\":{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"CorporationBuildInfoDTO\":{\"title\":\"Root Type for CorporationBuildInfo\",\"description\":\"Kurum İnşaat Bilgisi. Bir Kurum ilk inşaat statüsünde açılır. daha sonrasında aktif olur. İnşaat bilgisi Kurumun genel bilgileriyle benzerlik gösterir. Aslında planlanan Kurum bilgileridir.\",\"type\":\"object\",\"properties\":{\"constructionDate\":{\"format\":\"date\",\"description\":\"İnşaat Başlama Tarihi\",\"type\":\"string\"},\"id\":{\"format\":\"int32\",\"description\":\"Kurum ID bilgisi\",\"type\":\"integer\"},\"note\":{\"description\":\"Açıklama Bilgisi\",\"type\":\"string\"},\"openedDate\":{\"format\":\"date\",\"description\":\"Açılış Tarihi\",\"type\":\"string\"},\"plannedCorporationFormalityStatus\":{\"$ref\":\"#/definitions/CorporationFormalityStatusLOV\"},\"plannedFormalityStatus\":{\"$ref\":\"#/definitions/FormalityStatusLOV\"},\"plannedGender\":{\"$ref\":\"#/definitions/GenderLOV\"},\"plannedOwnershipStatus\":{\"$ref\":\"#/definitions/OwnershipStatusLOV\"},\"plannedQuota\":{\"format\":\"int32\",\"description\":\"Planlanan Kontenjan Bilgisi\",\"type\":\"integer\"},\"plannedQuotaStudentClassification\":{\"$ref\":\"#/definitions/StudentClassificationLOV\"},\"plannedUsageArea\":{\"format\":\"int32\",\"description\":\"Planlanan, Kullanım alanı metrekare olarak bilgisi\",\"type\":\"integer\"}},\"examples\":[{\"constructionDate\":\"2018-01-17T00:00:00.000Z\",\"id\":49,\"note\":\"some text\",\"openedDate\":\"2018-01-17T00:00:00.000Z\",\"plannedCorporationFormalityStatus\":{\"id\":47,\"name\":\"some text\"},\"plannedFormalityStatus\":{\"id\":43,\"name\":\"some text\"},\"plannedGender\":{\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"id\":87,\"lastModifiedBy\":\"some text\",\"lastModifiedDate\":\"2018-02-10T09:30Z\",\"name\":\"some text\"},\"plannedOwnershipStatus\":{\"id\":33,\"name\":\"some text\"},\"plannedQuota\":70,\"plannedQuotaStudentClassification\":{\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"id\":50,\"lastModifiedBy\":\"some text\",\"lastModifiedDate\":\"2018-02-10T09:30Z\",\"name\":\"some text\"},\"plannedUsageArea\":51}]},\"StudentClassificationLOV\":{\"title\":\"StudentClassificationLOV\",\"description\":\"Talebe nevileridir. Örneğin; Orta okul, lise, üniversite, daimi, tekamul, daimi ortaokul, üniversite hazırlık\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Talebe nevi adi\",\"type\":\"string\"}}},\"OwnershipStatusLOV\":{\"description\":\"Kurumun mülkiyet durumları bilgisi.\",\"required\":[\"id\",\"name\"],\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"id bilgisi.\",\"type\":\"integer\"},\"name\":{\"description\":\"Mülkiyet adı bilgisi.\",\"type\":\"string\"}}},\"GenderLOV\":{\"title\":\"GenderLOV\",\"description\":\"Cinsiyet tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Cinsiyet adi\",\"type\":\"string\"}}},\"FormalityStatusLOV\":{\"description\":\"Resmiyet durumları. Örnek: Resmi ve hususi.\\nResmi : Devlet nezdinde resmiyete kavuşturulmuş (tapu, vergi, vb.) kurumlar için kullanılır.\\nHususi : Henüz devlet nezdinde resmiyete kavuşturulamamış kurumları ifade eder.\",\"required\":[\"id\",\"name\"],\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"Resmiyet statusü id bilgisi.\",\"type\":\"integer\"},\"name\":{\"description\":\"Resmiyet statüsüne ait isim bilgisi.\",\"type\":\"string\"}}},\"CorporationFormalityStatusLOV\":{\"title\":\"Root Type for CorporationFormalStatusLOV\",\"description\":\"Kurumun resmiyet ve hususiyet durumları:\\nÖrnek :\\nKurum RESMİYET DURUMLARI\\n\\n RESMİ (seçilirse 2. combobox da çıkacak seçenekler)\\n ORTAOKUL ERKEK YURDU\\n ORTAOKUL KIZ YURDU\\n ORTAÖĞRENİM ERKEK YURDU\\n ORTAÖĞRENİM ERKEK PANSİYONU\\n ORTAÖĞRENİM KIZ YURDU\\n ORTAÖĞRENİM KIZ PANSİYONU\\n YÜKSEKÖĞRENİM ERKEK YURDU\\n YÜKSEKÖĞRENİM ERKEK PANSİYONU\\n YÜKSEKÖĞRENİM ERKEK APARTI\\n ERKEK KUR’AN KURSU\\n KIZ KUR’AN KURSU\\n HUSUSİ (seçilirse 2. combobox da çıkacak seçenekler)\\n HUSUSİ YURT\\n HUSUSİ EV YURDU\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int32\",\"description\":\"Kurum resmiyet seçenekleri ID bilgisi\",\"type\":\"integer\"},\"name\":{\"description\":\"Kurum resmiyet seçenekleri isim bilgisi\",\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\": 1,\\n \\\"name\\\": \\\"some text\\\"\\n}\"]},\"BolgeLOV\":{\"title\":\"BolgeLOV\",\"description\":\"Bolgeye ait tanimi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Bolge adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"AddressCreateDTO\":{\"title\":\"AddressCreateDTO\",\"description\":\" Kisi veya kurumun adres bilgisini olusturmak icin kullanılır.\\n Adrese ait lokasyon bilgisini içerisinde barındırır.\\n Lokasyon bilgisi önceden tanımlı olmalıdır. Lokasyon bilgisi alınırken lokasyon hierarşisinde kullanıcının seçtiği en altta kalan lokasyonun idsi yeterlidir.\\n Örneğin Türkiye - İstanbul - Ümraniye lokasyonu için sadece Ümraniyenin id sinin verilmesi yeterlidir.\",\"type\":\"object\",\"properties\":{\"address1\":{\"description\":\"Açık adres 1. satır\",\"type\":\"string\"},\"address2\":{\"description\":\"Açık adres 2. satır\",\"type\":\"string\"},\"address3\":{\"description\":\"Açık adres 3. satır\",\"type\":\"string\"},\"categories\":{\"description\":\"Adres kategorileri. İş adresi, Ev adresi, Öncelikli adres\",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Açık adres ve lokasyon bilgilerini içeren tam adres\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"locationId\":{\"format\":\"int64\",\"description\":\"Adresin bağlı olduğu en dip lokasyon bilgisi. Ümraniye, Üsküdar vb.\",\"type\":\"integer\"}}},\"ActiveCorporationInfoDTO\":{\"description\":\"Faal Kurum bilgisidir.\",\"required\":[\"generalInfo\"],\"type\":\"object\",\"properties\":{\"generalInfo\":{\"$ref\":\"#/definitions/CorporationGeneralInfoDTO\"},\"studentClassificationQuotaInfo\":{\"$ref\":\"#/definitions/CorporationStudentClassificationInfoDTO\"}}},\"CorporationStudentClassificationInfoDTO\":{\"title\":\"Root Type for CorporationBuildInfo\",\"description\":\"Kurumda kalan talebe nevileri ve buna ait kontenjan bilgilerini içerir.\",\"type\":\"object\",\"properties\":{\"gender\":{\"$ref\":\"#/definitions/GenderLOV\"},\"note\":{\"description\":\"Açıklama Bilgisi\",\"type\":\"string\"},\"quota\":{\"format\":\"int32\",\"description\":\"Kontenjan Bilgisi\",\"type\":\"integer\"},\"quotaStudentClassification\":{\"description\":\"Kuruma alınacak Talebe nevisi.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/CorporationStudentClassificationQuotaDTO\"}},\"usageArea\":{\"format\":\"int32\",\"description\":\"Kullanım alanı metrekare olarak bilgisi\",\"type\":\"integer\"}},\"examples\":[{\"gender\":{\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"id\":33,\"lastModifiedBy\":\"some text\",\"lastModifiedDate\":\"2018-02-10T09:30Z\",\"name\":\"some text\"},\"note\":\"some text\",\"quota\":24,\"quotaStudentClassification\":[{\"corporationID\":95,\"corporationStatusID\":59,\"quota\":38,\"studentClassificationID\":1},{\"corporationID\":96,\"corporationStatusID\":75,\"quota\":86,\"studentClassificationID\":28}],\"usageArea\":9}]},\"CorporationStudentClassificationQuotaDTO\":{\"title\":\"Root Type for corporationStudentClassificationQuota\",\"description\":\"Kurum Öğrenci Nevileri kota bilgisi. corporationID, corporationStatusID, studentClassificationID ve kontenjan bilgisi yer alır.\",\"type\":\"object\",\"properties\":{\"corporationID\":{\"format\":\"int32\",\"description\":\"Kurum Bilgisi\",\"type\":\"integer\"},\"corporationStatus\":{\"$ref\":\"#/definitions/CorporationStatusLOV\"},\"quota\":{\"format\":\"int32\",\"description\":\"Kontenjan Bilgisi\",\"type\":\"integer\"},\"studentClassification\":{\"$ref\":\"#/definitions/CorporationStudentClassificationInfoDTO\"}},\"examples\":[{\"corporationID\":95,\"corporationStatus\":{\"id\":14,\"name\":\"some text\"},\"quota\":59,\"studentClassification\":{\"gender\":{\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"id\":88,\"name\":\"some text\"},\"note\":\"some text\",\"quota\":35,\"quotaStudentClassification\":[{\"corporationID\":56,\"corporationStatus\":{\"id\":65,\"name\":\"some text\"},\"quota\":64,\"studentClassification\":{}},{\"corporationID\":94,\"corporationStatus\":{\"id\":51,\"name\":\"some text\"},\"quota\":72,\"studentClassification\":{}}],\"usageArea\":96}}]},\"CorporationGeneralInfoDTO\":{\"description\":\"Faal Kurum bilgisidir.\",\"required\":[\"buildingType\",\"corporationFormalStatus\",\"formalName\",\"formalityStatus\",\"openingDate\",\"ownershipStatus\"],\"type\":\"object\",\"properties\":{\"buildingType\":{\"$ref\":\"#/definitions/BuildingTypeLOV\"},\"corporationFormalStatus\":{\"$ref\":\"#/definitions/CorporationFormalityStatusLOV\"},\"formalName\":{\"description\":\"Kurumun resmi adı bilgisidir.\",\"type\":\"string\"},\"formalityStatus\":{\"$ref\":\"#/definitions/FormalityStatusLOV\"},\"openingDate\":{\"format\":\"date\",\"description\":\"Açılış tarihi bilgisi.\",\"type\":\"string\"},\"ownershipStatus\":{\"$ref\":\"#/definitions/OwnershipStatusLOV\"}},\"examples\":[{\"buildingType\":{\"id\":71,\"name\":\"some text\"},\"corporationFormalStatus\":{\"id\":7,\"name\":\"some text\"},\"formalName\":\"some text\",\"formalityStatus\":{\"id\":74,\"name\":\"some text\"},\"openingDate\":\"2018-01-17T00:00:00.000Z\",\"ownershipStatus\":{\"id\":12,\"name\":\"some text\"}}]},\"BuildingTypeLOV\":{\"title\":\"Root Type for BuildingType\",\"description\":\"Key Value şeklinde; Bina Türlerini ifade eder. Örnek : Yurt, Ofis, Nehari Yurt, Lokal, Hizmet Mahalli\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"Bina Türü ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Bina Türü Adı\",\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\": 1,\\n \\\"name\\\": \\\"some text\\\"\\n}\"]}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CorporationCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/CorporationCreateDTO\"}],\"definitions\":{\"CorporationCreateDTO\":{\"description\":\"Kurum kaydı oluşturmayı sağlayan objedir.\",\"required\":[\"address\",\"bolge\",\"corporationCode\",\"corporationName\",\"corporationStatus\",\"mintika\"],\"type\":\"object\",\"properties\":{\"activeCorporationInfo\":{\"$ref\":\"#/definitions/ActiveCorporationInfoDTO\"},\"address\":{\"$ref\":\"#/definitions/AddressCreateDTO\"},\"bolge\":{\"$ref\":\"#/definitions/BolgeLOV\"},\"buildInfo\":{\"$ref\":\"#/definitions/CorporationBuildInfoDTO\"},\"contactInfo\":{\"$ref\":\"#/definitions/ContactInfoCreateDTO\"},\"corporationCode\":{\"description\":\"Sistem tarafından generate edilen Kurum kodu bilgisidir.\",\"type\":\"string\"},\"corporationName\":{\"description\":\"Kurumun isim bilgisidir.\",\"type\":\"string\"},\"corporationStatus\":{\"$ref\":\"#/definitions/CorporationStatusLOV\"},\"mintika\":{\"$ref\":\"#/definitions/MintikaLOV\"},\"note\":{\"description\":\"Açıklama bilgisidir. \",\"type\":\"string\"}}},\"MintikaLOV\":{\"title\":\"MintikaLOV\",\"description\":\"Mintika tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Mintika adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"CorporationStatusLOV\":{\"title\":\"Root Type for CorporationStatusLOV\",\"description\":\"Kurumun Statüleri belirler.\\nÖrnek: Aktif, İnşaat, Kapalı, Tadilatta gibi durumlardır.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int32\",\"description\":\"Kurum Status ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Kurum Status Name\",\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\": 1,\\n \\\"name\\\": \\\"some text\\\"\\n}\"]},\"ContactInfoCreateDTO\":{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"CorporationBuildInfoDTO\":{\"title\":\"Root Type for CorporationBuildInfo\",\"description\":\"Kurum İnşaat Bilgisi. Bir Kurum ilk inşaat statüsünde açılır. daha sonrasında aktif olur. İnşaat bilgisi Kurumun genel bilgileriyle benzerlik gösterir. Aslında planlanan Kurum bilgileridir.\",\"type\":\"object\",\"properties\":{\"constructionDate\":{\"format\":\"date\",\"description\":\"İnşaat Başlama Tarihi\",\"type\":\"string\"},\"id\":{\"format\":\"int32\",\"description\":\"Kurum ID bilgisi\",\"type\":\"integer\"},\"note\":{\"description\":\"Açıklama Bilgisi\",\"type\":\"string\"},\"openedDate\":{\"format\":\"date\",\"description\":\"Açılış Tarihi\",\"type\":\"string\"},\"plannedCorporationFormalityStatus\":{\"$ref\":\"#/definitions/CorporationFormalityStatusLOV\"},\"plannedFormalityStatus\":{\"$ref\":\"#/definitions/FormalityStatusLOV\"},\"plannedGender\":{\"$ref\":\"#/definitions/GenderLOV\"},\"plannedOwnershipStatus\":{\"$ref\":\"#/definitions/OwnershipStatusLOV\"},\"plannedQuota\":{\"format\":\"int32\",\"description\":\"Planlanan Kontenjan Bilgisi\",\"type\":\"integer\"},\"plannedQuotaStudentClassification\":{\"$ref\":\"#/definitions/StudentClassificationLOV\"},\"plannedUsageArea\":{\"format\":\"int32\",\"description\":\"Planlanan, Kullanım alanı metrekare olarak bilgisi\",\"type\":\"integer\"}},\"examples\":[{\"constructionDate\":\"2018-01-17T00:00:00.000Z\",\"id\":49,\"note\":\"some text\",\"openedDate\":\"2018-01-17T00:00:00.000Z\",\"plannedCorporationFormalityStatus\":{\"id\":47,\"name\":\"some text\"},\"plannedFormalityStatus\":{\"id\":43,\"name\":\"some text\"},\"plannedGender\":{\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"id\":87,\"lastModifiedBy\":\"some text\",\"lastModifiedDate\":\"2018-02-10T09:30Z\",\"name\":\"some text\"},\"plannedOwnershipStatus\":{\"id\":33,\"name\":\"some text\"},\"plannedQuota\":70,\"plannedQuotaStudentClassification\":{\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"id\":50,\"lastModifiedBy\":\"some text\",\"lastModifiedDate\":\"2018-02-10T09:30Z\",\"name\":\"some text\"},\"plannedUsageArea\":51}]},\"StudentClassificationLOV\":{\"title\":\"StudentClassificationLOV\",\"description\":\"Talebe nevileridir. Örneğin; Orta okul, lise, üniversite, daimi, tekamul, daimi ortaokul, üniversite hazırlık\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Talebe nevi adi\",\"type\":\"string\"}}},\"OwnershipStatusLOV\":{\"description\":\"Kurumun mülkiyet durumları bilgisi.\",\"required\":[\"id\",\"name\"],\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"id bilgisi.\",\"type\":\"integer\"},\"name\":{\"description\":\"Mülkiyet adı bilgisi.\",\"type\":\"string\"}}},\"GenderLOV\":{\"title\":\"GenderLOV\",\"description\":\"Cinsiyet tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Cinsiyet adi\",\"type\":\"string\"}}},\"FormalityStatusLOV\":{\"description\":\"Resmiyet durumları. Örnek: Resmi ve hususi.\\nResmi : Devlet nezdinde resmiyete kavuşturulmuş (tapu, vergi, vb.) kurumlar için kullanılır.\\nHususi : Henüz devlet nezdinde resmiyete kavuşturulamamış kurumları ifade eder.\",\"required\":[\"id\",\"name\"],\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"Resmiyet statusü id bilgisi.\",\"type\":\"integer\"},\"name\":{\"description\":\"Resmiyet statüsüne ait isim bilgisi.\",\"type\":\"string\"}}},\"CorporationFormalityStatusLOV\":{\"title\":\"Root Type for CorporationFormalStatusLOV\",\"description\":\"Kurumun resmiyet ve hususiyet durumları:\\nÖrnek :\\nKurum RESMİYET DURUMLARI\\n\\n RESMİ (seçilirse 2. combobox da çıkacak seçenekler)\\n ORTAOKUL ERKEK YURDU\\n ORTAOKUL KIZ YURDU\\n ORTAÖĞRENİM ERKEK YURDU\\n ORTAÖĞRENİM ERKEK PANSİYONU\\n ORTAÖĞRENİM KIZ YURDU\\n ORTAÖĞRENİM KIZ PANSİYONU\\n YÜKSEKÖĞRENİM ERKEK YURDU\\n YÜKSEKÖĞRENİM ERKEK PANSİYONU\\n YÜKSEKÖĞRENİM ERKEK APARTI\\n ERKEK KUR’AN KURSU\\n KIZ KUR’AN KURSU\\n HUSUSİ (seçilirse 2. combobox da çıkacak seçenekler)\\n HUSUSİ YURT\\n HUSUSİ EV YURDU\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int32\",\"description\":\"Kurum resmiyet seçenekleri ID bilgisi\",\"type\":\"integer\"},\"name\":{\"description\":\"Kurum resmiyet seçenekleri isim bilgisi\",\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\": 1,\\n \\\"name\\\": \\\"some text\\\"\\n}\"]},\"BolgeLOV\":{\"title\":\"BolgeLOV\",\"description\":\"Bolgeye ait tanimi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Bolge adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"AddressCreateDTO\":{\"title\":\"AddressCreateDTO\",\"description\":\" Kisi veya kurumun adres bilgisini olusturmak icin kullanılır.\\n Adrese ait lokasyon bilgisini içerisinde barındırır.\\n Lokasyon bilgisi önceden tanımlı olmalıdır. Lokasyon bilgisi alınırken lokasyon hierarşisinde kullanıcının seçtiği en altta kalan lokasyonun idsi yeterlidir.\\n Örneğin Türkiye - İstanbul - Ümraniye lokasyonu için sadece Ümraniyenin id sinin verilmesi yeterlidir.\",\"type\":\"object\",\"properties\":{\"address1\":{\"description\":\"Açık adres 1. satır\",\"type\":\"string\"},\"address2\":{\"description\":\"Açık adres 2. satır\",\"type\":\"string\"},\"address3\":{\"description\":\"Açık adres 3. satır\",\"type\":\"string\"},\"categories\":{\"description\":\"Adres kategorileri. İş adresi, Ev adresi, Öncelikli adres\",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Açık adres ve lokasyon bilgilerini içeren tam adres\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"locationId\":{\"format\":\"int64\",\"description\":\"Adresin bağlı olduğu en dip lokasyon bilgisi. Ümraniye, Üsküdar vb.\",\"type\":\"integer\"}}},\"ActiveCorporationInfoDTO\":{\"description\":\"Faal Kurum bilgisidir.\",\"required\":[\"generalInfo\"],\"type\":\"object\",\"properties\":{\"generalInfo\":{\"$ref\":\"#/definitions/CorporationGeneralInfoDTO\"},\"studentClassificationQuotaInfo\":{\"$ref\":\"#/definitions/CorporationStudentClassificationInfoDTO\"}}},\"CorporationStudentClassificationInfoDTO\":{\"title\":\"Root Type for CorporationBuildInfo\",\"description\":\"Kurumda kalan talebe nevileri ve buna ait kontenjan bilgilerini içerir.\",\"type\":\"object\",\"properties\":{\"gender\":{\"$ref\":\"#/definitions/GenderLOV\"},\"note\":{\"description\":\"Açıklama Bilgisi\",\"type\":\"string\"},\"quota\":{\"format\":\"int32\",\"description\":\"Kontenjan Bilgisi\",\"type\":\"integer\"},\"quotaStudentClassification\":{\"description\":\"Kuruma alınacak Talebe nevisi.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/CorporationStudentClassificationQuotaDTO\"}},\"usageArea\":{\"format\":\"int32\",\"description\":\"Kullanım alanı metrekare olarak bilgisi\",\"type\":\"integer\"}},\"examples\":[{\"gender\":{\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"id\":33,\"lastModifiedBy\":\"some text\",\"lastModifiedDate\":\"2018-02-10T09:30Z\",\"name\":\"some text\"},\"note\":\"some text\",\"quota\":24,\"quotaStudentClassification\":[{\"corporationID\":95,\"corporationStatusID\":59,\"quota\":38,\"studentClassificationID\":1},{\"corporationID\":96,\"corporationStatusID\":75,\"quota\":86,\"studentClassificationID\":28}],\"usageArea\":9}]},\"CorporationStudentClassificationQuotaDTO\":{\"title\":\"Root Type for corporationStudentClassificationQuota\",\"description\":\"Kurum Öğrenci Nevileri kota bilgisi. corporationID, corporationStatusID, studentClassificationID ve kontenjan bilgisi yer alır.\",\"type\":\"object\",\"properties\":{\"corporationID\":{\"format\":\"int32\",\"description\":\"Kurum Bilgisi\",\"type\":\"integer\"},\"corporationStatus\":{\"$ref\":\"#/definitions/CorporationStatusLOV\"},\"quota\":{\"format\":\"int32\",\"description\":\"Kontenjan Bilgisi\",\"type\":\"integer\"},\"studentClassification\":{\"$ref\":\"#/definitions/CorporationStudentClassificationInfoDTO\"}},\"examples\":[{\"corporationID\":95,\"corporationStatus\":{\"id\":14,\"name\":\"some text\"},\"quota\":59,\"studentClassification\":{\"gender\":{\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"id\":88,\"name\":\"some text\"},\"note\":\"some text\",\"quota\":35,\"quotaStudentClassification\":[{\"corporationID\":56,\"corporationStatus\":{\"id\":65,\"name\":\"some text\"},\"quota\":64,\"studentClassification\":{}},{\"corporationID\":94,\"corporationStatus\":{\"id\":51,\"name\":\"some text\"},\"quota\":72,\"studentClassification\":{}}],\"usageArea\":96}}]},\"CorporationGeneralInfoDTO\":{\"description\":\"Faal Kurum bilgisidir.\",\"required\":[\"buildingType\",\"corporationFormalStatus\",\"formalName\",\"formalityStatus\",\"openingDate\",\"ownershipStatus\"],\"type\":\"object\",\"properties\":{\"buildingType\":{\"$ref\":\"#/definitions/BuildingTypeLOV\"},\"corporationFormalStatus\":{\"$ref\":\"#/definitions/CorporationFormalityStatusLOV\"},\"formalName\":{\"description\":\"Kurumun resmi adı bilgisidir.\",\"type\":\"string\"},\"formalityStatus\":{\"$ref\":\"#/definitions/FormalityStatusLOV\"},\"openingDate\":{\"format\":\"date\",\"description\":\"Açılış tarihi bilgisi.\",\"type\":\"string\"},\"ownershipStatus\":{\"$ref\":\"#/definitions/OwnershipStatusLOV\"}},\"examples\":[{\"buildingType\":{\"id\":71,\"name\":\"some text\"},\"corporationFormalStatus\":{\"id\":7,\"name\":\"some text\"},\"formalName\":\"some text\",\"formalityStatus\":{\"id\":74,\"name\":\"some text\"},\"openingDate\":\"2018-01-17T00:00:00.000Z\",\"ownershipStatus\":{\"id\":12,\"name\":\"some text\"}}]},\"BuildingTypeLOV\":{\"title\":\"Root Type for BuildingType\",\"description\":\"Key Value şeklinde; Bina Türlerini ifade eder. Örnek : Yurt, Ofis, Nehari Yurt, Lokal, Hizmet Mahalli\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"Bina Türü ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Bina Türü Adı\",\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\": 1,\\n \\\"name\\\": \\\"some text\\\"\\n}\"]}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CorporationCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/CorporationCreateDTO\"}],\"definitions\":{\"CorporationCreateDTO\":{\"description\":\"Kurum kaydı oluşturmayı sağlayan objedir.\",\"required\":[\"address\",\"bolge\",\"corporationCode\",\"corporationName\",\"corporationStatus\",\"mintika\"],\"type\":\"object\",\"properties\":{\"activeCorporationInfo\":{\"$ref\":\"#/definitions/ActiveCorporationInfoDTO\"},\"address\":{\"$ref\":\"#/definitions/AddressCreateDTO\"},\"bolge\":{\"$ref\":\"#/definitions/BolgeLOV\"},\"buildInfo\":{\"$ref\":\"#/definitions/CorporationBuildInfoDTO\"},\"contactInfo\":{\"$ref\":\"#/definitions/ContactInfoCreateDTO\"},\"corporationCode\":{\"description\":\"Sistem tarafından generate edilen Kurum kodu bilgisidir.\",\"type\":\"string\"},\"corporationName\":{\"description\":\"Kurumun isim bilgisidir.\",\"type\":\"string\"},\"corporationStatus\":{\"$ref\":\"#/definitions/CorporationStatusLOV\"},\"mintika\":{\"$ref\":\"#/definitions/MintikaLOV\"},\"note\":{\"description\":\"Açıklama bilgisidir. \",\"type\":\"string\"}}},\"MintikaLOV\":{\"title\":\"MintikaLOV\",\"description\":\"Mintika tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Mintika adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"CorporationStatusLOV\":{\"title\":\"Root Type for CorporationStatusLOV\",\"description\":\"Kurumun Statüleri belirler.\\nÖrnek: Aktif, İnşaat, Kapalı, Tadilatta gibi durumlardır.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int32\",\"description\":\"Kurum Status ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Kurum Status Name\",\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\": 1,\\n \\\"name\\\": \\\"some text\\\"\\n}\"]},\"ContactInfoCreateDTO\":{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"CorporationBuildInfoDTO\":{\"title\":\"Root Type for CorporationBuildInfo\",\"description\":\"Kurum İnşaat Bilgisi. Bir Kurum ilk inşaat statüsünde açılır. daha sonrasında aktif olur. İnşaat bilgisi Kurumun genel bilgileriyle benzerlik gösterir. Aslında planlanan Kurum bilgileridir.\",\"type\":\"object\",\"properties\":{\"constructionDate\":{\"format\":\"date\",\"description\":\"İnşaat Başlama Tarihi\",\"type\":\"string\"},\"id\":{\"format\":\"int32\",\"description\":\"Kurum ID bilgisi\",\"type\":\"integer\"},\"note\":{\"description\":\"Açıklama Bilgisi\",\"type\":\"string\"},\"openedDate\":{\"format\":\"date\",\"description\":\"Açılış Tarihi\",\"type\":\"string\"},\"plannedCorporationFormalityStatus\":{\"$ref\":\"#/definitions/CorporationFormalityStatusLOV\"},\"plannedFormalityStatus\":{\"$ref\":\"#/definitions/FormalityStatusLOV\"},\"plannedGender\":{\"$ref\":\"#/definitions/GenderLOV\"},\"plannedOwnershipStatus\":{\"$ref\":\"#/definitions/OwnershipStatusLOV\"},\"plannedQuota\":{\"format\":\"int32\",\"description\":\"Planlanan Kontenjan Bilgisi\",\"type\":\"integer\"},\"plannedQuotaStudentClassification\":{\"$ref\":\"#/definitions/StudentClassificationLOV\"},\"plannedUsageArea\":{\"format\":\"int32\",\"description\":\"Planlanan, Kullanım alanı metrekare olarak bilgisi\",\"type\":\"integer\"}},\"examples\":[{\"constructionDate\":\"2018-01-17T00:00:00.000Z\",\"id\":49,\"note\":\"some text\",\"openedDate\":\"2018-01-17T00:00:00.000Z\",\"plannedCorporationFormalityStatus\":{\"id\":47,\"name\":\"some text\"},\"plannedFormalityStatus\":{\"id\":43,\"name\":\"some text\"},\"plannedGender\":{\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"id\":87,\"lastModifiedBy\":\"some text\",\"lastModifiedDate\":\"2018-02-10T09:30Z\",\"name\":\"some text\"},\"plannedOwnershipStatus\":{\"id\":33,\"name\":\"some text\"},\"plannedQuota\":70,\"plannedQuotaStudentClassification\":{\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"id\":50,\"lastModifiedBy\":\"some text\",\"lastModifiedDate\":\"2018-02-10T09:30Z\",\"name\":\"some text\"},\"plannedUsageArea\":51}]},\"StudentClassificationLOV\":{\"title\":\"StudentClassificationLOV\",\"description\":\"Talebe nevileridir. Örneğin; Orta okul, lise, üniversite, daimi, tekamul, daimi ortaokul, üniversite hazırlık\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Talebe nevi adi\",\"type\":\"string\"}}},\"OwnershipStatusLOV\":{\"description\":\"Kurumun mülkiyet durumları bilgisi.\",\"required\":[\"id\",\"name\"],\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"id bilgisi.\",\"type\":\"integer\"},\"name\":{\"description\":\"Mülkiyet adı bilgisi.\",\"type\":\"string\"}}},\"GenderLOV\":{\"title\":\"GenderLOV\",\"description\":\"Cinsiyet tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Cinsiyet adi\",\"type\":\"string\"}}},\"FormalityStatusLOV\":{\"description\":\"Resmiyet durumları. Örnek: Resmi ve hususi.\\nResmi : Devlet nezdinde resmiyete kavuşturulmuş (tapu, vergi, vb.) kurumlar için kullanılır.\\nHususi : Henüz devlet nezdinde resmiyete kavuşturulamamış kurumları ifade eder.\",\"required\":[\"id\",\"name\"],\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"Resmiyet statusü id bilgisi.\",\"type\":\"integer\"},\"name\":{\"description\":\"Resmiyet statüsüne ait isim bilgisi.\",\"type\":\"string\"}}},\"CorporationFormalityStatusLOV\":{\"title\":\"Root Type for CorporationFormalStatusLOV\",\"description\":\"Kurumun resmiyet ve hususiyet durumları:\\nÖrnek :\\nKurum RESMİYET DURUMLARI\\n\\n RESMİ (seçilirse 2. combobox da çıkacak seçenekler)\\n ORTAOKUL ERKEK YURDU\\n ORTAOKUL KIZ YURDU\\n ORTAÖĞRENİM ERKEK YURDU\\n ORTAÖĞRENİM ERKEK PANSİYONU\\n ORTAÖĞRENİM KIZ YURDU\\n ORTAÖĞRENİM KIZ PANSİYONU\\n YÜKSEKÖĞRENİM ERKEK YURDU\\n YÜKSEKÖĞRENİM ERKEK PANSİYONU\\n YÜKSEKÖĞRENİM ERKEK APARTI\\n ERKEK KUR’AN KURSU\\n KIZ KUR’AN KURSU\\n HUSUSİ (seçilirse 2. combobox da çıkacak seçenekler)\\n HUSUSİ YURT\\n HUSUSİ EV YURDU\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int32\",\"description\":\"Kurum resmiyet seçenekleri ID bilgisi\",\"type\":\"integer\"},\"name\":{\"description\":\"Kurum resmiyet seçenekleri isim bilgisi\",\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\": 1,\\n \\\"name\\\": \\\"some text\\\"\\n}\"]},\"BolgeLOV\":{\"title\":\"BolgeLOV\",\"description\":\"Bolgeye ait tanimi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Bolge adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"AddressCreateDTO\":{\"title\":\"AddressCreateDTO\",\"description\":\" Kisi veya kurumun adres bilgisini olusturmak icin kullanılır.\\n Adrese ait lokasyon bilgisini içerisinde barındırır.\\n Lokasyon bilgisi önceden tanımlı olmalıdır. Lokasyon bilgisi alınırken lokasyon hierarşisinde kullanıcının seçtiği en altta kalan lokasyonun idsi yeterlidir.\\n Örneğin Türkiye - İstanbul - Ümraniye lokasyonu için sadece Ümraniyenin id sinin verilmesi yeterlidir.\",\"type\":\"object\",\"properties\":{\"address1\":{\"description\":\"Açık adres 1. satır\",\"type\":\"string\"},\"address2\":{\"description\":\"Açık adres 2. satır\",\"type\":\"string\"},\"address3\":{\"description\":\"Açık adres 3. satır\",\"type\":\"string\"},\"categories\":{\"description\":\"Adres kategorileri. İş adresi, Ev adresi, Öncelikli adres\",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Açık adres ve lokasyon bilgilerini içeren tam adres\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"locationId\":{\"format\":\"int64\",\"description\":\"Adresin bağlı olduğu en dip lokasyon bilgisi. Ümraniye, Üsküdar vb.\",\"type\":\"integer\"}}},\"ActiveCorporationInfoDTO\":{\"description\":\"Faal Kurum bilgisidir.\",\"required\":[\"generalInfo\"],\"type\":\"object\",\"properties\":{\"generalInfo\":{\"$ref\":\"#/definitions/CorporationGeneralInfoDTO\"},\"studentClassificationQuotaInfo\":{\"$ref\":\"#/definitions/CorporationStudentClassificationInfoDTO\"}}},\"CorporationStudentClassificationInfoDTO\":{\"title\":\"Root Type for CorporationBuildInfo\",\"description\":\"Kurumda kalan talebe nevileri ve buna ait kontenjan bilgilerini içerir.\",\"type\":\"object\",\"properties\":{\"gender\":{\"$ref\":\"#/definitions/GenderLOV\"},\"note\":{\"description\":\"Açıklama Bilgisi\",\"type\":\"string\"},\"quota\":{\"format\":\"int32\",\"description\":\"Kontenjan Bilgisi\",\"type\":\"integer\"},\"quotaStudentClassification\":{\"description\":\"Kuruma alınacak Talebe nevisi.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/CorporationStudentClassificationQuotaDTO\"}},\"usageArea\":{\"format\":\"int32\",\"description\":\"Kullanım alanı metrekare olarak bilgisi\",\"type\":\"integer\"}},\"examples\":[{\"gender\":{\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"id\":33,\"lastModifiedBy\":\"some text\",\"lastModifiedDate\":\"2018-02-10T09:30Z\",\"name\":\"some text\"},\"note\":\"some text\",\"quota\":24,\"quotaStudentClassification\":[{\"corporationID\":95,\"corporationStatusID\":59,\"quota\":38,\"studentClassificationID\":1},{\"corporationID\":96,\"corporationStatusID\":75,\"quota\":86,\"studentClassificationID\":28}],\"usageArea\":9}]},\"CorporationStudentClassificationQuotaDTO\":{\"title\":\"Root Type for corporationStudentClassificationQuota\",\"description\":\"Kurum Öğrenci Nevileri kota bilgisi. corporationID, corporationStatusID, studentClassificationID ve kontenjan bilgisi yer alır.\",\"type\":\"object\",\"properties\":{\"corporationID\":{\"format\":\"int32\",\"description\":\"Kurum Bilgisi\",\"type\":\"integer\"},\"corporationStatus\":{\"$ref\":\"#/definitions/CorporationStatusLOV\"},\"quota\":{\"format\":\"int32\",\"description\":\"Kontenjan Bilgisi\",\"type\":\"integer\"},\"studentClassification\":{\"$ref\":\"#/definitions/CorporationStudentClassificationInfoDTO\"}},\"examples\":[{\"corporationID\":95,\"corporationStatus\":{\"id\":14,\"name\":\"some text\"},\"quota\":59,\"studentClassification\":{\"gender\":{\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"id\":88,\"name\":\"some text\"},\"note\":\"some text\",\"quota\":35,\"quotaStudentClassification\":[{\"corporationID\":56,\"corporationStatus\":{\"id\":65,\"name\":\"some text\"},\"quota\":64,\"studentClassification\":{}},{\"corporationID\":94,\"corporationStatus\":{\"id\":51,\"name\":\"some text\"},\"quota\":72,\"studentClassification\":{}}],\"usageArea\":96}}]},\"CorporationGeneralInfoDTO\":{\"description\":\"Faal Kurum bilgisidir.\",\"required\":[\"buildingType\",\"corporationFormalStatus\",\"formalName\",\"formalityStatus\",\"openingDate\",\"ownershipStatus\"],\"type\":\"object\",\"properties\":{\"buildingType\":{\"$ref\":\"#/definitions/BuildingTypeLOV\"},\"corporationFormalStatus\":{\"$ref\":\"#/definitions/CorporationFormalityStatusLOV\"},\"formalName\":{\"description\":\"Kurumun resmi adı bilgisidir.\",\"type\":\"string\"},\"formalityStatus\":{\"$ref\":\"#/definitions/FormalityStatusLOV\"},\"openingDate\":{\"format\":\"date\",\"description\":\"Açılış tarihi bilgisi.\",\"type\":\"string\"},\"ownershipStatus\":{\"$ref\":\"#/definitions/OwnershipStatusLOV\"}},\"examples\":[{\"buildingType\":{\"id\":71,\"name\":\"some text\"},\"corporationFormalStatus\":{\"id\":7,\"name\":\"some text\"},\"formalName\":\"some text\",\"formalityStatus\":{\"id\":74,\"name\":\"some text\"},\"openingDate\":\"2018-01-17T00:00:00.000Z\",\"ownershipStatus\":{\"id\":12,\"name\":\"some text\"}}]},\"BuildingTypeLOV\":{\"title\":\"Root Type for BuildingType\",\"description\":\"Key Value şeklinde; Bina Türlerini ifade eder. Örnek : Yurt, Ofis, Nehari Yurt, Lokal, Hizmet Mahalli\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"Bina Türü ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Bina Türü Adı\",\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\": 1,\\n \\\"name\\\": \\\"some text\\\"\\n}\"]}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CorporationCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/CorporationCreateDTO\"}],\"definitions\":{\"CorporationCreateDTO\":{\"description\":\"Kurum kaydı oluşturmayı sağlayan objedir.\",\"required\":[\"address\",\"bolge\",\"corporationCode\",\"corporationName\",\"corporationStatus\",\"mintika\"],\"type\":\"object\",\"properties\":{\"activeCorporationInfo\":{\"$ref\":\"#/definitions/ActiveCorporationInfoDTO\"},\"address\":{\"$ref\":\"#/definitions/AddressCreateDTO\"},\"bolge\":{\"$ref\":\"#/definitions/BolgeLOV\"},\"buildInfo\":{\"$ref\":\"#/definitions/CorporationBuildInfoDTO\"},\"contactInfo\":{\"$ref\":\"#/definitions/ContactInfoCreateDTO\"},\"corporationCode\":{\"description\":\"Sistem tarafından generate edilen Kurum kodu bilgisidir.\",\"type\":\"string\"},\"corporationName\":{\"description\":\"Kurumun isim bilgisidir.\",\"type\":\"string\"},\"corporationStatus\":{\"$ref\":\"#/definitions/CorporationStatusLOV\"},\"mintika\":{\"$ref\":\"#/definitions/MintikaLOV\"},\"note\":{\"description\":\"Açıklama bilgisidir. \",\"type\":\"string\"}}},\"MintikaLOV\":{\"title\":\"MintikaLOV\",\"description\":\"Mintika tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Mintika adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"CorporationStatusLOV\":{\"title\":\"Root Type for CorporationStatusLOV\",\"description\":\"Kurumun Statüleri belirler.\\nÖrnek: Aktif, İnşaat, Kapalı, Tadilatta gibi durumlardır.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int32\",\"description\":\"Kurum Status ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Kurum Status Name\",\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\": 1,\\n \\\"name\\\": \\\"some text\\\"\\n}\"]},\"ContactInfoCreateDTO\":{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"CorporationBuildInfoDTO\":{\"title\":\"Root Type for CorporationBuildInfo\",\"description\":\"Kurum İnşaat Bilgisi. Bir Kurum ilk inşaat statüsünde açılır. daha sonrasında aktif olur. İnşaat bilgisi Kurumun genel bilgileriyle benzerlik gösterir. Aslında planlanan Kurum bilgileridir.\",\"type\":\"object\",\"properties\":{\"constructionDate\":{\"format\":\"date\",\"description\":\"İnşaat Başlama Tarihi\",\"type\":\"string\"},\"id\":{\"format\":\"int32\",\"description\":\"Kurum ID bilgisi\",\"type\":\"integer\"},\"note\":{\"description\":\"Açıklama Bilgisi\",\"type\":\"string\"},\"openedDate\":{\"format\":\"date\",\"description\":\"Açılış Tarihi\",\"type\":\"string\"},\"plannedCorporationFormalityStatus\":{\"$ref\":\"#/definitions/CorporationFormalityStatusLOV\"},\"plannedFormalityStatus\":{\"$ref\":\"#/definitions/FormalityStatusLOV\"},\"plannedGender\":{\"$ref\":\"#/definitions/GenderLOV\"},\"plannedOwnershipStatus\":{\"$ref\":\"#/definitions/OwnershipStatusLOV\"},\"plannedQuota\":{\"format\":\"int32\",\"description\":\"Planlanan Kontenjan Bilgisi\",\"type\":\"integer\"},\"plannedQuotaStudentClassification\":{\"$ref\":\"#/definitions/StudentClassificationLOV\"},\"plannedUsageArea\":{\"format\":\"int32\",\"description\":\"Planlanan, Kullanım alanı metrekare olarak bilgisi\",\"type\":\"integer\"}},\"examples\":[{\"constructionDate\":\"2018-01-17T00:00:00.000Z\",\"id\":49,\"note\":\"some text\",\"openedDate\":\"2018-01-17T00:00:00.000Z\",\"plannedCorporationFormalityStatus\":{\"id\":47,\"name\":\"some text\"},\"plannedFormalityStatus\":{\"id\":43,\"name\":\"some text\"},\"plannedGender\":{\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"id\":87,\"lastModifiedBy\":\"some text\",\"lastModifiedDate\":\"2018-02-10T09:30Z\",\"name\":\"some text\"},\"plannedOwnershipStatus\":{\"id\":33,\"name\":\"some text\"},\"plannedQuota\":70,\"plannedQuotaStudentClassification\":{\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"id\":50,\"lastModifiedBy\":\"some text\",\"lastModifiedDate\":\"2018-02-10T09:30Z\",\"name\":\"some text\"},\"plannedUsageArea\":51}]},\"StudentClassificationLOV\":{\"title\":\"StudentClassificationLOV\",\"description\":\"Talebe nevileridir. Örneğin; Orta okul, lise, üniversite, daimi, tekamul, daimi ortaokul, üniversite hazırlık\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Talebe nevi adi\",\"type\":\"string\"}}},\"OwnershipStatusLOV\":{\"description\":\"Kurumun mülkiyet durumları bilgisi.\",\"required\":[\"id\",\"name\"],\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"id bilgisi.\",\"type\":\"integer\"},\"name\":{\"description\":\"Mülkiyet adı bilgisi.\",\"type\":\"string\"}}},\"GenderLOV\":{\"title\":\"GenderLOV\",\"description\":\"Cinsiyet tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Cinsiyet adi\",\"type\":\"string\"}}},\"FormalityStatusLOV\":{\"description\":\"Resmiyet durumları. Örnek: Resmi ve hususi.\\nResmi : Devlet nezdinde resmiyete kavuşturulmuş (tapu, vergi, vb.) kurumlar için kullanılır.\\nHususi : Henüz devlet nezdinde resmiyete kavuşturulamamış kurumları ifade eder.\",\"required\":[\"id\",\"name\"],\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"Resmiyet statusü id bilgisi.\",\"type\":\"integer\"},\"name\":{\"description\":\"Resmiyet statüsüne ait isim bilgisi.\",\"type\":\"string\"}}},\"CorporationFormalityStatusLOV\":{\"title\":\"Root Type for CorporationFormalStatusLOV\",\"description\":\"Kurumun resmiyet ve hususiyet durumları:\\nÖrnek :\\nKurum RESMİYET DURUMLARI\\n\\n RESMİ (seçilirse 2. combobox da çıkacak seçenekler)\\n ORTAOKUL ERKEK YURDU\\n ORTAOKUL KIZ YURDU\\n ORTAÖĞRENİM ERKEK YURDU\\n ORTAÖĞRENİM ERKEK PANSİYONU\\n ORTAÖĞRENİM KIZ YURDU\\n ORTAÖĞRENİM KIZ PANSİYONU\\n YÜKSEKÖĞRENİM ERKEK YURDU\\n YÜKSEKÖĞRENİM ERKEK PANSİYONU\\n YÜKSEKÖĞRENİM ERKEK APARTI\\n ERKEK KUR’AN KURSU\\n KIZ KUR’AN KURSU\\n HUSUSİ (seçilirse 2. combobox da çıkacak seçenekler)\\n HUSUSİ YURT\\n HUSUSİ EV YURDU\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int32\",\"description\":\"Kurum resmiyet seçenekleri ID bilgisi\",\"type\":\"integer\"},\"name\":{\"description\":\"Kurum resmiyet seçenekleri isim bilgisi\",\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\": 1,\\n \\\"name\\\": \\\"some text\\\"\\n}\"]},\"BolgeLOV\":{\"title\":\"BolgeLOV\",\"description\":\"Bolgeye ait tanimi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Bolge adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"AddressCreateDTO\":{\"title\":\"AddressCreateDTO\",\"description\":\" Kisi veya kurumun adres bilgisini olusturmak icin kullanılır.\\n Adrese ait lokasyon bilgisini içerisinde barındırır.\\n Lokasyon bilgisi önceden tanımlı olmalıdır. Lokasyon bilgisi alınırken lokasyon hierarşisinde kullanıcının seçtiği en altta kalan lokasyonun idsi yeterlidir.\\n Örneğin Türkiye - İstanbul - Ümraniye lokasyonu için sadece Ümraniyenin id sinin verilmesi yeterlidir.\",\"type\":\"object\",\"properties\":{\"address1\":{\"description\":\"Açık adres 1. satır\",\"type\":\"string\"},\"address2\":{\"description\":\"Açık adres 2. satır\",\"type\":\"string\"},\"address3\":{\"description\":\"Açık adres 3. satır\",\"type\":\"string\"},\"categories\":{\"description\":\"Adres kategorileri. İş adresi, Ev adresi, Öncelikli adres\",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Açık adres ve lokasyon bilgilerini içeren tam adres\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"locationId\":{\"format\":\"int64\",\"description\":\"Adresin bağlı olduğu en dip lokasyon bilgisi. Ümraniye, Üsküdar vb.\",\"type\":\"integer\"}}},\"ActiveCorporationInfoDTO\":{\"description\":\"Faal Kurum bilgisidir.\",\"required\":[\"generalInfo\"],\"type\":\"object\",\"properties\":{\"generalInfo\":{\"$ref\":\"#/definitions/CorporationGeneralInfoDTO\"},\"studentClassificationQuotaInfo\":{\"$ref\":\"#/definitions/CorporationStudentClassificationInfoDTO\"}}},\"CorporationStudentClassificationInfoDTO\":{\"title\":\"Root Type for CorporationBuildInfo\",\"description\":\"Kurumda kalan talebe nevileri ve buna ait kontenjan bilgilerini içerir.\",\"type\":\"object\",\"properties\":{\"gender\":{\"$ref\":\"#/definitions/GenderLOV\"},\"note\":{\"description\":\"Açıklama Bilgisi\",\"type\":\"string\"},\"quota\":{\"format\":\"int32\",\"description\":\"Kontenjan Bilgisi\",\"type\":\"integer\"},\"quotaStudentClassification\":{\"description\":\"Kuruma alınacak Talebe nevisi.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/CorporationStudentClassificationQuotaDTO\"}},\"usageArea\":{\"format\":\"int32\",\"description\":\"Kullanım alanı metrekare olarak bilgisi\",\"type\":\"integer\"}},\"examples\":[{\"gender\":{\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"id\":33,\"lastModifiedBy\":\"some text\",\"lastModifiedDate\":\"2018-02-10T09:30Z\",\"name\":\"some text\"},\"note\":\"some text\",\"quota\":24,\"quotaStudentClassification\":[{\"corporationID\":95,\"corporationStatusID\":59,\"quota\":38,\"studentClassificationID\":1},{\"corporationID\":96,\"corporationStatusID\":75,\"quota\":86,\"studentClassificationID\":28}],\"usageArea\":9}]},\"CorporationStudentClassificationQuotaDTO\":{\"title\":\"Root Type for corporationStudentClassificationQuota\",\"description\":\"Kurum Öğrenci Nevileri kota bilgisi. corporationID, corporationStatusID, studentClassificationID ve kontenjan bilgisi yer alır.\",\"type\":\"object\",\"properties\":{\"corporationID\":{\"format\":\"int32\",\"description\":\"Kurum Bilgisi\",\"type\":\"integer\"},\"corporationStatus\":{\"$ref\":\"#/definitions/CorporationStatusLOV\"},\"quota\":{\"format\":\"int32\",\"description\":\"Kontenjan Bilgisi\",\"type\":\"integer\"},\"studentClassification\":{\"$ref\":\"#/definitions/CorporationStudentClassificationInfoDTO\"}},\"examples\":[{\"corporationID\":95,\"corporationStatus\":{\"id\":14,\"name\":\"some text\"},\"quota\":59,\"studentClassification\":{\"gender\":{\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"id\":88,\"name\":\"some text\"},\"note\":\"some text\",\"quota\":35,\"quotaStudentClassification\":[{\"corporationID\":56,\"corporationStatus\":{\"id\":65,\"name\":\"some text\"},\"quota\":64,\"studentClassification\":{}},{\"corporationID\":94,\"corporationStatus\":{\"id\":51,\"name\":\"some text\"},\"quota\":72,\"studentClassification\":{}}],\"usageArea\":96}}]},\"CorporationGeneralInfoDTO\":{\"description\":\"Faal Kurum bilgisidir.\",\"required\":[\"buildingType\",\"corporationFormalStatus\",\"formalName\",\"formalityStatus\",\"openingDate\",\"ownershipStatus\"],\"type\":\"object\",\"properties\":{\"buildingType\":{\"$ref\":\"#/definitions/BuildingTypeLOV\"},\"corporationFormalStatus\":{\"$ref\":\"#/definitions/CorporationFormalityStatusLOV\"},\"formalName\":{\"description\":\"Kurumun resmi adı bilgisidir.\",\"type\":\"string\"},\"formalityStatus\":{\"$ref\":\"#/definitions/FormalityStatusLOV\"},\"openingDate\":{\"format\":\"date\",\"description\":\"Açılış tarihi bilgisi.\",\"type\":\"string\"},\"ownershipStatus\":{\"$ref\":\"#/definitions/OwnershipStatusLOV\"}},\"examples\":[{\"buildingType\":{\"id\":71,\"name\":\"some text\"},\"corporationFormalStatus\":{\"id\":7,\"name\":\"some text\"},\"formalName\":\"some text\",\"formalityStatus\":{\"id\":74,\"name\":\"some text\"},\"openingDate\":\"2018-01-17T00:00:00.000Z\",\"ownershipStatus\":{\"id\":12,\"name\":\"some text\"}}]},\"BuildingTypeLOV\":{\"title\":\"Root Type for BuildingType\",\"description\":\"Key Value şeklinde; Bina Türlerini ifade eder. Örnek : Yurt, Ofis, Nehari Yurt, Lokal, Hizmet Mahalli\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"Bina Türü ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Bina Türü Adı\",\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\": 1,\\n \\\"name\\\": \\\"some text\\\"\\n}\"]}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CorporationCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/CorporationCreateDTO\"}],\"definitions\":{\"CorporationCreateDTO\":{\"description\":\"Kurum kaydı oluşturmayı sağlayan objedir.\",\"required\":[\"address\",\"bolge\",\"corporationCode\",\"corporationName\",\"corporationStatus\",\"mintika\"],\"type\":\"object\",\"properties\":{\"activeCorporationInfo\":{\"$ref\":\"#/definitions/ActiveCorporationInfoDTO\"},\"address\":{\"$ref\":\"#/definitions/AddressCreateDTO\"},\"bolge\":{\"$ref\":\"#/definitions/BolgeLOV\"},\"buildInfo\":{\"$ref\":\"#/definitions/CorporationBuildInfoDTO\"},\"contactInfo\":{\"$ref\":\"#/definitions/ContactInfoCreateDTO\"},\"corporationCode\":{\"description\":\"Sistem tarafından generate edilen Kurum kodu bilgisidir.\",\"type\":\"string\"},\"corporationName\":{\"description\":\"Kurumun isim bilgisidir.\",\"type\":\"string\"},\"corporationStatus\":{\"$ref\":\"#/definitions/CorporationStatusLOV\"},\"mintika\":{\"$ref\":\"#/definitions/MintikaLOV\"},\"note\":{\"description\":\"Açıklama bilgisidir. \",\"type\":\"string\"}}},\"MintikaLOV\":{\"title\":\"MintikaLOV\",\"description\":\"Mintika tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Mintika adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"CorporationStatusLOV\":{\"title\":\"Root Type for CorporationStatusLOV\",\"description\":\"Kurumun Statüleri belirler.\\nÖrnek: Aktif, İnşaat, Kapalı, Tadilatta gibi durumlardır.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int32\",\"description\":\"Kurum Status ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Kurum Status Name\",\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\": 1,\\n \\\"name\\\": \\\"some text\\\"\\n}\"]},\"ContactInfoCreateDTO\":{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"CorporationBuildInfoDTO\":{\"title\":\"Root Type for CorporationBuildInfo\",\"description\":\"Kurum İnşaat Bilgisi. Bir Kurum ilk inşaat statüsünde açılır. daha sonrasında aktif olur. İnşaat bilgisi Kurumun genel bilgileriyle benzerlik gösterir. Aslında planlanan Kurum bilgileridir.\",\"type\":\"object\",\"properties\":{\"constructionDate\":{\"format\":\"date\",\"description\":\"İnşaat Başlama Tarihi\",\"type\":\"string\"},\"id\":{\"format\":\"int32\",\"description\":\"Kurum ID bilgisi\",\"type\":\"integer\"},\"note\":{\"description\":\"Açıklama Bilgisi\",\"type\":\"string\"},\"openedDate\":{\"format\":\"date\",\"description\":\"Açılış Tarihi\",\"type\":\"string\"},\"plannedCorporationFormalityStatus\":{\"$ref\":\"#/definitions/CorporationFormalityStatusLOV\"},\"plannedFormalityStatus\":{\"$ref\":\"#/definitions/FormalityStatusLOV\"},\"plannedGender\":{\"$ref\":\"#/definitions/GenderLOV\"},\"plannedOwnershipStatus\":{\"$ref\":\"#/definitions/OwnershipStatusLOV\"},\"plannedQuota\":{\"format\":\"int32\",\"description\":\"Planlanan Kontenjan Bilgisi\",\"type\":\"integer\"},\"plannedQuotaStudentClassification\":{\"$ref\":\"#/definitions/StudentClassificationLOV\"},\"plannedUsageArea\":{\"format\":\"int32\",\"description\":\"Planlanan, Kullanım alanı metrekare olarak bilgisi\",\"type\":\"integer\"}},\"examples\":[{\"constructionDate\":\"2018-01-17T00:00:00.000Z\",\"id\":49,\"note\":\"some text\",\"openedDate\":\"2018-01-17T00:00:00.000Z\",\"plannedCorporationFormalityStatus\":{\"id\":47,\"name\":\"some text\"},\"plannedFormalityStatus\":{\"id\":43,\"name\":\"some text\"},\"plannedGender\":{\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"id\":87,\"lastModifiedBy\":\"some text\",\"lastModifiedDate\":\"2018-02-10T09:30Z\",\"name\":\"some text\"},\"plannedOwnershipStatus\":{\"id\":33,\"name\":\"some text\"},\"plannedQuota\":70,\"plannedQuotaStudentClassification\":{\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"id\":50,\"lastModifiedBy\":\"some text\",\"lastModifiedDate\":\"2018-02-10T09:30Z\",\"name\":\"some text\"},\"plannedUsageArea\":51}]},\"StudentClassificationLOV\":{\"title\":\"StudentClassificationLOV\",\"description\":\"Talebe nevileridir. Örneğin; Orta okul, lise, üniversite, daimi, tekamul, daimi ortaokul, üniversite hazırlık\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Talebe nevi adi\",\"type\":\"string\"}}},\"OwnershipStatusLOV\":{\"description\":\"Kurumun mülkiyet durumları bilgisi.\",\"required\":[\"id\",\"name\"],\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"id bilgisi.\",\"type\":\"integer\"},\"name\":{\"description\":\"Mülkiyet adı bilgisi.\",\"type\":\"string\"}}},\"GenderLOV\":{\"title\":\"GenderLOV\",\"description\":\"Cinsiyet tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Cinsiyet adi\",\"type\":\"string\"}}},\"FormalityStatusLOV\":{\"description\":\"Resmiyet durumları. Örnek: Resmi ve hususi.\\nResmi : Devlet nezdinde resmiyete kavuşturulmuş (tapu, vergi, vb.) kurumlar için kullanılır.\\nHususi : Henüz devlet nezdinde resmiyete kavuşturulamamış kurumları ifade eder.\",\"required\":[\"id\",\"name\"],\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"Resmiyet statusü id bilgisi.\",\"type\":\"integer\"},\"name\":{\"description\":\"Resmiyet statüsüne ait isim bilgisi.\",\"type\":\"string\"}}},\"CorporationFormalityStatusLOV\":{\"title\":\"Root Type for CorporationFormalStatusLOV\",\"description\":\"Kurumun resmiyet ve hususiyet durumları:\\nÖrnek :\\nKurum RESMİYET DURUMLARI\\n\\n RESMİ (seçilirse 2. combobox da çıkacak seçenekler)\\n ORTAOKUL ERKEK YURDU\\n ORTAOKUL KIZ YURDU\\n ORTAÖĞRENİM ERKEK YURDU\\n ORTAÖĞRENİM ERKEK PANSİYONU\\n ORTAÖĞRENİM KIZ YURDU\\n ORTAÖĞRENİM KIZ PANSİYONU\\n YÜKSEKÖĞRENİM ERKEK YURDU\\n YÜKSEKÖĞRENİM ERKEK PANSİYONU\\n YÜKSEKÖĞRENİM ERKEK APARTI\\n ERKEK KUR’AN KURSU\\n KIZ KUR’AN KURSU\\n HUSUSİ (seçilirse 2. combobox da çıkacak seçenekler)\\n HUSUSİ YURT\\n HUSUSİ EV YURDU\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int32\",\"description\":\"Kurum resmiyet seçenekleri ID bilgisi\",\"type\":\"integer\"},\"name\":{\"description\":\"Kurum resmiyet seçenekleri isim bilgisi\",\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\": 1,\\n \\\"name\\\": \\\"some text\\\"\\n}\"]},\"BolgeLOV\":{\"title\":\"BolgeLOV\",\"description\":\"Bolgeye ait tanimi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Bolge adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"AddressCreateDTO\":{\"title\":\"AddressCreateDTO\",\"description\":\" Kisi veya kurumun adres bilgisini olusturmak icin kullanılır.\\n Adrese ait lokasyon bilgisini içerisinde barındırır.\\n Lokasyon bilgisi önceden tanımlı olmalıdır. Lokasyon bilgisi alınırken lokasyon hierarşisinde kullanıcının seçtiği en altta kalan lokasyonun idsi yeterlidir.\\n Örneğin Türkiye - İstanbul - Ümraniye lokasyonu için sadece Ümraniyenin id sinin verilmesi yeterlidir.\",\"type\":\"object\",\"properties\":{\"address1\":{\"description\":\"Açık adres 1. satır\",\"type\":\"string\"},\"address2\":{\"description\":\"Açık adres 2. satır\",\"type\":\"string\"},\"address3\":{\"description\":\"Açık adres 3. satır\",\"type\":\"string\"},\"categories\":{\"description\":\"Adres kategorileri. İş adresi, Ev adresi, Öncelikli adres\",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Açık adres ve lokasyon bilgilerini içeren tam adres\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"locationId\":{\"format\":\"int64\",\"description\":\"Adresin bağlı olduğu en dip lokasyon bilgisi. Ümraniye, Üsküdar vb.\",\"type\":\"integer\"}}},\"ActiveCorporationInfoDTO\":{\"description\":\"Faal Kurum bilgisidir.\",\"required\":[\"generalInfo\"],\"type\":\"object\",\"properties\":{\"generalInfo\":{\"$ref\":\"#/definitions/CorporationGeneralInfoDTO\"},\"studentClassificationQuotaInfo\":{\"$ref\":\"#/definitions/CorporationStudentClassificationInfoDTO\"}}},\"CorporationStudentClassificationInfoDTO\":{\"title\":\"Root Type for CorporationBuildInfo\",\"description\":\"Kurumda kalan talebe nevileri ve buna ait kontenjan bilgilerini içerir.\",\"type\":\"object\",\"properties\":{\"gender\":{\"$ref\":\"#/definitions/GenderLOV\"},\"note\":{\"description\":\"Açıklama Bilgisi\",\"type\":\"string\"},\"quota\":{\"format\":\"int32\",\"description\":\"Kontenjan Bilgisi\",\"type\":\"integer\"},\"quotaStudentClassification\":{\"description\":\"Kuruma alınacak Talebe nevisi.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/CorporationStudentClassificationQuotaDTO\"}},\"usageArea\":{\"format\":\"int32\",\"description\":\"Kullanım alanı metrekare olarak bilgisi\",\"type\":\"integer\"}},\"examples\":[{\"gender\":{\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"id\":33,\"lastModifiedBy\":\"some text\",\"lastModifiedDate\":\"2018-02-10T09:30Z\",\"name\":\"some text\"},\"note\":\"some text\",\"quota\":24,\"quotaStudentClassification\":[{\"corporationID\":95,\"corporationStatusID\":59,\"quota\":38,\"studentClassificationID\":1},{\"corporationID\":96,\"corporationStatusID\":75,\"quota\":86,\"studentClassificationID\":28}],\"usageArea\":9}]},\"CorporationStudentClassificationQuotaDTO\":{\"title\":\"Root Type for corporationStudentClassificationQuota\",\"description\":\"Kurum Öğrenci Nevileri kota bilgisi. corporationID, corporationStatusID, studentClassificationID ve kontenjan bilgisi yer alır.\",\"type\":\"object\",\"properties\":{\"corporationID\":{\"format\":\"int32\",\"description\":\"Kurum Bilgisi\",\"type\":\"integer\"},\"corporationStatus\":{\"$ref\":\"#/definitions/CorporationStatusLOV\"},\"quota\":{\"format\":\"int32\",\"description\":\"Kontenjan Bilgisi\",\"type\":\"integer\"},\"studentClassification\":{\"$ref\":\"#/definitions/CorporationStudentClassificationInfoDTO\"}},\"examples\":[{\"corporationID\":95,\"corporationStatus\":{\"id\":14,\"name\":\"some text\"},\"quota\":59,\"studentClassification\":{\"gender\":{\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"id\":88,\"name\":\"some text\"},\"note\":\"some text\",\"quota\":35,\"quotaStudentClassification\":[{\"corporationID\":56,\"corporationStatus\":{\"id\":65,\"name\":\"some text\"},\"quota\":64,\"studentClassification\":{}},{\"corporationID\":94,\"corporationStatus\":{\"id\":51,\"name\":\"some text\"},\"quota\":72,\"studentClassification\":{}}],\"usageArea\":96}}]},\"CorporationGeneralInfoDTO\":{\"description\":\"Faal Kurum bilgisidir.\",\"required\":[\"buildingType\",\"corporationFormalStatus\",\"formalName\",\"formalityStatus\",\"openingDate\",\"ownershipStatus\"],\"type\":\"object\",\"properties\":{\"buildingType\":{\"$ref\":\"#/definitions/BuildingTypeLOV\"},\"corporationFormalStatus\":{\"$ref\":\"#/definitions/CorporationFormalityStatusLOV\"},\"formalName\":{\"description\":\"Kurumun resmi adı bilgisidir.\",\"type\":\"string\"},\"formalityStatus\":{\"$ref\":\"#/definitions/FormalityStatusLOV\"},\"openingDate\":{\"format\":\"date\",\"description\":\"Açılış tarihi bilgisi.\",\"type\":\"string\"},\"ownershipStatus\":{\"$ref\":\"#/definitions/OwnershipStatusLOV\"}},\"examples\":[{\"buildingType\":{\"id\":71,\"name\":\"some text\"},\"corporationFormalStatus\":{\"id\":7,\"name\":\"some text\"},\"formalName\":\"some text\",\"formalityStatus\":{\"id\":74,\"name\":\"some text\"},\"openingDate\":\"2018-01-17T00:00:00.000Z\",\"ownershipStatus\":{\"id\":12,\"name\":\"some text\"}}]},\"BuildingTypeLOV\":{\"title\":\"Root Type for BuildingType\",\"description\":\"Key Value şeklinde; Bina Türlerini ifade eder. Örnek : Yurt, Ofis, Nehari Yurt, Lokal, Hizmet Mahalli\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"Bina Türü ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Bina Türü Adı\",\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\": 1,\\n \\\"name\\\": \\\"some text\\\"\\n}\"]}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CorporationCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz." + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Kurum ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + }, + "href": { + "element": "string", + "content": "/api/sbt/corporations/{id}" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Kurum Profil Görüntüleme Servisi" + }, + "id": { + "element": "string", + "content": "getCorporation" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Kurum ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Kurum Görüntüleme yapılırken, eğer Kurum aktif ise, Genel bilgiler sekmesi açık olur ve genel bilgiler servisten döner." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/CorporationDTO\"}],\"definitions\":{\"CorporationDTO\":{\"title\":\"Root Type for CorporationDTO\",\"description\":\"Kuruma ait ana bilgiler yer alır.\\nÖrnek : ID, ADI, Organizasyonu, vb...\",\"required\":[\"bolge\"],\"type\":\"object\",\"properties\":{\"bolge\":{\"$ref\":\"#/definitions/BolgeLOV\"},\"code\":{\"description\":\"Kuruma verilen özel code bilgisidir. Kullanıcı tarafından belirli bir düzende oluşturulur.\",\"type\":\"string\"},\"generalInfo\":{\"$ref\":\"#/definitions/CorporationGeneralInfoDTO\"},\"id\":{\"format\":\"int64\",\"description\":\"Kurum ID bilgisidir.\",\"type\":\"integer\"},\"mintika\":{\"$ref\":\"#/definitions/MintikaLOV\"},\"name\":{\"description\":\"Kurum ismi bilgisidir.\",\"type\":\"string\"},\"status\":{\"$ref\":\"#/definitions/CorporationStatusLOV\"}},\"examples\":[{\"bolge\":{\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"id\":49,\"lastModifiedBy\":\"some text\",\"lastModifiedDate\":\"2018-02-10T09:30Z\",\"name\":\"some text\"},\"code\":\"some text\",\"id\":99,\"mintika\":{\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"id\":58,\"lastModifiedBy\":\"some text\",\"lastModifiedDate\":\"2018-02-10T09:30Z\",\"name\":\"some text\"},\"name\":\"some text\",\"status\":{\"id\":22,\"name\":\"some text\"}}]},\"CorporationStatusLOV\":{\"title\":\"Root Type for CorporationStatusLOV\",\"description\":\"Kurumun Statüleri belirler.\\nÖrnek: Aktif, İnşaat, Kapalı, Tadilatta gibi durumlardır.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int32\",\"description\":\"Kurum Status ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Kurum Status Name\",\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\": 1,\\n \\\"name\\\": \\\"some text\\\"\\n}\"]},\"MintikaLOV\":{\"title\":\"MintikaLOV\",\"description\":\"Mintika tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Mintika adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"CorporationGeneralInfoDTO\":{\"description\":\"Faal Kurum bilgisidir.\",\"required\":[\"buildingType\",\"corporationFormalStatus\",\"formalName\",\"formalityStatus\",\"openingDate\",\"ownershipStatus\"],\"type\":\"object\",\"properties\":{\"buildingType\":{\"$ref\":\"#/definitions/BuildingTypeLOV\"},\"corporationFormalStatus\":{\"$ref\":\"#/definitions/CorporationFormalityStatusLOV\"},\"formalName\":{\"description\":\"Kurumun resmi adı bilgisidir.\",\"type\":\"string\"},\"formalityStatus\":{\"$ref\":\"#/definitions/FormalityStatusLOV\"},\"openingDate\":{\"format\":\"date\",\"description\":\"Açılış tarihi bilgisi.\",\"type\":\"string\"},\"ownershipStatus\":{\"$ref\":\"#/definitions/OwnershipStatusLOV\"}},\"examples\":[{\"buildingType\":{\"id\":71,\"name\":\"some text\"},\"corporationFormalStatus\":{\"id\":7,\"name\":\"some text\"},\"formalName\":\"some text\",\"formalityStatus\":{\"id\":74,\"name\":\"some text\"},\"openingDate\":\"2018-01-17T00:00:00.000Z\",\"ownershipStatus\":{\"id\":12,\"name\":\"some text\"}}]},\"OwnershipStatusLOV\":{\"description\":\"Kurumun mülkiyet durumları bilgisi.\",\"required\":[\"id\",\"name\"],\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"id bilgisi.\",\"type\":\"integer\"},\"name\":{\"description\":\"Mülkiyet adı bilgisi.\",\"type\":\"string\"}}},\"FormalityStatusLOV\":{\"description\":\"Resmiyet durumları. Örnek: Resmi ve hususi.\\nResmi : Devlet nezdinde resmiyete kavuşturulmuş (tapu, vergi, vb.) kurumlar için kullanılır.\\nHususi : Henüz devlet nezdinde resmiyete kavuşturulamamış kurumları ifade eder.\",\"required\":[\"id\",\"name\"],\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"Resmiyet statusü id bilgisi.\",\"type\":\"integer\"},\"name\":{\"description\":\"Resmiyet statüsüne ait isim bilgisi.\",\"type\":\"string\"}}},\"CorporationFormalityStatusLOV\":{\"title\":\"Root Type for CorporationFormalStatusLOV\",\"description\":\"Kurumun resmiyet ve hususiyet durumları:\\nÖrnek :\\nKurum RESMİYET DURUMLARI\\n\\n RESMİ (seçilirse 2. combobox da çıkacak seçenekler)\\n ORTAOKUL ERKEK YURDU\\n ORTAOKUL KIZ YURDU\\n ORTAÖĞRENİM ERKEK YURDU\\n ORTAÖĞRENİM ERKEK PANSİYONU\\n ORTAÖĞRENİM KIZ YURDU\\n ORTAÖĞRENİM KIZ PANSİYONU\\n YÜKSEKÖĞRENİM ERKEK YURDU\\n YÜKSEKÖĞRENİM ERKEK PANSİYONU\\n YÜKSEKÖĞRENİM ERKEK APARTI\\n ERKEK KUR’AN KURSU\\n KIZ KUR’AN KURSU\\n HUSUSİ (seçilirse 2. combobox da çıkacak seçenekler)\\n HUSUSİ YURT\\n HUSUSİ EV YURDU\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int32\",\"description\":\"Kurum resmiyet seçenekleri ID bilgisi\",\"type\":\"integer\"},\"name\":{\"description\":\"Kurum resmiyet seçenekleri isim bilgisi\",\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\": 1,\\n \\\"name\\\": \\\"some text\\\"\\n}\"]},\"BuildingTypeLOV\":{\"title\":\"Root Type for BuildingType\",\"description\":\"Key Value şeklinde; Bina Türlerini ifade eder. Örnek : Yurt, Ofis, Nehari Yurt, Lokal, Hizmet Mahalli\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"Bina Türü ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Bina Türü Adı\",\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\": 1,\\n \\\"name\\\": \\\"some text\\\"\\n}\"]},\"BolgeLOV\":{\"title\":\"BolgeLOV\",\"description\":\"Bolgeye ait tanimi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Bolge adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CorporationDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz." + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Mintika ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "mintikaId" + }, + "value": { + "element": "number" + } + } + } + ] + }, + "href": { + "element": "string", + "content": "/api/sbt/mintikas/{mintikaId}/corporations" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Mıntıkadaki Kurumları dönen servis" + }, + "id": { + "element": "string", + "content": "getAllCorporationsByMintika" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "mintikaId" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "mintikaId" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Mıntıkadaki Kurumları dönen servis" + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/CorporationLOV\"},\"definitions\":{\"CorporationLOV\":{\"title\":\"CorporationLOV\",\"description\":\"Kurum tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Kurum adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/CorporationLOV" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz." + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Corporation ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + }, + "href": { + "element": "string", + "content": "/api/sbt/corporations/{id}/operational-teacher" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Kurum icindeki operasyonel personel servisi" + }, + "id": { + "element": "string", + "content": "getAllCorporationOperationalTeachers" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Kurum ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Kurumdaki aktif, operasyon yürüten personellerdir.\n1- Birincil derecede iletişim kurulacak insanlar\n2- Kurumdaki muhatablar" + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/CorporationOperationalTeacherDTO\"},\"definitions\":{\"CorporationOperationalTeacherDTO\":{\"title\":\"Root Type for CorporationOperationalPersonel\",\"description\":\"Kurumdaki aktif, operasyon yürüten personellerdir.\\n1- Birincil derecede iletişim kurulacak insanlar\\n2- Kurumdaki muhatablar\",\"type\":\"object\",\"properties\":{\"corporationId\":{\"format\":\"int64\",\"description\":\"Kurum bilgisi\",\"type\":\"integer\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"teacher\":{\"$ref\":\"#/definitions/TeacherCardDTO\"}},\"examples\":[{\"corporationId\":6,\"id\":15,\"teacher\":{\"id\":33,\"name\":\"some text\",\"surname\":\"some text\",\"duty\":{\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"dutyName\":\"some text\",\"endDate\":\"2018-02-10T09:30Z\",\"id\":46,\"lastModifiedBy\":\"some text\",\"lastModifiedDate\":\"2018-02-10T09:30Z\",\"organizationId\":66,\"organizationName\":\"some text\",\"startDate\":\"2018-02-10T09:30Z\"},\"contacts\":[{\"categories\":[{\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"id\":27,\"name\":\"some text\"},{\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"id\":73,\"name\":\"some text\"}],\"contactInfo\":\"some text\",\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"id\":70,\"lastModifiedBy\":\"some text\",\"lastModifiedDate\":\"2018-02-10T09:30Z\"},{\"categories\":[{\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"id\":2,\"name\":\"some text\"},{\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"id\":41,\"name\":\"some text\"}],\"contactInfo\":\"some text\",\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"id\":52,\"lastModifiedBy\":\"some text\",\"lastModifiedDate\":\"2018-02-10T09:30Z\"}]}}]},\"TeacherCardDTO\":{\"title\":\"Root Type for TeacherCardDTO\",\"description\":\"Personelin bilgilerini ihtiyaç duyulan basit bilgilerle taşıyan dto dur. Lov kadar az ver içermez TeacherDTO gibi bütün bilgileride taşımaz.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"Personel idsi\",\"type\":\"integer\"},\"name\":{\"description\":\"Adı\",\"type\":\"string\"},\"surname\":{\"description\":\"Soyadı\",\"type\":\"string\"},\"duty\":{\"$ref\":\"#/definitions/DutyDTO\"},\"contacts\":{\"description\":\"Telefon ve mail bilgileri\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactInfoDTO\"}}},\"examples\":[{\"id\":31,\"name\":\"some text\",\"surname\":\"some text\",\"duty\":{\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"dutyName\":\"some text\",\"endDate\":\"2018-02-10T09:30Z\",\"id\":87,\"lastModifiedBy\":\"some text\",\"lastModifiedDate\":\"2018-02-10T09:30Z\",\"organizationId\":71,\"organizationName\":\"some text\",\"startDate\":\"2018-02-10T09:30Z\"},\"contacts\":[{\"categories\":[{\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"id\":15,\"name\":\"some text\"},{\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"id\":52,\"name\":\"some text\"}],\"contactInfo\":\"some text\",\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"id\":50,\"lastModifiedBy\":\"some text\",\"lastModifiedDate\":\"2018-02-10T09:30Z\"},{\"categories\":[{\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"id\":26,\"name\":\"some text\"},{\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"id\":70,\"name\":\"some text\"}],\"contactInfo\":\"some text\",\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"id\":13,\"lastModifiedBy\":\"some text\",\"lastModifiedDate\":\"2018-02-10T09:30Z\"}]}]},\"ContactInfoDTO\":{\"title\":\"ContactInfoDTO\",\"description\":\"Iletisim bilgilerini sunmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Category of contact type. For example: Home address, Home telephone, Cell phone etc.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"contactInfo\":{\"description\":\"Telephone number or email address information depending on the type.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"ContactMediumCategoryLOV\":{\"title\":\"ContactMediumCategoryLOV\",\"description\":\"Contact medium kategorileri. Bir kategori tipine ait veriyi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Category Name\",\"type\":\"string\"}}},\"DutyDTO\":{\"title\":\"DutyDTO\",\"description\":\"Kisilere atanan vazifeler ve kurumunu tutmaktadır. Örneğin; Ümraniye erkek tekamul yurdunda yurt mesulu. İstanbul sekreteryada sekreter vb.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"dutyName\":{\"description\":\"Vazife adı\",\"type\":\"string\"},\"endDate\":{\"format\":\"date-time\",\"description\":\"Role end date\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"organizationId\":{\"format\":\"int64\",\"description\":\"Organization ID\",\"type\":\"integer\"},\"organizationName\":{\"description\":\"Organization Name\",\"type\":\"string\"},\"startDate\":{\"format\":\"date-time\",\"description\":\"Start date of role\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/CorporationOperationalTeacherDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz." + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Kuruma İdari Personel ekleme servisi" + }, + "id": { + "element": "string", + "content": "createCorporationOperationalTeacher" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Kurum ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Kurum içerisinde birincil muhatap olan personeller, İlk önce iletişime geçilmesi gereken kişiler bulunmaktadır. bunları ekleyen servisimizdir." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"Root Type for CorporationOperationalTeacherCreateDTO\",\"description\":\"Kurumdaki aktif, operasyon yürüten personel tanımlamak için kullanılır.\",\"type\":\"object\",\"properties\":{\"corporationId\":{\"format\":\"int64\",\"description\":\"Kurum bilgisi\",\"type\":\"integer\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"teacherId\":{\"format\":\"int64\",\"description\":\"Operasyonu yürüten personel bilgisi\",\"type\":\"integer\"}},\"examples\":[\"{\\n \\\"corporationId\\\": 6,\\n \\\"id\\\": 15,\\n \\\"teacherId\\\":1\\n}\"]}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CorporationOperationalTeacherCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/CorporationOperationalTeacherDTO\"}],\"definitions\":{\"CorporationOperationalTeacherDTO\":{\"title\":\"Root Type for CorporationOperationalPersonel\",\"description\":\"Kurumdaki aktif, operasyon yürüten personellerdir.\\n1- Birincil derecede iletişim kurulacak insanlar\\n2- Kurumdaki muhatablar\",\"type\":\"object\",\"properties\":{\"corporationId\":{\"format\":\"int64\",\"description\":\"Kurum bilgisi\",\"type\":\"integer\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"teacher\":{\"$ref\":\"#/definitions/TeacherCardDTO\"}},\"examples\":[{\"corporationId\":6,\"id\":15,\"teacher\":{\"id\":33,\"name\":\"some text\",\"surname\":\"some text\",\"duty\":{\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"dutyName\":\"some text\",\"endDate\":\"2018-02-10T09:30Z\",\"id\":46,\"lastModifiedBy\":\"some text\",\"lastModifiedDate\":\"2018-02-10T09:30Z\",\"organizationId\":66,\"organizationName\":\"some text\",\"startDate\":\"2018-02-10T09:30Z\"},\"contacts\":[{\"categories\":[{\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"id\":27,\"name\":\"some text\"},{\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"id\":73,\"name\":\"some text\"}],\"contactInfo\":\"some text\",\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"id\":70,\"lastModifiedBy\":\"some text\",\"lastModifiedDate\":\"2018-02-10T09:30Z\"},{\"categories\":[{\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"id\":2,\"name\":\"some text\"},{\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"id\":41,\"name\":\"some text\"}],\"contactInfo\":\"some text\",\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"id\":52,\"lastModifiedBy\":\"some text\",\"lastModifiedDate\":\"2018-02-10T09:30Z\"}]}}]},\"TeacherCardDTO\":{\"title\":\"Root Type for TeacherCardDTO\",\"description\":\"Personelin bilgilerini ihtiyaç duyulan basit bilgilerle taşıyan dto dur. Lov kadar az ver içermez TeacherDTO gibi bütün bilgileride taşımaz.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"Personel idsi\",\"type\":\"integer\"},\"name\":{\"description\":\"Adı\",\"type\":\"string\"},\"surname\":{\"description\":\"Soyadı\",\"type\":\"string\"},\"duty\":{\"$ref\":\"#/definitions/DutyDTO\"},\"contacts\":{\"description\":\"Telefon ve mail bilgileri\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactInfoDTO\"}}},\"examples\":[{\"id\":31,\"name\":\"some text\",\"surname\":\"some text\",\"duty\":{\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"dutyName\":\"some text\",\"endDate\":\"2018-02-10T09:30Z\",\"id\":87,\"lastModifiedBy\":\"some text\",\"lastModifiedDate\":\"2018-02-10T09:30Z\",\"organizationId\":71,\"organizationName\":\"some text\",\"startDate\":\"2018-02-10T09:30Z\"},\"contacts\":[{\"categories\":[{\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"id\":15,\"name\":\"some text\"},{\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"id\":52,\"name\":\"some text\"}],\"contactInfo\":\"some text\",\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"id\":50,\"lastModifiedBy\":\"some text\",\"lastModifiedDate\":\"2018-02-10T09:30Z\"},{\"categories\":[{\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"id\":26,\"name\":\"some text\"},{\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"id\":70,\"name\":\"some text\"}],\"contactInfo\":\"some text\",\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"id\":13,\"lastModifiedBy\":\"some text\",\"lastModifiedDate\":\"2018-02-10T09:30Z\"}]}]},\"ContactInfoDTO\":{\"title\":\"ContactInfoDTO\",\"description\":\"Iletisim bilgilerini sunmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Category of contact type. For example: Home address, Home telephone, Cell phone etc.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"contactInfo\":{\"description\":\"Telephone number or email address information depending on the type.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"ContactMediumCategoryLOV\":{\"title\":\"ContactMediumCategoryLOV\",\"description\":\"Contact medium kategorileri. Bir kategori tipine ait veriyi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Category Name\",\"type\":\"string\"}}},\"DutyDTO\":{\"title\":\"DutyDTO\",\"description\":\"Kisilere atanan vazifeler ve kurumunu tutmaktadır. Örneğin; Ümraniye erkek tekamul yurdunda yurt mesulu. İstanbul sekreteryada sekreter vb.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"dutyName\":{\"description\":\"Vazife adı\",\"type\":\"string\"},\"endDate\":{\"format\":\"date-time\",\"description\":\"Role end date\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"organizationId\":{\"format\":\"int64\",\"description\":\"Organization ID\",\"type\":\"integer\"},\"organizationName\":{\"description\":\"Organization Name\",\"type\":\"string\"},\"startDate\":{\"format\":\"date-time\",\"description\":\"Start date of role\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CorporationOperationalTeacherDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"Root Type for CorporationOperationalTeacherCreateDTO\",\"description\":\"Kurumdaki aktif, operasyon yürüten personel tanımlamak için kullanılır.\",\"type\":\"object\",\"properties\":{\"corporationId\":{\"format\":\"int64\",\"description\":\"Kurum bilgisi\",\"type\":\"integer\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"teacherId\":{\"format\":\"int64\",\"description\":\"Operasyonu yürüten personel bilgisi\",\"type\":\"integer\"}},\"examples\":[\"{\\n \\\"corporationId\\\": 6,\\n \\\"id\\\": 15,\\n \\\"teacherId\\\":1\\n}\"]}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CorporationOperationalTeacherCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"Root Type for CorporationOperationalTeacherCreateDTO\",\"description\":\"Kurumdaki aktif, operasyon yürüten personel tanımlamak için kullanılır.\",\"type\":\"object\",\"properties\":{\"corporationId\":{\"format\":\"int64\",\"description\":\"Kurum bilgisi\",\"type\":\"integer\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"teacherId\":{\"format\":\"int64\",\"description\":\"Operasyonu yürüten personel bilgisi\",\"type\":\"integer\"}},\"examples\":[\"{\\n \\\"corporationId\\\": 6,\\n \\\"id\\\": 15,\\n \\\"teacherId\\\":1\\n}\"]}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CorporationOperationalTeacherCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"Root Type for CorporationOperationalTeacherCreateDTO\",\"description\":\"Kurumdaki aktif, operasyon yürüten personel tanımlamak için kullanılır.\",\"type\":\"object\",\"properties\":{\"corporationId\":{\"format\":\"int64\",\"description\":\"Kurum bilgisi\",\"type\":\"integer\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"teacherId\":{\"format\":\"int64\",\"description\":\"Operasyonu yürüten personel bilgisi\",\"type\":\"integer\"}},\"examples\":[\"{\\n \\\"corporationId\\\": 6,\\n \\\"id\\\": 15,\\n \\\"teacherId\\\":1\\n}\"]}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CorporationOperationalTeacherCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"Root Type for CorporationOperationalTeacherCreateDTO\",\"description\":\"Kurumdaki aktif, operasyon yürüten personel tanımlamak için kullanılır.\",\"type\":\"object\",\"properties\":{\"corporationId\":{\"format\":\"int64\",\"description\":\"Kurum bilgisi\",\"type\":\"integer\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"teacherId\":{\"format\":\"int64\",\"description\":\"Operasyonu yürüten personel bilgisi\",\"type\":\"integer\"}},\"examples\":[\"{\\n \\\"corporationId\\\": 6,\\n \\\"id\\\": 15,\\n \\\"teacherId\\\":1\\n}\"]}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CorporationOperationalTeacherCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"Root Type for CorporationOperationalTeacherCreateDTO\",\"description\":\"Kurumdaki aktif, operasyon yürüten personel tanımlamak için kullanılır.\",\"type\":\"object\",\"properties\":{\"corporationId\":{\"format\":\"int64\",\"description\":\"Kurum bilgisi\",\"type\":\"integer\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"teacherId\":{\"format\":\"int64\",\"description\":\"Operasyonu yürüten personel bilgisi\",\"type\":\"integer\"}},\"examples\":[\"{\\n \\\"corporationId\\\": 6,\\n \\\"id\\\": 15,\\n \\\"teacherId\\\":1\\n}\"]}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CorporationOperationalTeacherCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz." + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Corporation ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Teacher ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "teacherId" + }, + "value": { + "element": "number" + } + } + } + ] + }, + "href": { + "element": "string", + "content": "/api/sbt/corporations/{id}/operational-teacher/{teacherId}" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Kurumdan idari personel silme-çıkarma servisi" + }, + "id": { + "element": "string", + "content": "deleteCorporationOperationalTeacher" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Kurum ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Kurumdan idari personel silme-çıkarma servisi" + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "204" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz." + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Kurum ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + }, + "href": { + "element": "string", + "content": "/api/sbt/corporations/{id}/address" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Kurumun adres bilgisini getiren servistir." + }, + "id": { + "element": "string", + "content": "getCorporationAddress" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Kurum ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Kurumun adres bilgisini getiren servistir." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/AddressCardDTO\"}],\"definitions\":{\"AddressCardDTO\":{\"title\":\"AddressCardDTO\",\"description\":\"Address bilgisini sunar. Sadece full address bilgisini ve kategorisini verir.\\n Adres kategorisine ait kategori adı bilgisi “ContactMediumType” dır.\\n Yani contact medium type \\\"iletişimde bulunulacak adresler\\\" bilgisini ifade eder.\",\"type\":\"object\",\"properties\":{\"addressCategory\":{\"description\":\"Address kategorisi\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Full address. İl ilçe mahalle sokak gibi bütün bilgileri içerir.\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"ContactMediumCategoryLOV\":{\"title\":\"ContactMediumCategoryLOV\",\"description\":\"Contact medium kategorileri. Bir kategori tipine ait veriyi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Category Name\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/AddressCardDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz." + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Kurumun adres bilgisini günceller." + }, + "id": { + "element": "string", + "content": "updateCorporationAddress" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Kurum ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Kurumun adres bilgisini günceller." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"AddressCreateDTO\",\"description\":\" Kisi veya kurumun adres bilgisini olusturmak icin kullanılır.\\n Adrese ait lokasyon bilgisini içerisinde barındırır.\\n Lokasyon bilgisi önceden tanımlı olmalıdır. Lokasyon bilgisi alınırken lokasyon hierarşisinde kullanıcının seçtiği en altta kalan lokasyonun idsi yeterlidir.\\n Örneğin Türkiye - İstanbul - Ümraniye lokasyonu için sadece Ümraniyenin id sinin verilmesi yeterlidir.\",\"type\":\"object\",\"properties\":{\"address1\":{\"description\":\"Açık adres 1. satır\",\"type\":\"string\"},\"address2\":{\"description\":\"Açık adres 2. satır\",\"type\":\"string\"},\"address3\":{\"description\":\"Açık adres 3. satır\",\"type\":\"string\"},\"categories\":{\"description\":\"Adres kategorileri. İş adresi, Ev adresi, Öncelikli adres\",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Açık adres ve lokasyon bilgilerini içeren tam adres\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"locationId\":{\"format\":\"int64\",\"description\":\"Adresin bağlı olduğu en dip lokasyon bilgisi. Ümraniye, Üsküdar vb.\",\"type\":\"integer\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/AddressCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/AddressCardDTO\"}],\"definitions\":{\"AddressCardDTO\":{\"title\":\"AddressCardDTO\",\"description\":\"Address bilgisini sunar. Sadece full address bilgisini ve kategorisini verir.\\n Adres kategorisine ait kategori adı bilgisi “ContactMediumType” dır.\\n Yani contact medium type \\\"iletişimde bulunulacak adresler\\\" bilgisini ifade eder.\",\"type\":\"object\",\"properties\":{\"addressCategory\":{\"description\":\"Address kategorisi\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Full address. İl ilçe mahalle sokak gibi bütün bilgileri içerir.\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"ContactMediumCategoryLOV\":{\"title\":\"ContactMediumCategoryLOV\",\"description\":\"Contact medium kategorileri. Bir kategori tipine ait veriyi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Category Name\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/AddressCardDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"AddressCreateDTO\",\"description\":\" Kisi veya kurumun adres bilgisini olusturmak icin kullanılır.\\n Adrese ait lokasyon bilgisini içerisinde barındırır.\\n Lokasyon bilgisi önceden tanımlı olmalıdır. Lokasyon bilgisi alınırken lokasyon hierarşisinde kullanıcının seçtiği en altta kalan lokasyonun idsi yeterlidir.\\n Örneğin Türkiye - İstanbul - Ümraniye lokasyonu için sadece Ümraniyenin id sinin verilmesi yeterlidir.\",\"type\":\"object\",\"properties\":{\"address1\":{\"description\":\"Açık adres 1. satır\",\"type\":\"string\"},\"address2\":{\"description\":\"Açık adres 2. satır\",\"type\":\"string\"},\"address3\":{\"description\":\"Açık adres 3. satır\",\"type\":\"string\"},\"categories\":{\"description\":\"Adres kategorileri. İş adresi, Ev adresi, Öncelikli adres\",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Açık adres ve lokasyon bilgilerini içeren tam adres\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"locationId\":{\"format\":\"int64\",\"description\":\"Adresin bağlı olduğu en dip lokasyon bilgisi. Ümraniye, Üsküdar vb.\",\"type\":\"integer\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/AddressCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"AddressCreateDTO\",\"description\":\" Kisi veya kurumun adres bilgisini olusturmak icin kullanılır.\\n Adrese ait lokasyon bilgisini içerisinde barındırır.\\n Lokasyon bilgisi önceden tanımlı olmalıdır. Lokasyon bilgisi alınırken lokasyon hierarşisinde kullanıcının seçtiği en altta kalan lokasyonun idsi yeterlidir.\\n Örneğin Türkiye - İstanbul - Ümraniye lokasyonu için sadece Ümraniyenin id sinin verilmesi yeterlidir.\",\"type\":\"object\",\"properties\":{\"address1\":{\"description\":\"Açık adres 1. satır\",\"type\":\"string\"},\"address2\":{\"description\":\"Açık adres 2. satır\",\"type\":\"string\"},\"address3\":{\"description\":\"Açık adres 3. satır\",\"type\":\"string\"},\"categories\":{\"description\":\"Adres kategorileri. İş adresi, Ev adresi, Öncelikli adres\",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Açık adres ve lokasyon bilgilerini içeren tam adres\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"locationId\":{\"format\":\"int64\",\"description\":\"Adresin bağlı olduğu en dip lokasyon bilgisi. Ümraniye, Üsküdar vb.\",\"type\":\"integer\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/AddressCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"AddressCreateDTO\",\"description\":\" Kisi veya kurumun adres bilgisini olusturmak icin kullanılır.\\n Adrese ait lokasyon bilgisini içerisinde barındırır.\\n Lokasyon bilgisi önceden tanımlı olmalıdır. Lokasyon bilgisi alınırken lokasyon hierarşisinde kullanıcının seçtiği en altta kalan lokasyonun idsi yeterlidir.\\n Örneğin Türkiye - İstanbul - Ümraniye lokasyonu için sadece Ümraniyenin id sinin verilmesi yeterlidir.\",\"type\":\"object\",\"properties\":{\"address1\":{\"description\":\"Açık adres 1. satır\",\"type\":\"string\"},\"address2\":{\"description\":\"Açık adres 2. satır\",\"type\":\"string\"},\"address3\":{\"description\":\"Açık adres 3. satır\",\"type\":\"string\"},\"categories\":{\"description\":\"Adres kategorileri. İş adresi, Ev adresi, Öncelikli adres\",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Açık adres ve lokasyon bilgilerini içeren tam adres\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"locationId\":{\"format\":\"int64\",\"description\":\"Adresin bağlı olduğu en dip lokasyon bilgisi. Ümraniye, Üsküdar vb.\",\"type\":\"integer\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/AddressCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"AddressCreateDTO\",\"description\":\" Kisi veya kurumun adres bilgisini olusturmak icin kullanılır.\\n Adrese ait lokasyon bilgisini içerisinde barındırır.\\n Lokasyon bilgisi önceden tanımlı olmalıdır. Lokasyon bilgisi alınırken lokasyon hierarşisinde kullanıcının seçtiği en altta kalan lokasyonun idsi yeterlidir.\\n Örneğin Türkiye - İstanbul - Ümraniye lokasyonu için sadece Ümraniyenin id sinin verilmesi yeterlidir.\",\"type\":\"object\",\"properties\":{\"address1\":{\"description\":\"Açık adres 1. satır\",\"type\":\"string\"},\"address2\":{\"description\":\"Açık adres 2. satır\",\"type\":\"string\"},\"address3\":{\"description\":\"Açık adres 3. satır\",\"type\":\"string\"},\"categories\":{\"description\":\"Adres kategorileri. İş adresi, Ev adresi, Öncelikli adres\",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Açık adres ve lokasyon bilgilerini içeren tam adres\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"locationId\":{\"format\":\"int64\",\"description\":\"Adresin bağlı olduğu en dip lokasyon bilgisi. Ümraniye, Üsküdar vb.\",\"type\":\"integer\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/AddressCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"AddressCreateDTO\",\"description\":\" Kisi veya kurumun adres bilgisini olusturmak icin kullanılır.\\n Adrese ait lokasyon bilgisini içerisinde barındırır.\\n Lokasyon bilgisi önceden tanımlı olmalıdır. Lokasyon bilgisi alınırken lokasyon hierarşisinde kullanıcının seçtiği en altta kalan lokasyonun idsi yeterlidir.\\n Örneğin Türkiye - İstanbul - Ümraniye lokasyonu için sadece Ümraniyenin id sinin verilmesi yeterlidir.\",\"type\":\"object\",\"properties\":{\"address1\":{\"description\":\"Açık adres 1. satır\",\"type\":\"string\"},\"address2\":{\"description\":\"Açık adres 2. satır\",\"type\":\"string\"},\"address3\":{\"description\":\"Açık adres 3. satır\",\"type\":\"string\"},\"categories\":{\"description\":\"Adres kategorileri. İş adresi, Ev adresi, Öncelikli adres\",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Açık adres ve lokasyon bilgilerini içeren tam adres\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"locationId\":{\"format\":\"int64\",\"description\":\"Adresin bağlı olduğu en dip lokasyon bilgisi. Ümraniye, Üsküdar vb.\",\"type\":\"integer\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/AddressCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz." + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Kurum ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + }, + "href": { + "element": "string", + "content": "/api/sbt/corporations/{id}/divisions" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Kuruma ait bolumleri listeleme servisidir." + }, + "id": { + "element": "string", + "content": "getAllCorporationDivisions" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Kurum ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Kuruma ait bolumleri listeleme servisidir." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/CorporationDivisionDTO\"},\"definitions\":{\"CorporationDivisionDTO\":{\"title\":\"Root Type for CorporationDivisionDTO\",\"description\":\"Kurumdaki bolümleri ifade eden veri modelimizdir. Bina içerisindeki Kat, Blok, Bölüm vb.. bilgiler yer alır.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int32\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Bölüm adı\",\"type\":\"string\"},\"status\":{\"description\":\"Kuruma ait bölümün aktiflik bilgisi\",\"type\":\"boolean\"}},\"examples\":[\"{\\n \\\"id\\\":1,\\n \\\"name\\\":\\\"some text\\\",\\n \\\"status\\\":true\\n}\"]}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/CorporationDivisionDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz." + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Kuruma ait bolum ekleme servisi" + }, + "id": { + "element": "string", + "content": "createCorporationDivision" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Kurum ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Kuruma ait bolum ekleme servisi" + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"Root Type for CorporationDivisionDTO\",\"description\":\"Kurumdaki bolümleri ifade eden veri modelimizdir. Bina içerisindeki Kat, Blok, Bölüm vb.. bilgiler yer alır.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int32\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Bölüm adı\",\"type\":\"string\"},\"status\":{\"description\":\"Kuruma ait bölümün aktiflik bilgisi\",\"type\":\"boolean\"}},\"examples\":[\"{\\n \\\"id\\\":1,\\n \\\"name\\\":\\\"some text\\\",\\n \\\"status\\\":true\\n}\"]}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CorporationDivisionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"Root Type for CorporationDivisionDTO\",\"description\":\"Kurumdaki bolümleri ifade eden veri modelimizdir. Bina içerisindeki Kat, Blok, Bölüm vb.. bilgiler yer alır.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int32\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Bölüm adı\",\"type\":\"string\"},\"status\":{\"description\":\"Kuruma ait bölümün aktiflik bilgisi\",\"type\":\"boolean\"}},\"examples\":[\"{\\n \\\"id\\\":1,\\n \\\"name\\\":\\\"some text\\\",\\n \\\"status\\\":true\\n}\"]}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CorporationDivisionDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"Root Type for CorporationDivisionDTO\",\"description\":\"Kurumdaki bolümleri ifade eden veri modelimizdir. Bina içerisindeki Kat, Blok, Bölüm vb.. bilgiler yer alır.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int32\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Bölüm adı\",\"type\":\"string\"},\"status\":{\"description\":\"Kuruma ait bölümün aktiflik bilgisi\",\"type\":\"boolean\"}},\"examples\":[\"{\\n \\\"id\\\":1,\\n \\\"name\\\":\\\"some text\\\",\\n \\\"status\\\":true\\n}\"]}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CorporationDivisionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"Root Type for CorporationDivisionDTO\",\"description\":\"Kurumdaki bolümleri ifade eden veri modelimizdir. Bina içerisindeki Kat, Blok, Bölüm vb.. bilgiler yer alır.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int32\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Bölüm adı\",\"type\":\"string\"},\"status\":{\"description\":\"Kuruma ait bölümün aktiflik bilgisi\",\"type\":\"boolean\"}},\"examples\":[\"{\\n \\\"id\\\":1,\\n \\\"name\\\":\\\"some text\\\",\\n \\\"status\\\":true\\n}\"]}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CorporationDivisionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"Root Type for CorporationDivisionDTO\",\"description\":\"Kurumdaki bolümleri ifade eden veri modelimizdir. Bina içerisindeki Kat, Blok, Bölüm vb.. bilgiler yer alır.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int32\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Bölüm adı\",\"type\":\"string\"},\"status\":{\"description\":\"Kuruma ait bölümün aktiflik bilgisi\",\"type\":\"boolean\"}},\"examples\":[\"{\\n \\\"id\\\":1,\\n \\\"name\\\":\\\"some text\\\",\\n \\\"status\\\":true\\n}\"]}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CorporationDivisionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"Root Type for CorporationDivisionDTO\",\"description\":\"Kurumdaki bolümleri ifade eden veri modelimizdir. Bina içerisindeki Kat, Blok, Bölüm vb.. bilgiler yer alır.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int32\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Bölüm adı\",\"type\":\"string\"},\"status\":{\"description\":\"Kuruma ait bölümün aktiflik bilgisi\",\"type\":\"boolean\"}},\"examples\":[\"{\\n \\\"id\\\":1,\\n \\\"name\\\":\\\"some text\\\",\\n \\\"status\\\":true\\n}\"]}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CorporationDivisionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"Root Type for CorporationDivisionDTO\",\"description\":\"Kurumdaki bolümleri ifade eden veri modelimizdir. Bina içerisindeki Kat, Blok, Bölüm vb.. bilgiler yer alır.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int32\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Bölüm adı\",\"type\":\"string\"},\"status\":{\"description\":\"Kuruma ait bölümün aktiflik bilgisi\",\"type\":\"boolean\"}},\"examples\":[\"{\\n \\\"id\\\":1,\\n \\\"name\\\":\\\"some text\\\",\\n \\\"status\\\":true\\n}\"]}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CorporationDivisionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz." + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Kurum ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + }, + "href": { + "element": "string", + "content": "/api/sbt/corporations/{id}/electronic-address" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Kurumun bütün elektronik adres bilgilerini getirir." + }, + "id": { + "element": "string", + "content": "getAllCorporationElectronicAddresses" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Kurum ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Kurumun bütün elektronik adres bilgilerini getirir." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactInfoDTO\"},\"definitions\":{\"ContactInfoDTO\":{\"title\":\"ContactInfoDTO\",\"description\":\"Iletisim bilgilerini sunmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Category of contact type. For example: Home address, Home telephone, Cell phone etc.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"contactInfo\":{\"description\":\"Telephone number or email address information depending on the type.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"ContactMediumCategoryLOV\":{\"title\":\"ContactMediumCategoryLOV\",\"description\":\"Contact medium kategorileri. Bir kategori tipine ait veriyi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Category Name\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/ContactInfoDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz." + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Kuruma Elektronik adres ekleme(mail, web adress vb..) servisi" + }, + "id": { + "element": "string", + "content": "createCorporationElectronicAddress" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Kurum ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Kuruma Elektronik adres ekleme(mail, web adress vb..) servisi" + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/ContactInfoDTO\"}],\"definitions\":{\"ContactInfoDTO\":{\"title\":\"ContactInfoDTO\",\"description\":\"Iletisim bilgilerini sunmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Category of contact type. For example: Home address, Home telephone, Cell phone etc.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"contactInfo\":{\"description\":\"Telephone number or email address information depending on the type.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"ContactMediumCategoryLOV\":{\"title\":\"ContactMediumCategoryLOV\",\"description\":\"Contact medium kategorileri. Bir kategori tipine ait veriyi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Category Name\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz." + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Kurum ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + }, + "href": { + "element": "string", + "content": "/api/sbt/corporations/{id}/foundations" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Kurumun dernek - vakıf listeleme servisidir." + }, + "id": { + "element": "string", + "content": "getAllCorporationFoundations" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Kurum ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Kurumun dernek - vakıf listeleme servisidir." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/FoundationDTO\"},\"definitions\":{\"FoundationDTO\":{\"title\":\"Root Type for FoundationDTO\",\"description\":\"Vakıf-Dernek veri modelidir.\",\"type\":\"object\",\"properties\":{\"addresses\":{\"$ref\":\"#/definitions/AddressCreateDTO\"},\"bolge\":{\"$ref\":\"#/definitions/BolgeLOV\"},\"contacts\":{\"$ref\":\"#/definitions/ContactInfoCreateDTO\"},\"id\":{\"format\":\"int32\",\"description\":\"Vakıf Dernek ID bilgisidir.\",\"type\":\"integer\"},\"mintika\":{\"$ref\":\"#/definitions/MintikaLOV\"},\"name\":{\"description\":\"Vakfın ismi.\",\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\": 1,\\n \\\"name\\\": \\\"some text\\\",\\n \\\"bolge\\\": {},\\n \\\"mintika\\\": {},\\n \\\"addresses\\\": {},\\n \\\"contacts\\\": {}\\n}\"]},\"MintikaLOV\":{\"title\":\"MintikaLOV\",\"description\":\"Mintika tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Mintika adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"ContactInfoCreateDTO\":{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"BolgeLOV\":{\"title\":\"BolgeLOV\",\"description\":\"Bolgeye ait tanimi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Bolge adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"AddressCreateDTO\":{\"title\":\"AddressCreateDTO\",\"description\":\" Kisi veya kurumun adres bilgisini olusturmak icin kullanılır.\\n Adrese ait lokasyon bilgisini içerisinde barındırır.\\n Lokasyon bilgisi önceden tanımlı olmalıdır. Lokasyon bilgisi alınırken lokasyon hierarşisinde kullanıcının seçtiği en altta kalan lokasyonun idsi yeterlidir.\\n Örneğin Türkiye - İstanbul - Ümraniye lokasyonu için sadece Ümraniyenin id sinin verilmesi yeterlidir.\",\"type\":\"object\",\"properties\":{\"address1\":{\"description\":\"Açık adres 1. satır\",\"type\":\"string\"},\"address2\":{\"description\":\"Açık adres 2. satır\",\"type\":\"string\"},\"address3\":{\"description\":\"Açık adres 3. satır\",\"type\":\"string\"},\"categories\":{\"description\":\"Adres kategorileri. İş adresi, Ev adresi, Öncelikli adres\",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Açık adres ve lokasyon bilgilerini içeren tam adres\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"locationId\":{\"format\":\"int64\",\"description\":\"Adresin bağlı olduğu en dip lokasyon bilgisi. Ümraniye, Üsküdar vb.\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/FoundationDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz." + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Kuruma Dernek ekleme Servisi" + }, + "id": { + "element": "string", + "content": "createCorporationFoundation" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Kurum ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Kuruma Dernek ekleme Servisi" + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/FoundationDTO\"}],\"definitions\":{\"FoundationDTO\":{\"title\":\"Root Type for FoundationDTO\",\"description\":\"Vakıf-Dernek veri modelidir.\",\"type\":\"object\",\"properties\":{\"addresses\":{\"$ref\":\"#/definitions/AddressCreateDTO\"},\"bolge\":{\"$ref\":\"#/definitions/BolgeLOV\"},\"contacts\":{\"$ref\":\"#/definitions/ContactInfoCreateDTO\"},\"id\":{\"format\":\"int32\",\"description\":\"Vakıf Dernek ID bilgisidir.\",\"type\":\"integer\"},\"mintika\":{\"$ref\":\"#/definitions/MintikaLOV\"},\"name\":{\"description\":\"Vakfın ismi.\",\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\": 1,\\n \\\"name\\\": \\\"some text\\\",\\n \\\"bolge\\\": {},\\n \\\"mintika\\\": {},\\n \\\"addresses\\\": {},\\n \\\"contacts\\\": {}\\n}\"]},\"MintikaLOV\":{\"title\":\"MintikaLOV\",\"description\":\"Mintika tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Mintika adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"ContactInfoCreateDTO\":{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"BolgeLOV\":{\"title\":\"BolgeLOV\",\"description\":\"Bolgeye ait tanimi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Bolge adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"AddressCreateDTO\":{\"title\":\"AddressCreateDTO\",\"description\":\" Kisi veya kurumun adres bilgisini olusturmak icin kullanılır.\\n Adrese ait lokasyon bilgisini içerisinde barındırır.\\n Lokasyon bilgisi önceden tanımlı olmalıdır. Lokasyon bilgisi alınırken lokasyon hierarşisinde kullanıcının seçtiği en altta kalan lokasyonun idsi yeterlidir.\\n Örneğin Türkiye - İstanbul - Ümraniye lokasyonu için sadece Ümraniyenin id sinin verilmesi yeterlidir.\",\"type\":\"object\",\"properties\":{\"address1\":{\"description\":\"Açık adres 1. satır\",\"type\":\"string\"},\"address2\":{\"description\":\"Açık adres 2. satır\",\"type\":\"string\"},\"address3\":{\"description\":\"Açık adres 3. satır\",\"type\":\"string\"},\"categories\":{\"description\":\"Adres kategorileri. İş adresi, Ev adresi, Öncelikli adres\",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Açık adres ve lokasyon bilgilerini içeren tam adres\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"locationId\":{\"format\":\"int64\",\"description\":\"Adresin bağlı olduğu en dip lokasyon bilgisi. Ümraniye, Üsküdar vb.\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/FoundationDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/FoundationDTO\"}],\"definitions\":{\"FoundationDTO\":{\"title\":\"Root Type for FoundationDTO\",\"description\":\"Vakıf-Dernek veri modelidir.\",\"type\":\"object\",\"properties\":{\"addresses\":{\"$ref\":\"#/definitions/AddressCreateDTO\"},\"bolge\":{\"$ref\":\"#/definitions/BolgeLOV\"},\"contacts\":{\"$ref\":\"#/definitions/ContactInfoCreateDTO\"},\"id\":{\"format\":\"int32\",\"description\":\"Vakıf Dernek ID bilgisidir.\",\"type\":\"integer\"},\"mintika\":{\"$ref\":\"#/definitions/MintikaLOV\"},\"name\":{\"description\":\"Vakfın ismi.\",\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\": 1,\\n \\\"name\\\": \\\"some text\\\",\\n \\\"bolge\\\": {},\\n \\\"mintika\\\": {},\\n \\\"addresses\\\": {},\\n \\\"contacts\\\": {}\\n}\"]},\"MintikaLOV\":{\"title\":\"MintikaLOV\",\"description\":\"Mintika tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Mintika adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"ContactInfoCreateDTO\":{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"BolgeLOV\":{\"title\":\"BolgeLOV\",\"description\":\"Bolgeye ait tanimi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Bolge adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"AddressCreateDTO\":{\"title\":\"AddressCreateDTO\",\"description\":\" Kisi veya kurumun adres bilgisini olusturmak icin kullanılır.\\n Adrese ait lokasyon bilgisini içerisinde barındırır.\\n Lokasyon bilgisi önceden tanımlı olmalıdır. Lokasyon bilgisi alınırken lokasyon hierarşisinde kullanıcının seçtiği en altta kalan lokasyonun idsi yeterlidir.\\n Örneğin Türkiye - İstanbul - Ümraniye lokasyonu için sadece Ümraniyenin id sinin verilmesi yeterlidir.\",\"type\":\"object\",\"properties\":{\"address1\":{\"description\":\"Açık adres 1. satır\",\"type\":\"string\"},\"address2\":{\"description\":\"Açık adres 2. satır\",\"type\":\"string\"},\"address3\":{\"description\":\"Açık adres 3. satır\",\"type\":\"string\"},\"categories\":{\"description\":\"Adres kategorileri. İş adresi, Ev adresi, Öncelikli adres\",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Açık adres ve lokasyon bilgilerini içeren tam adres\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"locationId\":{\"format\":\"int64\",\"description\":\"Adresin bağlı olduğu en dip lokasyon bilgisi. Ümraniye, Üsküdar vb.\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/FoundationDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/FoundationDTO\"}],\"definitions\":{\"FoundationDTO\":{\"title\":\"Root Type for FoundationDTO\",\"description\":\"Vakıf-Dernek veri modelidir.\",\"type\":\"object\",\"properties\":{\"addresses\":{\"$ref\":\"#/definitions/AddressCreateDTO\"},\"bolge\":{\"$ref\":\"#/definitions/BolgeLOV\"},\"contacts\":{\"$ref\":\"#/definitions/ContactInfoCreateDTO\"},\"id\":{\"format\":\"int32\",\"description\":\"Vakıf Dernek ID bilgisidir.\",\"type\":\"integer\"},\"mintika\":{\"$ref\":\"#/definitions/MintikaLOV\"},\"name\":{\"description\":\"Vakfın ismi.\",\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\": 1,\\n \\\"name\\\": \\\"some text\\\",\\n \\\"bolge\\\": {},\\n \\\"mintika\\\": {},\\n \\\"addresses\\\": {},\\n \\\"contacts\\\": {}\\n}\"]},\"MintikaLOV\":{\"title\":\"MintikaLOV\",\"description\":\"Mintika tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Mintika adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"ContactInfoCreateDTO\":{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"BolgeLOV\":{\"title\":\"BolgeLOV\",\"description\":\"Bolgeye ait tanimi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Bolge adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"AddressCreateDTO\":{\"title\":\"AddressCreateDTO\",\"description\":\" Kisi veya kurumun adres bilgisini olusturmak icin kullanılır.\\n Adrese ait lokasyon bilgisini içerisinde barındırır.\\n Lokasyon bilgisi önceden tanımlı olmalıdır. Lokasyon bilgisi alınırken lokasyon hierarşisinde kullanıcının seçtiği en altta kalan lokasyonun idsi yeterlidir.\\n Örneğin Türkiye - İstanbul - Ümraniye lokasyonu için sadece Ümraniyenin id sinin verilmesi yeterlidir.\",\"type\":\"object\",\"properties\":{\"address1\":{\"description\":\"Açık adres 1. satır\",\"type\":\"string\"},\"address2\":{\"description\":\"Açık adres 2. satır\",\"type\":\"string\"},\"address3\":{\"description\":\"Açık adres 3. satır\",\"type\":\"string\"},\"categories\":{\"description\":\"Adres kategorileri. İş adresi, Ev adresi, Öncelikli adres\",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Açık adres ve lokasyon bilgilerini içeren tam adres\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"locationId\":{\"format\":\"int64\",\"description\":\"Adresin bağlı olduğu en dip lokasyon bilgisi. Ümraniye, Üsküdar vb.\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/FoundationDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/FoundationDTO\"}],\"definitions\":{\"FoundationDTO\":{\"title\":\"Root Type for FoundationDTO\",\"description\":\"Vakıf-Dernek veri modelidir.\",\"type\":\"object\",\"properties\":{\"addresses\":{\"$ref\":\"#/definitions/AddressCreateDTO\"},\"bolge\":{\"$ref\":\"#/definitions/BolgeLOV\"},\"contacts\":{\"$ref\":\"#/definitions/ContactInfoCreateDTO\"},\"id\":{\"format\":\"int32\",\"description\":\"Vakıf Dernek ID bilgisidir.\",\"type\":\"integer\"},\"mintika\":{\"$ref\":\"#/definitions/MintikaLOV\"},\"name\":{\"description\":\"Vakfın ismi.\",\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\": 1,\\n \\\"name\\\": \\\"some text\\\",\\n \\\"bolge\\\": {},\\n \\\"mintika\\\": {},\\n \\\"addresses\\\": {},\\n \\\"contacts\\\": {}\\n}\"]},\"MintikaLOV\":{\"title\":\"MintikaLOV\",\"description\":\"Mintika tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Mintika adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"ContactInfoCreateDTO\":{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"BolgeLOV\":{\"title\":\"BolgeLOV\",\"description\":\"Bolgeye ait tanimi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Bolge adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"AddressCreateDTO\":{\"title\":\"AddressCreateDTO\",\"description\":\" Kisi veya kurumun adres bilgisini olusturmak icin kullanılır.\\n Adrese ait lokasyon bilgisini içerisinde barındırır.\\n Lokasyon bilgisi önceden tanımlı olmalıdır. Lokasyon bilgisi alınırken lokasyon hierarşisinde kullanıcının seçtiği en altta kalan lokasyonun idsi yeterlidir.\\n Örneğin Türkiye - İstanbul - Ümraniye lokasyonu için sadece Ümraniyenin id sinin verilmesi yeterlidir.\",\"type\":\"object\",\"properties\":{\"address1\":{\"description\":\"Açık adres 1. satır\",\"type\":\"string\"},\"address2\":{\"description\":\"Açık adres 2. satır\",\"type\":\"string\"},\"address3\":{\"description\":\"Açık adres 3. satır\",\"type\":\"string\"},\"categories\":{\"description\":\"Adres kategorileri. İş adresi, Ev adresi, Öncelikli adres\",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Açık adres ve lokasyon bilgilerini içeren tam adres\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"locationId\":{\"format\":\"int64\",\"description\":\"Adresin bağlı olduğu en dip lokasyon bilgisi. Ümraniye, Üsküdar vb.\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/FoundationDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/FoundationDTO\"}],\"definitions\":{\"FoundationDTO\":{\"title\":\"Root Type for FoundationDTO\",\"description\":\"Vakıf-Dernek veri modelidir.\",\"type\":\"object\",\"properties\":{\"addresses\":{\"$ref\":\"#/definitions/AddressCreateDTO\"},\"bolge\":{\"$ref\":\"#/definitions/BolgeLOV\"},\"contacts\":{\"$ref\":\"#/definitions/ContactInfoCreateDTO\"},\"id\":{\"format\":\"int32\",\"description\":\"Vakıf Dernek ID bilgisidir.\",\"type\":\"integer\"},\"mintika\":{\"$ref\":\"#/definitions/MintikaLOV\"},\"name\":{\"description\":\"Vakfın ismi.\",\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\": 1,\\n \\\"name\\\": \\\"some text\\\",\\n \\\"bolge\\\": {},\\n \\\"mintika\\\": {},\\n \\\"addresses\\\": {},\\n \\\"contacts\\\": {}\\n}\"]},\"MintikaLOV\":{\"title\":\"MintikaLOV\",\"description\":\"Mintika tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Mintika adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"ContactInfoCreateDTO\":{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"BolgeLOV\":{\"title\":\"BolgeLOV\",\"description\":\"Bolgeye ait tanimi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Bolge adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"AddressCreateDTO\":{\"title\":\"AddressCreateDTO\",\"description\":\" Kisi veya kurumun adres bilgisini olusturmak icin kullanılır.\\n Adrese ait lokasyon bilgisini içerisinde barındırır.\\n Lokasyon bilgisi önceden tanımlı olmalıdır. Lokasyon bilgisi alınırken lokasyon hierarşisinde kullanıcının seçtiği en altta kalan lokasyonun idsi yeterlidir.\\n Örneğin Türkiye - İstanbul - Ümraniye lokasyonu için sadece Ümraniyenin id sinin verilmesi yeterlidir.\",\"type\":\"object\",\"properties\":{\"address1\":{\"description\":\"Açık adres 1. satır\",\"type\":\"string\"},\"address2\":{\"description\":\"Açık adres 2. satır\",\"type\":\"string\"},\"address3\":{\"description\":\"Açık adres 3. satır\",\"type\":\"string\"},\"categories\":{\"description\":\"Adres kategorileri. İş adresi, Ev adresi, Öncelikli adres\",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Açık adres ve lokasyon bilgilerini içeren tam adres\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"locationId\":{\"format\":\"int64\",\"description\":\"Adresin bağlı olduğu en dip lokasyon bilgisi. Ümraniye, Üsküdar vb.\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/FoundationDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/FoundationDTO\"}],\"definitions\":{\"FoundationDTO\":{\"title\":\"Root Type for FoundationDTO\",\"description\":\"Vakıf-Dernek veri modelidir.\",\"type\":\"object\",\"properties\":{\"addresses\":{\"$ref\":\"#/definitions/AddressCreateDTO\"},\"bolge\":{\"$ref\":\"#/definitions/BolgeLOV\"},\"contacts\":{\"$ref\":\"#/definitions/ContactInfoCreateDTO\"},\"id\":{\"format\":\"int32\",\"description\":\"Vakıf Dernek ID bilgisidir.\",\"type\":\"integer\"},\"mintika\":{\"$ref\":\"#/definitions/MintikaLOV\"},\"name\":{\"description\":\"Vakfın ismi.\",\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\": 1,\\n \\\"name\\\": \\\"some text\\\",\\n \\\"bolge\\\": {},\\n \\\"mintika\\\": {},\\n \\\"addresses\\\": {},\\n \\\"contacts\\\": {}\\n}\"]},\"MintikaLOV\":{\"title\":\"MintikaLOV\",\"description\":\"Mintika tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Mintika adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"ContactInfoCreateDTO\":{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"BolgeLOV\":{\"title\":\"BolgeLOV\",\"description\":\"Bolgeye ait tanimi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Bolge adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"AddressCreateDTO\":{\"title\":\"AddressCreateDTO\",\"description\":\" Kisi veya kurumun adres bilgisini olusturmak icin kullanılır.\\n Adrese ait lokasyon bilgisini içerisinde barındırır.\\n Lokasyon bilgisi önceden tanımlı olmalıdır. Lokasyon bilgisi alınırken lokasyon hierarşisinde kullanıcının seçtiği en altta kalan lokasyonun idsi yeterlidir.\\n Örneğin Türkiye - İstanbul - Ümraniye lokasyonu için sadece Ümraniyenin id sinin verilmesi yeterlidir.\",\"type\":\"object\",\"properties\":{\"address1\":{\"description\":\"Açık adres 1. satır\",\"type\":\"string\"},\"address2\":{\"description\":\"Açık adres 2. satır\",\"type\":\"string\"},\"address3\":{\"description\":\"Açık adres 3. satır\",\"type\":\"string\"},\"categories\":{\"description\":\"Adres kategorileri. İş adresi, Ev adresi, Öncelikli adres\",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Açık adres ve lokasyon bilgilerini içeren tam adres\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"locationId\":{\"format\":\"int64\",\"description\":\"Adresin bağlı olduğu en dip lokasyon bilgisi. Ümraniye, Üsküdar vb.\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/FoundationDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/FoundationDTO\"}],\"definitions\":{\"FoundationDTO\":{\"title\":\"Root Type for FoundationDTO\",\"description\":\"Vakıf-Dernek veri modelidir.\",\"type\":\"object\",\"properties\":{\"addresses\":{\"$ref\":\"#/definitions/AddressCreateDTO\"},\"bolge\":{\"$ref\":\"#/definitions/BolgeLOV\"},\"contacts\":{\"$ref\":\"#/definitions/ContactInfoCreateDTO\"},\"id\":{\"format\":\"int32\",\"description\":\"Vakıf Dernek ID bilgisidir.\",\"type\":\"integer\"},\"mintika\":{\"$ref\":\"#/definitions/MintikaLOV\"},\"name\":{\"description\":\"Vakfın ismi.\",\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\": 1,\\n \\\"name\\\": \\\"some text\\\",\\n \\\"bolge\\\": {},\\n \\\"mintika\\\": {},\\n \\\"addresses\\\": {},\\n \\\"contacts\\\": {}\\n}\"]},\"MintikaLOV\":{\"title\":\"MintikaLOV\",\"description\":\"Mintika tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Mintika adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"ContactInfoCreateDTO\":{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"BolgeLOV\":{\"title\":\"BolgeLOV\",\"description\":\"Bolgeye ait tanimi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Bolge adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"AddressCreateDTO\":{\"title\":\"AddressCreateDTO\",\"description\":\" Kisi veya kurumun adres bilgisini olusturmak icin kullanılır.\\n Adrese ait lokasyon bilgisini içerisinde barındırır.\\n Lokasyon bilgisi önceden tanımlı olmalıdır. Lokasyon bilgisi alınırken lokasyon hierarşisinde kullanıcının seçtiği en altta kalan lokasyonun idsi yeterlidir.\\n Örneğin Türkiye - İstanbul - Ümraniye lokasyonu için sadece Ümraniyenin id sinin verilmesi yeterlidir.\",\"type\":\"object\",\"properties\":{\"address1\":{\"description\":\"Açık adres 1. satır\",\"type\":\"string\"},\"address2\":{\"description\":\"Açık adres 2. satır\",\"type\":\"string\"},\"address3\":{\"description\":\"Açık adres 3. satır\",\"type\":\"string\"},\"categories\":{\"description\":\"Adres kategorileri. İş adresi, Ev adresi, Öncelikli adres\",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Açık adres ve lokasyon bilgilerini içeren tam adres\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"locationId\":{\"format\":\"int64\",\"description\":\"Adresin bağlı olduğu en dip lokasyon bilgisi. Ümraniye, Üsküdar vb.\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/FoundationDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz." + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Kurum ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + }, + "href": { + "element": "string", + "content": "/api/sbt/corporations/{id}/general-info" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Kurum genel bilgileri servisi" + }, + "id": { + "element": "string", + "content": "getCoroporationGeneralInfo" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Kurum ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Kurum genel bilgileri servisi" + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/CorporationGeneralInfoDTO\"}],\"definitions\":{\"CorporationGeneralInfoDTO\":{\"description\":\"Faal Kurum bilgisidir.\",\"required\":[\"buildingType\",\"corporationFormalStatus\",\"formalName\",\"formalityStatus\",\"openingDate\",\"ownershipStatus\"],\"type\":\"object\",\"properties\":{\"buildingType\":{\"$ref\":\"#/definitions/BuildingTypeLOV\"},\"corporationFormalStatus\":{\"$ref\":\"#/definitions/CorporationFormalityStatusLOV\"},\"formalName\":{\"description\":\"Kurumun resmi adı bilgisidir.\",\"type\":\"string\"},\"formalityStatus\":{\"$ref\":\"#/definitions/FormalityStatusLOV\"},\"openingDate\":{\"format\":\"date\",\"description\":\"Açılış tarihi bilgisi.\",\"type\":\"string\"},\"ownershipStatus\":{\"$ref\":\"#/definitions/OwnershipStatusLOV\"}},\"examples\":[{\"buildingType\":{\"id\":71,\"name\":\"some text\"},\"corporationFormalStatus\":{\"id\":7,\"name\":\"some text\"},\"formalName\":\"some text\",\"formalityStatus\":{\"id\":74,\"name\":\"some text\"},\"openingDate\":\"2018-01-17T00:00:00.000Z\",\"ownershipStatus\":{\"id\":12,\"name\":\"some text\"}}]},\"OwnershipStatusLOV\":{\"description\":\"Kurumun mülkiyet durumları bilgisi.\",\"required\":[\"id\",\"name\"],\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"id bilgisi.\",\"type\":\"integer\"},\"name\":{\"description\":\"Mülkiyet adı bilgisi.\",\"type\":\"string\"}}},\"FormalityStatusLOV\":{\"description\":\"Resmiyet durumları. Örnek: Resmi ve hususi.\\nResmi : Devlet nezdinde resmiyete kavuşturulmuş (tapu, vergi, vb.) kurumlar için kullanılır.\\nHususi : Henüz devlet nezdinde resmiyete kavuşturulamamış kurumları ifade eder.\",\"required\":[\"id\",\"name\"],\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"Resmiyet statusü id bilgisi.\",\"type\":\"integer\"},\"name\":{\"description\":\"Resmiyet statüsüne ait isim bilgisi.\",\"type\":\"string\"}}},\"CorporationFormalityStatusLOV\":{\"title\":\"Root Type for CorporationFormalStatusLOV\",\"description\":\"Kurumun resmiyet ve hususiyet durumları:\\nÖrnek :\\nKurum RESMİYET DURUMLARI\\n\\n RESMİ (seçilirse 2. combobox da çıkacak seçenekler)\\n ORTAOKUL ERKEK YURDU\\n ORTAOKUL KIZ YURDU\\n ORTAÖĞRENİM ERKEK YURDU\\n ORTAÖĞRENİM ERKEK PANSİYONU\\n ORTAÖĞRENİM KIZ YURDU\\n ORTAÖĞRENİM KIZ PANSİYONU\\n YÜKSEKÖĞRENİM ERKEK YURDU\\n YÜKSEKÖĞRENİM ERKEK PANSİYONU\\n YÜKSEKÖĞRENİM ERKEK APARTI\\n ERKEK KUR’AN KURSU\\n KIZ KUR’AN KURSU\\n HUSUSİ (seçilirse 2. combobox da çıkacak seçenekler)\\n HUSUSİ YURT\\n HUSUSİ EV YURDU\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int32\",\"description\":\"Kurum resmiyet seçenekleri ID bilgisi\",\"type\":\"integer\"},\"name\":{\"description\":\"Kurum resmiyet seçenekleri isim bilgisi\",\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\": 1,\\n \\\"name\\\": \\\"some text\\\"\\n}\"]},\"BuildingTypeLOV\":{\"title\":\"Root Type for BuildingType\",\"description\":\"Key Value şeklinde; Bina Türlerini ifade eder. Örnek : Yurt, Ofis, Nehari Yurt, Lokal, Hizmet Mahalli\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"Bina Türü ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Bina Türü Adı\",\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\": 1,\\n \\\"name\\\": \\\"some text\\\"\\n}\"]}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CorporationGeneralInfoDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz." + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Kurum ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + }, + "href": { + "element": "string", + "content": "/api/sbt/corporations/{id}/geolocation" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Kuruma ait GPS koordinat servisi" + }, + "id": { + "element": "string", + "content": "getCorporationGeoLocation" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Kurum ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Kuruma ait GPS koordinat servisi" + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"Root Type for CorporationGeoLocationDTO\",\"description\":\"Kuruma ait Coğrafi Lokasyon veri modeli. Haritadaki GPS konum verisini (Koordinat) doner.\",\"type\":\"object\",\"properties\":{\"corporationId\":{\"format\":\"int32\",\"description\":\"Kurum bilgisi\",\"type\":\"integer\"},\"id\":{\"format\":\"int32\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"latitude\":{\"type\":\"string\"},\"longitude\":{\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\":1,\\n \\\"corporationId\\\":23,\\n \\\"latitude\\\":\\\"40.54684564564564\\\",\\n \\\"longitude\\\":\\\"20.556456464\\\"\\n}\"]}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CorporationGeoLocationDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz." + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Kuruma Coğrafi Lokasyon(GPS) Koordinat ekleme servisi" + }, + "id": { + "element": "string", + "content": "createCorporationGeoLocation" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Kurum ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Kuruma Coğrafi Lokasyon(GPS) Koordinat ekleme servisi" + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"Root Type for CorporationGeoLocationDTO\",\"description\":\"Kuruma ait Coğrafi Lokasyon veri modeli. Haritadaki GPS konum verisini (Koordinat) doner.\",\"type\":\"object\",\"properties\":{\"corporationId\":{\"format\":\"int32\",\"description\":\"Kurum bilgisi\",\"type\":\"integer\"},\"id\":{\"format\":\"int32\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"latitude\":{\"type\":\"string\"},\"longitude\":{\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\":1,\\n \\\"corporationId\\\":23,\\n \\\"latitude\\\":\\\"40.54684564564564\\\",\\n \\\"longitude\\\":\\\"20.556456464\\\"\\n}\"]}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CorporationGeoLocationDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"Root Type for CorporationGeoLocationDTO\",\"description\":\"Kuruma ait Coğrafi Lokasyon veri modeli. Haritadaki GPS konum verisini (Koordinat) doner.\",\"type\":\"object\",\"properties\":{\"corporationId\":{\"format\":\"int32\",\"description\":\"Kurum bilgisi\",\"type\":\"integer\"},\"id\":{\"format\":\"int32\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"latitude\":{\"type\":\"string\"},\"longitude\":{\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\":1,\\n \\\"corporationId\\\":23,\\n \\\"latitude\\\":\\\"40.54684564564564\\\",\\n \\\"longitude\\\":\\\"20.556456464\\\"\\n}\"]}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CorporationGeoLocationDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"Root Type for CorporationGeoLocationDTO\",\"description\":\"Kuruma ait Coğrafi Lokasyon veri modeli. Haritadaki GPS konum verisini (Koordinat) doner.\",\"type\":\"object\",\"properties\":{\"corporationId\":{\"format\":\"int32\",\"description\":\"Kurum bilgisi\",\"type\":\"integer\"},\"id\":{\"format\":\"int32\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"latitude\":{\"type\":\"string\"},\"longitude\":{\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\":1,\\n \\\"corporationId\\\":23,\\n \\\"latitude\\\":\\\"40.54684564564564\\\",\\n \\\"longitude\\\":\\\"20.556456464\\\"\\n}\"]}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CorporationGeoLocationDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"Root Type for CorporationGeoLocationDTO\",\"description\":\"Kuruma ait Coğrafi Lokasyon veri modeli. Haritadaki GPS konum verisini (Koordinat) doner.\",\"type\":\"object\",\"properties\":{\"corporationId\":{\"format\":\"int32\",\"description\":\"Kurum bilgisi\",\"type\":\"integer\"},\"id\":{\"format\":\"int32\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"latitude\":{\"type\":\"string\"},\"longitude\":{\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\":1,\\n \\\"corporationId\\\":23,\\n \\\"latitude\\\":\\\"40.54684564564564\\\",\\n \\\"longitude\\\":\\\"20.556456464\\\"\\n}\"]}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CorporationGeoLocationDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"Root Type for CorporationGeoLocationDTO\",\"description\":\"Kuruma ait Coğrafi Lokasyon veri modeli. Haritadaki GPS konum verisini (Koordinat) doner.\",\"type\":\"object\",\"properties\":{\"corporationId\":{\"format\":\"int32\",\"description\":\"Kurum bilgisi\",\"type\":\"integer\"},\"id\":{\"format\":\"int32\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"latitude\":{\"type\":\"string\"},\"longitude\":{\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\":1,\\n \\\"corporationId\\\":23,\\n \\\"latitude\\\":\\\"40.54684564564564\\\",\\n \\\"longitude\\\":\\\"20.556456464\\\"\\n}\"]}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CorporationGeoLocationDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"Root Type for CorporationGeoLocationDTO\",\"description\":\"Kuruma ait Coğrafi Lokasyon veri modeli. Haritadaki GPS konum verisini (Koordinat) doner.\",\"type\":\"object\",\"properties\":{\"corporationId\":{\"format\":\"int32\",\"description\":\"Kurum bilgisi\",\"type\":\"integer\"},\"id\":{\"format\":\"int32\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"latitude\":{\"type\":\"string\"},\"longitude\":{\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\":1,\\n \\\"corporationId\\\":23,\\n \\\"latitude\\\":\\\"40.54684564564564\\\",\\n \\\"longitude\\\":\\\"20.556456464\\\"\\n}\"]}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CorporationGeoLocationDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"Root Type for CorporationGeoLocationDTO\",\"description\":\"Kuruma ait Coğrafi Lokasyon veri modeli. Haritadaki GPS konum verisini (Koordinat) doner.\",\"type\":\"object\",\"properties\":{\"corporationId\":{\"format\":\"int32\",\"description\":\"Kurum bilgisi\",\"type\":\"integer\"},\"id\":{\"format\":\"int32\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"latitude\":{\"type\":\"string\"},\"longitude\":{\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\":1,\\n \\\"corporationId\\\":23,\\n \\\"latitude\\\":\\\"40.54684564564564\\\",\\n \\\"longitude\\\":\\\"20.556456464\\\"\\n}\"]}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CorporationGeoLocationDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz." + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Kurum ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + }, + "href": { + "element": "string", + "content": "/api/sbt/corporations/{id}/student-classification-info" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Kurumun alabileceği talebe nevi ve kontenjan bilgileri." + }, + "id": { + "element": "string", + "content": "getCorporationStudentClassificationInfo" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Kurum ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Kurumun alabileceği talebe nevi ve kontenjan bilgileri." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem Başarılı." + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/CorporationStudentClassificationInfoDTO\"}],\"definitions\":{\"CorporationStudentClassificationInfoDTO\":{\"title\":\"Root Type for CorporationBuildInfo\",\"description\":\"Kurumda kalan talebe nevileri ve buna ait kontenjan bilgilerini içerir.\",\"type\":\"object\",\"properties\":{\"gender\":{\"$ref\":\"#/definitions/GenderLOV\"},\"note\":{\"description\":\"Açıklama Bilgisi\",\"type\":\"string\"},\"quota\":{\"format\":\"int32\",\"description\":\"Kontenjan Bilgisi\",\"type\":\"integer\"},\"quotaStudentClassification\":{\"description\":\"Kuruma alınacak Talebe nevisi.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/CorporationStudentClassificationQuotaDTO\"}},\"usageArea\":{\"format\":\"int32\",\"description\":\"Kullanım alanı metrekare olarak bilgisi\",\"type\":\"integer\"}},\"examples\":[{\"gender\":{\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"id\":33,\"lastModifiedBy\":\"some text\",\"lastModifiedDate\":\"2018-02-10T09:30Z\",\"name\":\"some text\"},\"note\":\"some text\",\"quota\":24,\"quotaStudentClassification\":[{\"corporationID\":95,\"corporationStatusID\":59,\"quota\":38,\"studentClassificationID\":1},{\"corporationID\":96,\"corporationStatusID\":75,\"quota\":86,\"studentClassificationID\":28}],\"usageArea\":9}]},\"CorporationStudentClassificationQuotaDTO\":{\"title\":\"Root Type for corporationStudentClassificationQuota\",\"description\":\"Kurum Öğrenci Nevileri kota bilgisi. corporationID, corporationStatusID, studentClassificationID ve kontenjan bilgisi yer alır.\",\"type\":\"object\",\"properties\":{\"corporationID\":{\"format\":\"int32\",\"description\":\"Kurum Bilgisi\",\"type\":\"integer\"},\"corporationStatus\":{\"$ref\":\"#/definitions/CorporationStatusLOV\"},\"quota\":{\"format\":\"int32\",\"description\":\"Kontenjan Bilgisi\",\"type\":\"integer\"},\"studentClassification\":{\"$ref\":\"#/definitions/CorporationStudentClassificationInfoDTO\"}},\"examples\":[{\"corporationID\":95,\"corporationStatus\":{\"id\":14,\"name\":\"some text\"},\"quota\":59,\"studentClassification\":{\"gender\":{\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"id\":88,\"name\":\"some text\"},\"note\":\"some text\",\"quota\":35,\"quotaStudentClassification\":[{\"corporationID\":56,\"corporationStatus\":{\"id\":65,\"name\":\"some text\"},\"quota\":64,\"studentClassification\":{}},{\"corporationID\":94,\"corporationStatus\":{\"id\":51,\"name\":\"some text\"},\"quota\":72,\"studentClassification\":{}}],\"usageArea\":96}}]},\"CorporationStatusLOV\":{\"title\":\"Root Type for CorporationStatusLOV\",\"description\":\"Kurumun Statüleri belirler.\\nÖrnek: Aktif, İnşaat, Kapalı, Tadilatta gibi durumlardır.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int32\",\"description\":\"Kurum Status ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Kurum Status Name\",\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\": 1,\\n \\\"name\\\": \\\"some text\\\"\\n}\"]},\"GenderLOV\":{\"title\":\"GenderLOV\",\"description\":\"Cinsiyet tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Cinsiyet adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CorporationStudentClassificationInfoDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz." + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Kurumda kalan talebe nevileri ve buna ait kontenjan bilgilerini günceller." + }, + "id": { + "element": "string", + "content": "updateCorporationStudentClassificationInfo" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Kurum ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Kurumda kalan talebe nevileri ile bunlara ait kontenjan bilgilerinin ve Kuruma ait kullanım alanı bilgilerinin güncellendiği servistir." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/CorporationStudentClassificationInfoDTO\"}],\"definitions\":{\"CorporationStudentClassificationInfoDTO\":{\"title\":\"Root Type for CorporationBuildInfo\",\"description\":\"Kurumda kalan talebe nevileri ve buna ait kontenjan bilgilerini içerir.\",\"type\":\"object\",\"properties\":{\"gender\":{\"$ref\":\"#/definitions/GenderLOV\"},\"note\":{\"description\":\"Açıklama Bilgisi\",\"type\":\"string\"},\"quota\":{\"format\":\"int32\",\"description\":\"Kontenjan Bilgisi\",\"type\":\"integer\"},\"quotaStudentClassification\":{\"description\":\"Kuruma alınacak Talebe nevisi.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/CorporationStudentClassificationQuotaDTO\"}},\"usageArea\":{\"format\":\"int32\",\"description\":\"Kullanım alanı metrekare olarak bilgisi\",\"type\":\"integer\"}},\"examples\":[{\"gender\":{\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"id\":33,\"lastModifiedBy\":\"some text\",\"lastModifiedDate\":\"2018-02-10T09:30Z\",\"name\":\"some text\"},\"note\":\"some text\",\"quota\":24,\"quotaStudentClassification\":[{\"corporationID\":95,\"corporationStatusID\":59,\"quota\":38,\"studentClassificationID\":1},{\"corporationID\":96,\"corporationStatusID\":75,\"quota\":86,\"studentClassificationID\":28}],\"usageArea\":9}]},\"CorporationStudentClassificationQuotaDTO\":{\"title\":\"Root Type for corporationStudentClassificationQuota\",\"description\":\"Kurum Öğrenci Nevileri kota bilgisi. corporationID, corporationStatusID, studentClassificationID ve kontenjan bilgisi yer alır.\",\"type\":\"object\",\"properties\":{\"corporationID\":{\"format\":\"int32\",\"description\":\"Kurum Bilgisi\",\"type\":\"integer\"},\"corporationStatus\":{\"$ref\":\"#/definitions/CorporationStatusLOV\"},\"quota\":{\"format\":\"int32\",\"description\":\"Kontenjan Bilgisi\",\"type\":\"integer\"},\"studentClassification\":{\"$ref\":\"#/definitions/CorporationStudentClassificationInfoDTO\"}},\"examples\":[{\"corporationID\":95,\"corporationStatus\":{\"id\":14,\"name\":\"some text\"},\"quota\":59,\"studentClassification\":{\"gender\":{\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"id\":88,\"name\":\"some text\"},\"note\":\"some text\",\"quota\":35,\"quotaStudentClassification\":[{\"corporationID\":56,\"corporationStatus\":{\"id\":65,\"name\":\"some text\"},\"quota\":64,\"studentClassification\":{}},{\"corporationID\":94,\"corporationStatus\":{\"id\":51,\"name\":\"some text\"},\"quota\":72,\"studentClassification\":{}}],\"usageArea\":96}}]},\"CorporationStatusLOV\":{\"title\":\"Root Type for CorporationStatusLOV\",\"description\":\"Kurumun Statüleri belirler.\\nÖrnek: Aktif, İnşaat, Kapalı, Tadilatta gibi durumlardır.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int32\",\"description\":\"Kurum Status ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Kurum Status Name\",\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\": 1,\\n \\\"name\\\": \\\"some text\\\"\\n}\"]},\"GenderLOV\":{\"title\":\"GenderLOV\",\"description\":\"Cinsiyet tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Cinsiyet adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CorporationStudentClassificationInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "202" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/CorporationStudentClassificationInfoDTO\"}],\"definitions\":{\"CorporationStudentClassificationInfoDTO\":{\"title\":\"Root Type for CorporationBuildInfo\",\"description\":\"Kurumda kalan talebe nevileri ve buna ait kontenjan bilgilerini içerir.\",\"type\":\"object\",\"properties\":{\"gender\":{\"$ref\":\"#/definitions/GenderLOV\"},\"note\":{\"description\":\"Açıklama Bilgisi\",\"type\":\"string\"},\"quota\":{\"format\":\"int32\",\"description\":\"Kontenjan Bilgisi\",\"type\":\"integer\"},\"quotaStudentClassification\":{\"description\":\"Kuruma alınacak Talebe nevisi.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/CorporationStudentClassificationQuotaDTO\"}},\"usageArea\":{\"format\":\"int32\",\"description\":\"Kullanım alanı metrekare olarak bilgisi\",\"type\":\"integer\"}},\"examples\":[{\"gender\":{\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"id\":33,\"lastModifiedBy\":\"some text\",\"lastModifiedDate\":\"2018-02-10T09:30Z\",\"name\":\"some text\"},\"note\":\"some text\",\"quota\":24,\"quotaStudentClassification\":[{\"corporationID\":95,\"corporationStatusID\":59,\"quota\":38,\"studentClassificationID\":1},{\"corporationID\":96,\"corporationStatusID\":75,\"quota\":86,\"studentClassificationID\":28}],\"usageArea\":9}]},\"CorporationStudentClassificationQuotaDTO\":{\"title\":\"Root Type for corporationStudentClassificationQuota\",\"description\":\"Kurum Öğrenci Nevileri kota bilgisi. corporationID, corporationStatusID, studentClassificationID ve kontenjan bilgisi yer alır.\",\"type\":\"object\",\"properties\":{\"corporationID\":{\"format\":\"int32\",\"description\":\"Kurum Bilgisi\",\"type\":\"integer\"},\"corporationStatus\":{\"$ref\":\"#/definitions/CorporationStatusLOV\"},\"quota\":{\"format\":\"int32\",\"description\":\"Kontenjan Bilgisi\",\"type\":\"integer\"},\"studentClassification\":{\"$ref\":\"#/definitions/CorporationStudentClassificationInfoDTO\"}},\"examples\":[{\"corporationID\":95,\"corporationStatus\":{\"id\":14,\"name\":\"some text\"},\"quota\":59,\"studentClassification\":{\"gender\":{\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"id\":88,\"name\":\"some text\"},\"note\":\"some text\",\"quota\":35,\"quotaStudentClassification\":[{\"corporationID\":56,\"corporationStatus\":{\"id\":65,\"name\":\"some text\"},\"quota\":64,\"studentClassification\":{}},{\"corporationID\":94,\"corporationStatus\":{\"id\":51,\"name\":\"some text\"},\"quota\":72,\"studentClassification\":{}}],\"usageArea\":96}}]},\"CorporationStatusLOV\":{\"title\":\"Root Type for CorporationStatusLOV\",\"description\":\"Kurumun Statüleri belirler.\\nÖrnek: Aktif, İnşaat, Kapalı, Tadilatta gibi durumlardır.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int32\",\"description\":\"Kurum Status ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Kurum Status Name\",\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\": 1,\\n \\\"name\\\": \\\"some text\\\"\\n}\"]},\"GenderLOV\":{\"title\":\"GenderLOV\",\"description\":\"Cinsiyet tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Cinsiyet adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CorporationStudentClassificationInfoDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/CorporationStudentClassificationInfoDTO\"}],\"definitions\":{\"CorporationStudentClassificationInfoDTO\":{\"title\":\"Root Type for CorporationBuildInfo\",\"description\":\"Kurumda kalan talebe nevileri ve buna ait kontenjan bilgilerini içerir.\",\"type\":\"object\",\"properties\":{\"gender\":{\"$ref\":\"#/definitions/GenderLOV\"},\"note\":{\"description\":\"Açıklama Bilgisi\",\"type\":\"string\"},\"quota\":{\"format\":\"int32\",\"description\":\"Kontenjan Bilgisi\",\"type\":\"integer\"},\"quotaStudentClassification\":{\"description\":\"Kuruma alınacak Talebe nevisi.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/CorporationStudentClassificationQuotaDTO\"}},\"usageArea\":{\"format\":\"int32\",\"description\":\"Kullanım alanı metrekare olarak bilgisi\",\"type\":\"integer\"}},\"examples\":[{\"gender\":{\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"id\":33,\"lastModifiedBy\":\"some text\",\"lastModifiedDate\":\"2018-02-10T09:30Z\",\"name\":\"some text\"},\"note\":\"some text\",\"quota\":24,\"quotaStudentClassification\":[{\"corporationID\":95,\"corporationStatusID\":59,\"quota\":38,\"studentClassificationID\":1},{\"corporationID\":96,\"corporationStatusID\":75,\"quota\":86,\"studentClassificationID\":28}],\"usageArea\":9}]},\"CorporationStudentClassificationQuotaDTO\":{\"title\":\"Root Type for corporationStudentClassificationQuota\",\"description\":\"Kurum Öğrenci Nevileri kota bilgisi. corporationID, corporationStatusID, studentClassificationID ve kontenjan bilgisi yer alır.\",\"type\":\"object\",\"properties\":{\"corporationID\":{\"format\":\"int32\",\"description\":\"Kurum Bilgisi\",\"type\":\"integer\"},\"corporationStatus\":{\"$ref\":\"#/definitions/CorporationStatusLOV\"},\"quota\":{\"format\":\"int32\",\"description\":\"Kontenjan Bilgisi\",\"type\":\"integer\"},\"studentClassification\":{\"$ref\":\"#/definitions/CorporationStudentClassificationInfoDTO\"}},\"examples\":[{\"corporationID\":95,\"corporationStatus\":{\"id\":14,\"name\":\"some text\"},\"quota\":59,\"studentClassification\":{\"gender\":{\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"id\":88,\"name\":\"some text\"},\"note\":\"some text\",\"quota\":35,\"quotaStudentClassification\":[{\"corporationID\":56,\"corporationStatus\":{\"id\":65,\"name\":\"some text\"},\"quota\":64,\"studentClassification\":{}},{\"corporationID\":94,\"corporationStatus\":{\"id\":51,\"name\":\"some text\"},\"quota\":72,\"studentClassification\":{}}],\"usageArea\":96}}]},\"CorporationStatusLOV\":{\"title\":\"Root Type for CorporationStatusLOV\",\"description\":\"Kurumun Statüleri belirler.\\nÖrnek: Aktif, İnşaat, Kapalı, Tadilatta gibi durumlardır.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int32\",\"description\":\"Kurum Status ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Kurum Status Name\",\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\": 1,\\n \\\"name\\\": \\\"some text\\\"\\n}\"]},\"GenderLOV\":{\"title\":\"GenderLOV\",\"description\":\"Cinsiyet tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Cinsiyet adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CorporationStudentClassificationInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/CorporationStudentClassificationInfoDTO\"}],\"definitions\":{\"CorporationStudentClassificationInfoDTO\":{\"title\":\"Root Type for CorporationBuildInfo\",\"description\":\"Kurumda kalan talebe nevileri ve buna ait kontenjan bilgilerini içerir.\",\"type\":\"object\",\"properties\":{\"gender\":{\"$ref\":\"#/definitions/GenderLOV\"},\"note\":{\"description\":\"Açıklama Bilgisi\",\"type\":\"string\"},\"quota\":{\"format\":\"int32\",\"description\":\"Kontenjan Bilgisi\",\"type\":\"integer\"},\"quotaStudentClassification\":{\"description\":\"Kuruma alınacak Talebe nevisi.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/CorporationStudentClassificationQuotaDTO\"}},\"usageArea\":{\"format\":\"int32\",\"description\":\"Kullanım alanı metrekare olarak bilgisi\",\"type\":\"integer\"}},\"examples\":[{\"gender\":{\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"id\":33,\"lastModifiedBy\":\"some text\",\"lastModifiedDate\":\"2018-02-10T09:30Z\",\"name\":\"some text\"},\"note\":\"some text\",\"quota\":24,\"quotaStudentClassification\":[{\"corporationID\":95,\"corporationStatusID\":59,\"quota\":38,\"studentClassificationID\":1},{\"corporationID\":96,\"corporationStatusID\":75,\"quota\":86,\"studentClassificationID\":28}],\"usageArea\":9}]},\"CorporationStudentClassificationQuotaDTO\":{\"title\":\"Root Type for corporationStudentClassificationQuota\",\"description\":\"Kurum Öğrenci Nevileri kota bilgisi. corporationID, corporationStatusID, studentClassificationID ve kontenjan bilgisi yer alır.\",\"type\":\"object\",\"properties\":{\"corporationID\":{\"format\":\"int32\",\"description\":\"Kurum Bilgisi\",\"type\":\"integer\"},\"corporationStatus\":{\"$ref\":\"#/definitions/CorporationStatusLOV\"},\"quota\":{\"format\":\"int32\",\"description\":\"Kontenjan Bilgisi\",\"type\":\"integer\"},\"studentClassification\":{\"$ref\":\"#/definitions/CorporationStudentClassificationInfoDTO\"}},\"examples\":[{\"corporationID\":95,\"corporationStatus\":{\"id\":14,\"name\":\"some text\"},\"quota\":59,\"studentClassification\":{\"gender\":{\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"id\":88,\"name\":\"some text\"},\"note\":\"some text\",\"quota\":35,\"quotaStudentClassification\":[{\"corporationID\":56,\"corporationStatus\":{\"id\":65,\"name\":\"some text\"},\"quota\":64,\"studentClassification\":{}},{\"corporationID\":94,\"corporationStatus\":{\"id\":51,\"name\":\"some text\"},\"quota\":72,\"studentClassification\":{}}],\"usageArea\":96}}]},\"CorporationStatusLOV\":{\"title\":\"Root Type for CorporationStatusLOV\",\"description\":\"Kurumun Statüleri belirler.\\nÖrnek: Aktif, İnşaat, Kapalı, Tadilatta gibi durumlardır.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int32\",\"description\":\"Kurum Status ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Kurum Status Name\",\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\": 1,\\n \\\"name\\\": \\\"some text\\\"\\n}\"]},\"GenderLOV\":{\"title\":\"GenderLOV\",\"description\":\"Cinsiyet tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Cinsiyet adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CorporationStudentClassificationInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/CorporationStudentClassificationInfoDTO\"}],\"definitions\":{\"CorporationStudentClassificationInfoDTO\":{\"title\":\"Root Type for CorporationBuildInfo\",\"description\":\"Kurumda kalan talebe nevileri ve buna ait kontenjan bilgilerini içerir.\",\"type\":\"object\",\"properties\":{\"gender\":{\"$ref\":\"#/definitions/GenderLOV\"},\"note\":{\"description\":\"Açıklama Bilgisi\",\"type\":\"string\"},\"quota\":{\"format\":\"int32\",\"description\":\"Kontenjan Bilgisi\",\"type\":\"integer\"},\"quotaStudentClassification\":{\"description\":\"Kuruma alınacak Talebe nevisi.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/CorporationStudentClassificationQuotaDTO\"}},\"usageArea\":{\"format\":\"int32\",\"description\":\"Kullanım alanı metrekare olarak bilgisi\",\"type\":\"integer\"}},\"examples\":[{\"gender\":{\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"id\":33,\"lastModifiedBy\":\"some text\",\"lastModifiedDate\":\"2018-02-10T09:30Z\",\"name\":\"some text\"},\"note\":\"some text\",\"quota\":24,\"quotaStudentClassification\":[{\"corporationID\":95,\"corporationStatusID\":59,\"quota\":38,\"studentClassificationID\":1},{\"corporationID\":96,\"corporationStatusID\":75,\"quota\":86,\"studentClassificationID\":28}],\"usageArea\":9}]},\"CorporationStudentClassificationQuotaDTO\":{\"title\":\"Root Type for corporationStudentClassificationQuota\",\"description\":\"Kurum Öğrenci Nevileri kota bilgisi. corporationID, corporationStatusID, studentClassificationID ve kontenjan bilgisi yer alır.\",\"type\":\"object\",\"properties\":{\"corporationID\":{\"format\":\"int32\",\"description\":\"Kurum Bilgisi\",\"type\":\"integer\"},\"corporationStatus\":{\"$ref\":\"#/definitions/CorporationStatusLOV\"},\"quota\":{\"format\":\"int32\",\"description\":\"Kontenjan Bilgisi\",\"type\":\"integer\"},\"studentClassification\":{\"$ref\":\"#/definitions/CorporationStudentClassificationInfoDTO\"}},\"examples\":[{\"corporationID\":95,\"corporationStatus\":{\"id\":14,\"name\":\"some text\"},\"quota\":59,\"studentClassification\":{\"gender\":{\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"id\":88,\"name\":\"some text\"},\"note\":\"some text\",\"quota\":35,\"quotaStudentClassification\":[{\"corporationID\":56,\"corporationStatus\":{\"id\":65,\"name\":\"some text\"},\"quota\":64,\"studentClassification\":{}},{\"corporationID\":94,\"corporationStatus\":{\"id\":51,\"name\":\"some text\"},\"quota\":72,\"studentClassification\":{}}],\"usageArea\":96}}]},\"CorporationStatusLOV\":{\"title\":\"Root Type for CorporationStatusLOV\",\"description\":\"Kurumun Statüleri belirler.\\nÖrnek: Aktif, İnşaat, Kapalı, Tadilatta gibi durumlardır.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int32\",\"description\":\"Kurum Status ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Kurum Status Name\",\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\": 1,\\n \\\"name\\\": \\\"some text\\\"\\n}\"]},\"GenderLOV\":{\"title\":\"GenderLOV\",\"description\":\"Cinsiyet tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Cinsiyet adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CorporationStudentClassificationInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/CorporationStudentClassificationInfoDTO\"}],\"definitions\":{\"CorporationStudentClassificationInfoDTO\":{\"title\":\"Root Type for CorporationBuildInfo\",\"description\":\"Kurumda kalan talebe nevileri ve buna ait kontenjan bilgilerini içerir.\",\"type\":\"object\",\"properties\":{\"gender\":{\"$ref\":\"#/definitions/GenderLOV\"},\"note\":{\"description\":\"Açıklama Bilgisi\",\"type\":\"string\"},\"quota\":{\"format\":\"int32\",\"description\":\"Kontenjan Bilgisi\",\"type\":\"integer\"},\"quotaStudentClassification\":{\"description\":\"Kuruma alınacak Talebe nevisi.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/CorporationStudentClassificationQuotaDTO\"}},\"usageArea\":{\"format\":\"int32\",\"description\":\"Kullanım alanı metrekare olarak bilgisi\",\"type\":\"integer\"}},\"examples\":[{\"gender\":{\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"id\":33,\"lastModifiedBy\":\"some text\",\"lastModifiedDate\":\"2018-02-10T09:30Z\",\"name\":\"some text\"},\"note\":\"some text\",\"quota\":24,\"quotaStudentClassification\":[{\"corporationID\":95,\"corporationStatusID\":59,\"quota\":38,\"studentClassificationID\":1},{\"corporationID\":96,\"corporationStatusID\":75,\"quota\":86,\"studentClassificationID\":28}],\"usageArea\":9}]},\"CorporationStudentClassificationQuotaDTO\":{\"title\":\"Root Type for corporationStudentClassificationQuota\",\"description\":\"Kurum Öğrenci Nevileri kota bilgisi. corporationID, corporationStatusID, studentClassificationID ve kontenjan bilgisi yer alır.\",\"type\":\"object\",\"properties\":{\"corporationID\":{\"format\":\"int32\",\"description\":\"Kurum Bilgisi\",\"type\":\"integer\"},\"corporationStatus\":{\"$ref\":\"#/definitions/CorporationStatusLOV\"},\"quota\":{\"format\":\"int32\",\"description\":\"Kontenjan Bilgisi\",\"type\":\"integer\"},\"studentClassification\":{\"$ref\":\"#/definitions/CorporationStudentClassificationInfoDTO\"}},\"examples\":[{\"corporationID\":95,\"corporationStatus\":{\"id\":14,\"name\":\"some text\"},\"quota\":59,\"studentClassification\":{\"gender\":{\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"id\":88,\"name\":\"some text\"},\"note\":\"some text\",\"quota\":35,\"quotaStudentClassification\":[{\"corporationID\":56,\"corporationStatus\":{\"id\":65,\"name\":\"some text\"},\"quota\":64,\"studentClassification\":{}},{\"corporationID\":94,\"corporationStatus\":{\"id\":51,\"name\":\"some text\"},\"quota\":72,\"studentClassification\":{}}],\"usageArea\":96}}]},\"CorporationStatusLOV\":{\"title\":\"Root Type for CorporationStatusLOV\",\"description\":\"Kurumun Statüleri belirler.\\nÖrnek: Aktif, İnşaat, Kapalı, Tadilatta gibi durumlardır.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int32\",\"description\":\"Kurum Status ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Kurum Status Name\",\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\": 1,\\n \\\"name\\\": \\\"some text\\\"\\n}\"]},\"GenderLOV\":{\"title\":\"GenderLOV\",\"description\":\"Cinsiyet tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Cinsiyet adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CorporationStudentClassificationInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/CorporationStudentClassificationInfoDTO\"}],\"definitions\":{\"CorporationStudentClassificationInfoDTO\":{\"title\":\"Root Type for CorporationBuildInfo\",\"description\":\"Kurumda kalan talebe nevileri ve buna ait kontenjan bilgilerini içerir.\",\"type\":\"object\",\"properties\":{\"gender\":{\"$ref\":\"#/definitions/GenderLOV\"},\"note\":{\"description\":\"Açıklama Bilgisi\",\"type\":\"string\"},\"quota\":{\"format\":\"int32\",\"description\":\"Kontenjan Bilgisi\",\"type\":\"integer\"},\"quotaStudentClassification\":{\"description\":\"Kuruma alınacak Talebe nevisi.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/CorporationStudentClassificationQuotaDTO\"}},\"usageArea\":{\"format\":\"int32\",\"description\":\"Kullanım alanı metrekare olarak bilgisi\",\"type\":\"integer\"}},\"examples\":[{\"gender\":{\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"id\":33,\"lastModifiedBy\":\"some text\",\"lastModifiedDate\":\"2018-02-10T09:30Z\",\"name\":\"some text\"},\"note\":\"some text\",\"quota\":24,\"quotaStudentClassification\":[{\"corporationID\":95,\"corporationStatusID\":59,\"quota\":38,\"studentClassificationID\":1},{\"corporationID\":96,\"corporationStatusID\":75,\"quota\":86,\"studentClassificationID\":28}],\"usageArea\":9}]},\"CorporationStudentClassificationQuotaDTO\":{\"title\":\"Root Type for corporationStudentClassificationQuota\",\"description\":\"Kurum Öğrenci Nevileri kota bilgisi. corporationID, corporationStatusID, studentClassificationID ve kontenjan bilgisi yer alır.\",\"type\":\"object\",\"properties\":{\"corporationID\":{\"format\":\"int32\",\"description\":\"Kurum Bilgisi\",\"type\":\"integer\"},\"corporationStatus\":{\"$ref\":\"#/definitions/CorporationStatusLOV\"},\"quota\":{\"format\":\"int32\",\"description\":\"Kontenjan Bilgisi\",\"type\":\"integer\"},\"studentClassification\":{\"$ref\":\"#/definitions/CorporationStudentClassificationInfoDTO\"}},\"examples\":[{\"corporationID\":95,\"corporationStatus\":{\"id\":14,\"name\":\"some text\"},\"quota\":59,\"studentClassification\":{\"gender\":{\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"id\":88,\"name\":\"some text\"},\"note\":\"some text\",\"quota\":35,\"quotaStudentClassification\":[{\"corporationID\":56,\"corporationStatus\":{\"id\":65,\"name\":\"some text\"},\"quota\":64,\"studentClassification\":{}},{\"corporationID\":94,\"corporationStatus\":{\"id\":51,\"name\":\"some text\"},\"quota\":72,\"studentClassification\":{}}],\"usageArea\":96}}]},\"CorporationStatusLOV\":{\"title\":\"Root Type for CorporationStatusLOV\",\"description\":\"Kurumun Statüleri belirler.\\nÖrnek: Aktif, İnşaat, Kapalı, Tadilatta gibi durumlardır.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int32\",\"description\":\"Kurum Status ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Kurum Status Name\",\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\": 1,\\n \\\"name\\\": \\\"some text\\\"\\n}\"]},\"GenderLOV\":{\"title\":\"GenderLOV\",\"description\":\"Cinsiyet tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Cinsiyet adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CorporationStudentClassificationInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz." + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Kurum ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + }, + "href": { + "element": "string", + "content": "/api/sbt/corporations/{id}/tel-numbers" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Kurumun bütün elektronik adres bilgilerini getirir." + }, + "id": { + "element": "string", + "content": "getAllCorporationTelephoneNumbers" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Kurum ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Kurumun bütün telefon-fax bilgilerini getirir." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactInfoDTO\"},\"definitions\":{\"ContactInfoDTO\":{\"title\":\"ContactInfoDTO\",\"description\":\"Iletisim bilgilerini sunmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Category of contact type. For example: Home address, Home telephone, Cell phone etc.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"contactInfo\":{\"description\":\"Telephone number or email address information depending on the type.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"ContactMediumCategoryLOV\":{\"title\":\"ContactMediumCategoryLOV\",\"description\":\"Contact medium kategorileri. Bir kategori tipine ait veriyi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Category Name\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/ContactInfoDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz." + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Kuruma Telefon ekleme(sabit, cep, fax vb.. ) servisi" + }, + "id": { + "element": "string", + "content": "createCorporationTelephoneNumbers" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Kurum ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Kuruma Telefon ekleme(sabit, cep, fax vb.. ) servisi" + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/ContactInfoDTO\"}],\"definitions\":{\"ContactInfoDTO\":{\"title\":\"ContactInfoDTO\",\"description\":\"Iletisim bilgilerini sunmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Category of contact type. For example: Home address, Home telephone, Cell phone etc.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"contactInfo\":{\"description\":\"Telephone number or email address information depending on the type.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"ContactMediumCategoryLOV\":{\"title\":\"ContactMediumCategoryLOV\",\"description\":\"Contact medium kategorileri. Bir kategori tipine ait veriyi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Category Name\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz." + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Kurum ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Bölüm ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "divisionId" + }, + "value": { + "element": "number" + } + } + } + ] + }, + "href": { + "element": "string", + "content": "/api/sbt/corporations/{id}/divisions/{divisionId}" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Kuruma ait bolum guncelleme servisi" + }, + "id": { + "element": "string", + "content": "updateCorporationDivision" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Bölüm ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "divisionId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Kurum ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Kuruma ait bolum guncelleme servisi" + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"Root Type for CorporationDivisionDTO\",\"description\":\"Kurumdaki bolümleri ifade eden veri modelimizdir. Bina içerisindeki Kat, Blok, Bölüm vb.. bilgiler yer alır.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int32\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Bölüm adı\",\"type\":\"string\"},\"status\":{\"description\":\"Kuruma ait bölümün aktiflik bilgisi\",\"type\":\"boolean\"}},\"examples\":[\"{\\n \\\"id\\\":1,\\n \\\"name\\\":\\\"some text\\\",\\n \\\"status\\\":true\\n}\"]}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CorporationDivisionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "202" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"Root Type for CorporationDivisionDTO\",\"description\":\"Kurumdaki bolümleri ifade eden veri modelimizdir. Bina içerisindeki Kat, Blok, Bölüm vb.. bilgiler yer alır.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int32\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Bölüm adı\",\"type\":\"string\"},\"status\":{\"description\":\"Kuruma ait bölümün aktiflik bilgisi\",\"type\":\"boolean\"}},\"examples\":[\"{\\n \\\"id\\\":1,\\n \\\"name\\\":\\\"some text\\\",\\n \\\"status\\\":true\\n}\"]}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CorporationDivisionDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"Root Type for CorporationDivisionDTO\",\"description\":\"Kurumdaki bolümleri ifade eden veri modelimizdir. Bina içerisindeki Kat, Blok, Bölüm vb.. bilgiler yer alır.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int32\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Bölüm adı\",\"type\":\"string\"},\"status\":{\"description\":\"Kuruma ait bölümün aktiflik bilgisi\",\"type\":\"boolean\"}},\"examples\":[\"{\\n \\\"id\\\":1,\\n \\\"name\\\":\\\"some text\\\",\\n \\\"status\\\":true\\n}\"]}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CorporationDivisionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"Root Type for CorporationDivisionDTO\",\"description\":\"Kurumdaki bolümleri ifade eden veri modelimizdir. Bina içerisindeki Kat, Blok, Bölüm vb.. bilgiler yer alır.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int32\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Bölüm adı\",\"type\":\"string\"},\"status\":{\"description\":\"Kuruma ait bölümün aktiflik bilgisi\",\"type\":\"boolean\"}},\"examples\":[\"{\\n \\\"id\\\":1,\\n \\\"name\\\":\\\"some text\\\",\\n \\\"status\\\":true\\n}\"]}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CorporationDivisionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"Root Type for CorporationDivisionDTO\",\"description\":\"Kurumdaki bolümleri ifade eden veri modelimizdir. Bina içerisindeki Kat, Blok, Bölüm vb.. bilgiler yer alır.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int32\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Bölüm adı\",\"type\":\"string\"},\"status\":{\"description\":\"Kuruma ait bölümün aktiflik bilgisi\",\"type\":\"boolean\"}},\"examples\":[\"{\\n \\\"id\\\":1,\\n \\\"name\\\":\\\"some text\\\",\\n \\\"status\\\":true\\n}\"]}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CorporationDivisionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"Root Type for CorporationDivisionDTO\",\"description\":\"Kurumdaki bolümleri ifade eden veri modelimizdir. Bina içerisindeki Kat, Blok, Bölüm vb.. bilgiler yer alır.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int32\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Bölüm adı\",\"type\":\"string\"},\"status\":{\"description\":\"Kuruma ait bölümün aktiflik bilgisi\",\"type\":\"boolean\"}},\"examples\":[\"{\\n \\\"id\\\":1,\\n \\\"name\\\":\\\"some text\\\",\\n \\\"status\\\":true\\n}\"]}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CorporationDivisionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"Root Type for CorporationDivisionDTO\",\"description\":\"Kurumdaki bolümleri ifade eden veri modelimizdir. Bina içerisindeki Kat, Blok, Bölüm vb.. bilgiler yer alır.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int32\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Bölüm adı\",\"type\":\"string\"},\"status\":{\"description\":\"Kuruma ait bölümün aktiflik bilgisi\",\"type\":\"boolean\"}},\"examples\":[\"{\\n \\\"id\\\":1,\\n \\\"name\\\":\\\"some text\\\",\\n \\\"status\\\":true\\n}\"]}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CorporationDivisionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz." + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Kurumdan Bolum Silme-Çıkartma Servisi" + }, + "id": { + "element": "string", + "content": "deleteCorporationDivision" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Bölüm ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "divisionId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Kurum ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Kurumdan Bolum Silme-Çıkartma Servisi" + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "204" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz." + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Kurum ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "documentId" + }, + "value": { + "element": "number" + } + } + } + ] + }, + "href": { + "element": "string", + "content": "/api/sbt/corporations/{id}/documents/{documentId}/content" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Kuruma ait documanın icerik servisi" + }, + "id": { + "element": "string", + "content": "getCorporationDocumentContent" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "documentId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Kurum ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Kuruma ait documanın icerigi. word, excel, pdf, resim vs..." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "Kuruma ait documanın icerigi. word, excel, pdf, resim vs..." + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/File\"}],\"definitions\":{\"File\":{\"title\":\"File\",\"type\":\"object\",\"properties\":{\"absolute\":{\"type\":\"boolean\"},\"absoluteFile\":{\"$ref\":\"#/definitions/File\"},\"absolutePath\":{\"type\":\"string\"},\"canonicalFile\":{\"$ref\":\"#/definitions/File\"},\"canonicalPath\":{\"type\":\"string\"},\"directory\":{\"type\":\"boolean\"},\"file\":{\"type\":\"boolean\"},\"freeSpace\":{\"format\":\"int64\",\"type\":\"integer\"},\"hidden\":{\"type\":\"boolean\"},\"name\":{\"type\":\"string\"},\"parent\":{\"type\":\"string\"},\"parentFile\":{\"$ref\":\"#/definitions/File\"},\"path\":{\"type\":\"string\"},\"totalSpace\":{\"format\":\"int64\",\"type\":\"integer\"},\"usableSpace\":{\"format\":\"int64\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/File" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz." + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Kurum ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Email ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "contactId" + }, + "value": { + "element": "number" + } + } + } + ] + }, + "href": { + "element": "string", + "content": "/api/sbt/corporations/{id}/electronic-address/{contactId}" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Kuruma ait elektronik posta adreslerini güncelleyen servis" + }, + "id": { + "element": "string", + "content": "updateCorporationElectronicAddress" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Electronic Address ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "contactId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Kurum ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Kuruma ait elektronik posta adreslerinden parametrede belirtilen adresi güncellemeyi sağlayan servistir." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "202" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/ContactInfoDTO\"}],\"definitions\":{\"ContactInfoDTO\":{\"title\":\"ContactInfoDTO\",\"description\":\"Iletisim bilgilerini sunmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Category of contact type. For example: Home address, Home telephone, Cell phone etc.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"contactInfo\":{\"description\":\"Telephone number or email address information depending on the type.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"ContactMediumCategoryLOV\":{\"title\":\"ContactMediumCategoryLOV\",\"description\":\"Contact medium kategorileri. Bir kategori tipine ait veriyi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Category Name\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz." + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Kuruma ait elektronik posta adresi silme işlemini yapar" + }, + "id": { + "element": "string", + "content": "deleteCorporationElectronicAddress" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Electronic Address ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "contactId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Kurum ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Kuruma ait elektronik posta adresi silme işlemini yapar" + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "204" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz." + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Kurum ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Dernek ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "foundationId" + }, + "value": { + "element": "number" + } + } + } + ] + }, + "href": { + "element": "string", + "content": "/api/sbt/corporations/{id}/foundations/{foundationId}" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Kurumdan dernek vakıf çıkarma-silme servisidir" + }, + "id": { + "element": "string", + "content": "deleteCorporationFoundation" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Dernek ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "foundationId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Kurum ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Kurumdan dernek vakıf çıkarma-silme servisidir" + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "204" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz." + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Kurum ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "GPS lokasyon ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "geoLocationId" + }, + "value": { + "element": "number" + } + } + } + ] + }, + "href": { + "element": "string", + "content": "/api/sbt/corporations/{id}/geolocation/{geoLocationId}" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Kurumun GPS koordinatının güncellenmesi" + }, + "id": { + "element": "string", + "content": "updateCorporationGeoLocation" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Coğrafi Lokasyon ID'si " + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "geoLocationId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Kurum ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Kurumun GPS koordinatının güncellenmesi" + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"Root Type for CorporationGeoLocationDTO\",\"description\":\"Kuruma ait Coğrafi Lokasyon veri modeli. Haritadaki GPS konum verisini (Koordinat) doner.\",\"type\":\"object\",\"properties\":{\"corporationId\":{\"format\":\"int32\",\"description\":\"Kurum bilgisi\",\"type\":\"integer\"},\"id\":{\"format\":\"int32\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"latitude\":{\"type\":\"string\"},\"longitude\":{\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\":1,\\n \\\"corporationId\\\":23,\\n \\\"latitude\\\":\\\"40.54684564564564\\\",\\n \\\"longitude\\\":\\\"20.556456464\\\"\\n}\"]}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CorporationGeoLocationDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "202" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"Root Type for CorporationGeoLocationDTO\",\"description\":\"Kuruma ait Coğrafi Lokasyon veri modeli. Haritadaki GPS konum verisini (Koordinat) doner.\",\"type\":\"object\",\"properties\":{\"corporationId\":{\"format\":\"int32\",\"description\":\"Kurum bilgisi\",\"type\":\"integer\"},\"id\":{\"format\":\"int32\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"latitude\":{\"type\":\"string\"},\"longitude\":{\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\":1,\\n \\\"corporationId\\\":23,\\n \\\"latitude\\\":\\\"40.54684564564564\\\",\\n \\\"longitude\\\":\\\"20.556456464\\\"\\n}\"]}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CorporationGeoLocationDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"Root Type for CorporationGeoLocationDTO\",\"description\":\"Kuruma ait Coğrafi Lokasyon veri modeli. Haritadaki GPS konum verisini (Koordinat) doner.\",\"type\":\"object\",\"properties\":{\"corporationId\":{\"format\":\"int32\",\"description\":\"Kurum bilgisi\",\"type\":\"integer\"},\"id\":{\"format\":\"int32\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"latitude\":{\"type\":\"string\"},\"longitude\":{\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\":1,\\n \\\"corporationId\\\":23,\\n \\\"latitude\\\":\\\"40.54684564564564\\\",\\n \\\"longitude\\\":\\\"20.556456464\\\"\\n}\"]}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CorporationGeoLocationDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"Root Type for CorporationGeoLocationDTO\",\"description\":\"Kuruma ait Coğrafi Lokasyon veri modeli. Haritadaki GPS konum verisini (Koordinat) doner.\",\"type\":\"object\",\"properties\":{\"corporationId\":{\"format\":\"int32\",\"description\":\"Kurum bilgisi\",\"type\":\"integer\"},\"id\":{\"format\":\"int32\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"latitude\":{\"type\":\"string\"},\"longitude\":{\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\":1,\\n \\\"corporationId\\\":23,\\n \\\"latitude\\\":\\\"40.54684564564564\\\",\\n \\\"longitude\\\":\\\"20.556456464\\\"\\n}\"]}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CorporationGeoLocationDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"Root Type for CorporationGeoLocationDTO\",\"description\":\"Kuruma ait Coğrafi Lokasyon veri modeli. Haritadaki GPS konum verisini (Koordinat) doner.\",\"type\":\"object\",\"properties\":{\"corporationId\":{\"format\":\"int32\",\"description\":\"Kurum bilgisi\",\"type\":\"integer\"},\"id\":{\"format\":\"int32\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"latitude\":{\"type\":\"string\"},\"longitude\":{\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\":1,\\n \\\"corporationId\\\":23,\\n \\\"latitude\\\":\\\"40.54684564564564\\\",\\n \\\"longitude\\\":\\\"20.556456464\\\"\\n}\"]}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CorporationGeoLocationDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"Root Type for CorporationGeoLocationDTO\",\"description\":\"Kuruma ait Coğrafi Lokasyon veri modeli. Haritadaki GPS konum verisini (Koordinat) doner.\",\"type\":\"object\",\"properties\":{\"corporationId\":{\"format\":\"int32\",\"description\":\"Kurum bilgisi\",\"type\":\"integer\"},\"id\":{\"format\":\"int32\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"latitude\":{\"type\":\"string\"},\"longitude\":{\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\":1,\\n \\\"corporationId\\\":23,\\n \\\"latitude\\\":\\\"40.54684564564564\\\",\\n \\\"longitude\\\":\\\"20.556456464\\\"\\n}\"]}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CorporationGeoLocationDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"Root Type for CorporationGeoLocationDTO\",\"description\":\"Kuruma ait Coğrafi Lokasyon veri modeli. Haritadaki GPS konum verisini (Koordinat) doner.\",\"type\":\"object\",\"properties\":{\"corporationId\":{\"format\":\"int32\",\"description\":\"Kurum bilgisi\",\"type\":\"integer\"},\"id\":{\"format\":\"int32\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"latitude\":{\"type\":\"string\"},\"longitude\":{\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\":1,\\n \\\"corporationId\\\":23,\\n \\\"latitude\\\":\\\"40.54684564564564\\\",\\n \\\"longitude\\\":\\\"20.556456464\\\"\\n}\"]}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/CorporationGeoLocationDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz." + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Kuruma ait GPS koordinat silme işlemi" + }, + "id": { + "element": "string", + "content": "deleteCorporationGeoLocation" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Coğrafi Lokasyon ID'si " + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "geoLocationId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Kurum ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Kuruma ait GPS koordinat silme işlemi" + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "204" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz." + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Kurum ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Telno ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "contactId" + }, + "value": { + "element": "number" + } + } + } + ] + }, + "href": { + "element": "string", + "content": "/api/sbt/corporations/{id}/tel-numbers/{contactId}" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Kuruma ait telefon-fax iletişim bilgilerinii güncellemeyi sağlayan servistir." + }, + "id": { + "element": "string", + "content": "updateCorporationTelephoneNumber" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Telefon Numarası ID'si" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "contactId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Kurum ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Kuruma ait telefon-fax iletişim bilgilerinde parametrede belirtilen iletişim bilgisini güncellemeyi sağlayan servistir." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "202" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/ContactInfoDTO\"}],\"definitions\":{\"ContactInfoDTO\":{\"title\":\"ContactInfoDTO\",\"description\":\"Iletisim bilgilerini sunmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Category of contact type. For example: Home address, Home telephone, Cell phone etc.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"contactInfo\":{\"description\":\"Telephone number or email address information depending on the type.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"ContactMediumCategoryLOV\":{\"title\":\"ContactMediumCategoryLOV\",\"description\":\"Contact medium kategorileri. Bir kategori tipine ait veriyi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Category Name\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz." + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Kuruma ait telefon-fax numarası bilgisi silme işlemini yapar" + }, + "id": { + "element": "string", + "content": "deleteCorporationTelephoneNumber" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Telefon Numarası ID'si" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "contactId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Kurum ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Kuruma ait telefon-fax numarası bilgisi silme işlemini yapar" + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "204" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz." + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/foundations" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Vakıflar Listeleme Servisidir." + }, + "id": { + "element": "string", + "content": "getAllFoundation" + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem Başarılı" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"Root Type for FoundationLOV\",\"description\":\"Vakıf - Dernek List of values\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int32\",\"type\":\"integer\"},\"name\":{\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\":1,\\n \\\"name\\\":\\\"some text\\\"\\n}\"]}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/FoundationLOV" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz." + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Vakıf Ekleme Servisidir." + }, + "id": { + "element": "string", + "content": "createFoundation" + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/FoundationDTO\"}],\"definitions\":{\"FoundationDTO\":{\"title\":\"Root Type for FoundationDTO\",\"description\":\"Vakıf-Dernek veri modelidir.\",\"type\":\"object\",\"properties\":{\"addresses\":{\"$ref\":\"#/definitions/AddressCreateDTO\"},\"bolge\":{\"$ref\":\"#/definitions/BolgeLOV\"},\"contacts\":{\"$ref\":\"#/definitions/ContactInfoCreateDTO\"},\"id\":{\"format\":\"int32\",\"description\":\"Vakıf Dernek ID bilgisidir.\",\"type\":\"integer\"},\"mintika\":{\"$ref\":\"#/definitions/MintikaLOV\"},\"name\":{\"description\":\"Vakfın ismi.\",\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\": 1,\\n \\\"name\\\": \\\"some text\\\",\\n \\\"bolge\\\": {},\\n \\\"mintika\\\": {},\\n \\\"addresses\\\": {},\\n \\\"contacts\\\": {}\\n}\"]},\"MintikaLOV\":{\"title\":\"MintikaLOV\",\"description\":\"Mintika tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Mintika adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"ContactInfoCreateDTO\":{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"BolgeLOV\":{\"title\":\"BolgeLOV\",\"description\":\"Bolgeye ait tanimi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Bolge adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"AddressCreateDTO\":{\"title\":\"AddressCreateDTO\",\"description\":\" Kisi veya kurumun adres bilgisini olusturmak icin kullanılır.\\n Adrese ait lokasyon bilgisini içerisinde barındırır.\\n Lokasyon bilgisi önceden tanımlı olmalıdır. Lokasyon bilgisi alınırken lokasyon hierarşisinde kullanıcının seçtiği en altta kalan lokasyonun idsi yeterlidir.\\n Örneğin Türkiye - İstanbul - Ümraniye lokasyonu için sadece Ümraniyenin id sinin verilmesi yeterlidir.\",\"type\":\"object\",\"properties\":{\"address1\":{\"description\":\"Açık adres 1. satır\",\"type\":\"string\"},\"address2\":{\"description\":\"Açık adres 2. satır\",\"type\":\"string\"},\"address3\":{\"description\":\"Açık adres 3. satır\",\"type\":\"string\"},\"categories\":{\"description\":\"Adres kategorileri. İş adresi, Ev adresi, Öncelikli adres\",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Açık adres ve lokasyon bilgilerini içeren tam adres\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"locationId\":{\"format\":\"int64\",\"description\":\"Adresin bağlı olduğu en dip lokasyon bilgisi. Ümraniye, Üsküdar vb.\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/FoundationDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem Başarılı" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/FoundationDTO\"}],\"definitions\":{\"FoundationDTO\":{\"title\":\"Root Type for FoundationDTO\",\"description\":\"Vakıf-Dernek veri modelidir.\",\"type\":\"object\",\"properties\":{\"addresses\":{\"$ref\":\"#/definitions/AddressCreateDTO\"},\"bolge\":{\"$ref\":\"#/definitions/BolgeLOV\"},\"contacts\":{\"$ref\":\"#/definitions/ContactInfoCreateDTO\"},\"id\":{\"format\":\"int32\",\"description\":\"Vakıf Dernek ID bilgisidir.\",\"type\":\"integer\"},\"mintika\":{\"$ref\":\"#/definitions/MintikaLOV\"},\"name\":{\"description\":\"Vakfın ismi.\",\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\": 1,\\n \\\"name\\\": \\\"some text\\\",\\n \\\"bolge\\\": {},\\n \\\"mintika\\\": {},\\n \\\"addresses\\\": {},\\n \\\"contacts\\\": {}\\n}\"]},\"MintikaLOV\":{\"title\":\"MintikaLOV\",\"description\":\"Mintika tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Mintika adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"ContactInfoCreateDTO\":{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"BolgeLOV\":{\"title\":\"BolgeLOV\",\"description\":\"Bolgeye ait tanimi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Bolge adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"AddressCreateDTO\":{\"title\":\"AddressCreateDTO\",\"description\":\" Kisi veya kurumun adres bilgisini olusturmak icin kullanılır.\\n Adrese ait lokasyon bilgisini içerisinde barındırır.\\n Lokasyon bilgisi önceden tanımlı olmalıdır. Lokasyon bilgisi alınırken lokasyon hierarşisinde kullanıcının seçtiği en altta kalan lokasyonun idsi yeterlidir.\\n Örneğin Türkiye - İstanbul - Ümraniye lokasyonu için sadece Ümraniyenin id sinin verilmesi yeterlidir.\",\"type\":\"object\",\"properties\":{\"address1\":{\"description\":\"Açık adres 1. satır\",\"type\":\"string\"},\"address2\":{\"description\":\"Açık adres 2. satır\",\"type\":\"string\"},\"address3\":{\"description\":\"Açık adres 3. satır\",\"type\":\"string\"},\"categories\":{\"description\":\"Adres kategorileri. İş adresi, Ev adresi, Öncelikli adres\",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Açık adres ve lokasyon bilgilerini içeren tam adres\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"locationId\":{\"format\":\"int64\",\"description\":\"Adresin bağlı olduğu en dip lokasyon bilgisi. Ümraniye, Üsküdar vb.\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/FoundationDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/FoundationDTO\"}],\"definitions\":{\"FoundationDTO\":{\"title\":\"Root Type for FoundationDTO\",\"description\":\"Vakıf-Dernek veri modelidir.\",\"type\":\"object\",\"properties\":{\"addresses\":{\"$ref\":\"#/definitions/AddressCreateDTO\"},\"bolge\":{\"$ref\":\"#/definitions/BolgeLOV\"},\"contacts\":{\"$ref\":\"#/definitions/ContactInfoCreateDTO\"},\"id\":{\"format\":\"int32\",\"description\":\"Vakıf Dernek ID bilgisidir.\",\"type\":\"integer\"},\"mintika\":{\"$ref\":\"#/definitions/MintikaLOV\"},\"name\":{\"description\":\"Vakfın ismi.\",\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\": 1,\\n \\\"name\\\": \\\"some text\\\",\\n \\\"bolge\\\": {},\\n \\\"mintika\\\": {},\\n \\\"addresses\\\": {},\\n \\\"contacts\\\": {}\\n}\"]},\"MintikaLOV\":{\"title\":\"MintikaLOV\",\"description\":\"Mintika tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Mintika adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"ContactInfoCreateDTO\":{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"BolgeLOV\":{\"title\":\"BolgeLOV\",\"description\":\"Bolgeye ait tanimi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Bolge adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"AddressCreateDTO\":{\"title\":\"AddressCreateDTO\",\"description\":\" Kisi veya kurumun adres bilgisini olusturmak icin kullanılır.\\n Adrese ait lokasyon bilgisini içerisinde barındırır.\\n Lokasyon bilgisi önceden tanımlı olmalıdır. Lokasyon bilgisi alınırken lokasyon hierarşisinde kullanıcının seçtiği en altta kalan lokasyonun idsi yeterlidir.\\n Örneğin Türkiye - İstanbul - Ümraniye lokasyonu için sadece Ümraniyenin id sinin verilmesi yeterlidir.\",\"type\":\"object\",\"properties\":{\"address1\":{\"description\":\"Açık adres 1. satır\",\"type\":\"string\"},\"address2\":{\"description\":\"Açık adres 2. satır\",\"type\":\"string\"},\"address3\":{\"description\":\"Açık adres 3. satır\",\"type\":\"string\"},\"categories\":{\"description\":\"Adres kategorileri. İş adresi, Ev adresi, Öncelikli adres\",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Açık adres ve lokasyon bilgilerini içeren tam adres\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"locationId\":{\"format\":\"int64\",\"description\":\"Adresin bağlı olduğu en dip lokasyon bilgisi. Ümraniye, Üsküdar vb.\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/FoundationDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/FoundationDTO\"}],\"definitions\":{\"FoundationDTO\":{\"title\":\"Root Type for FoundationDTO\",\"description\":\"Vakıf-Dernek veri modelidir.\",\"type\":\"object\",\"properties\":{\"addresses\":{\"$ref\":\"#/definitions/AddressCreateDTO\"},\"bolge\":{\"$ref\":\"#/definitions/BolgeLOV\"},\"contacts\":{\"$ref\":\"#/definitions/ContactInfoCreateDTO\"},\"id\":{\"format\":\"int32\",\"description\":\"Vakıf Dernek ID bilgisidir.\",\"type\":\"integer\"},\"mintika\":{\"$ref\":\"#/definitions/MintikaLOV\"},\"name\":{\"description\":\"Vakfın ismi.\",\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\": 1,\\n \\\"name\\\": \\\"some text\\\",\\n \\\"bolge\\\": {},\\n \\\"mintika\\\": {},\\n \\\"addresses\\\": {},\\n \\\"contacts\\\": {}\\n}\"]},\"MintikaLOV\":{\"title\":\"MintikaLOV\",\"description\":\"Mintika tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Mintika adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"ContactInfoCreateDTO\":{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"BolgeLOV\":{\"title\":\"BolgeLOV\",\"description\":\"Bolgeye ait tanimi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Bolge adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"AddressCreateDTO\":{\"title\":\"AddressCreateDTO\",\"description\":\" Kisi veya kurumun adres bilgisini olusturmak icin kullanılır.\\n Adrese ait lokasyon bilgisini içerisinde barındırır.\\n Lokasyon bilgisi önceden tanımlı olmalıdır. Lokasyon bilgisi alınırken lokasyon hierarşisinde kullanıcının seçtiği en altta kalan lokasyonun idsi yeterlidir.\\n Örneğin Türkiye - İstanbul - Ümraniye lokasyonu için sadece Ümraniyenin id sinin verilmesi yeterlidir.\",\"type\":\"object\",\"properties\":{\"address1\":{\"description\":\"Açık adres 1. satır\",\"type\":\"string\"},\"address2\":{\"description\":\"Açık adres 2. satır\",\"type\":\"string\"},\"address3\":{\"description\":\"Açık adres 3. satır\",\"type\":\"string\"},\"categories\":{\"description\":\"Adres kategorileri. İş adresi, Ev adresi, Öncelikli adres\",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Açık adres ve lokasyon bilgilerini içeren tam adres\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"locationId\":{\"format\":\"int64\",\"description\":\"Adresin bağlı olduğu en dip lokasyon bilgisi. Ümraniye, Üsküdar vb.\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/FoundationDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/FoundationDTO\"}],\"definitions\":{\"FoundationDTO\":{\"title\":\"Root Type for FoundationDTO\",\"description\":\"Vakıf-Dernek veri modelidir.\",\"type\":\"object\",\"properties\":{\"addresses\":{\"$ref\":\"#/definitions/AddressCreateDTO\"},\"bolge\":{\"$ref\":\"#/definitions/BolgeLOV\"},\"contacts\":{\"$ref\":\"#/definitions/ContactInfoCreateDTO\"},\"id\":{\"format\":\"int32\",\"description\":\"Vakıf Dernek ID bilgisidir.\",\"type\":\"integer\"},\"mintika\":{\"$ref\":\"#/definitions/MintikaLOV\"},\"name\":{\"description\":\"Vakfın ismi.\",\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\": 1,\\n \\\"name\\\": \\\"some text\\\",\\n \\\"bolge\\\": {},\\n \\\"mintika\\\": {},\\n \\\"addresses\\\": {},\\n \\\"contacts\\\": {}\\n}\"]},\"MintikaLOV\":{\"title\":\"MintikaLOV\",\"description\":\"Mintika tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Mintika adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"ContactInfoCreateDTO\":{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"BolgeLOV\":{\"title\":\"BolgeLOV\",\"description\":\"Bolgeye ait tanimi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Bolge adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"AddressCreateDTO\":{\"title\":\"AddressCreateDTO\",\"description\":\" Kisi veya kurumun adres bilgisini olusturmak icin kullanılır.\\n Adrese ait lokasyon bilgisini içerisinde barındırır.\\n Lokasyon bilgisi önceden tanımlı olmalıdır. Lokasyon bilgisi alınırken lokasyon hierarşisinde kullanıcının seçtiği en altta kalan lokasyonun idsi yeterlidir.\\n Örneğin Türkiye - İstanbul - Ümraniye lokasyonu için sadece Ümraniyenin id sinin verilmesi yeterlidir.\",\"type\":\"object\",\"properties\":{\"address1\":{\"description\":\"Açık adres 1. satır\",\"type\":\"string\"},\"address2\":{\"description\":\"Açık adres 2. satır\",\"type\":\"string\"},\"address3\":{\"description\":\"Açık adres 3. satır\",\"type\":\"string\"},\"categories\":{\"description\":\"Adres kategorileri. İş adresi, Ev adresi, Öncelikli adres\",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Açık adres ve lokasyon bilgilerini içeren tam adres\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"locationId\":{\"format\":\"int64\",\"description\":\"Adresin bağlı olduğu en dip lokasyon bilgisi. Ümraniye, Üsküdar vb.\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/FoundationDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/FoundationDTO\"}],\"definitions\":{\"FoundationDTO\":{\"title\":\"Root Type for FoundationDTO\",\"description\":\"Vakıf-Dernek veri modelidir.\",\"type\":\"object\",\"properties\":{\"addresses\":{\"$ref\":\"#/definitions/AddressCreateDTO\"},\"bolge\":{\"$ref\":\"#/definitions/BolgeLOV\"},\"contacts\":{\"$ref\":\"#/definitions/ContactInfoCreateDTO\"},\"id\":{\"format\":\"int32\",\"description\":\"Vakıf Dernek ID bilgisidir.\",\"type\":\"integer\"},\"mintika\":{\"$ref\":\"#/definitions/MintikaLOV\"},\"name\":{\"description\":\"Vakfın ismi.\",\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\": 1,\\n \\\"name\\\": \\\"some text\\\",\\n \\\"bolge\\\": {},\\n \\\"mintika\\\": {},\\n \\\"addresses\\\": {},\\n \\\"contacts\\\": {}\\n}\"]},\"MintikaLOV\":{\"title\":\"MintikaLOV\",\"description\":\"Mintika tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Mintika adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"ContactInfoCreateDTO\":{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"BolgeLOV\":{\"title\":\"BolgeLOV\",\"description\":\"Bolgeye ait tanimi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Bolge adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"AddressCreateDTO\":{\"title\":\"AddressCreateDTO\",\"description\":\" Kisi veya kurumun adres bilgisini olusturmak icin kullanılır.\\n Adrese ait lokasyon bilgisini içerisinde barındırır.\\n Lokasyon bilgisi önceden tanımlı olmalıdır. Lokasyon bilgisi alınırken lokasyon hierarşisinde kullanıcının seçtiği en altta kalan lokasyonun idsi yeterlidir.\\n Örneğin Türkiye - İstanbul - Ümraniye lokasyonu için sadece Ümraniyenin id sinin verilmesi yeterlidir.\",\"type\":\"object\",\"properties\":{\"address1\":{\"description\":\"Açık adres 1. satır\",\"type\":\"string\"},\"address2\":{\"description\":\"Açık adres 2. satır\",\"type\":\"string\"},\"address3\":{\"description\":\"Açık adres 3. satır\",\"type\":\"string\"},\"categories\":{\"description\":\"Adres kategorileri. İş adresi, Ev adresi, Öncelikli adres\",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Açık adres ve lokasyon bilgilerini içeren tam adres\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"locationId\":{\"format\":\"int64\",\"description\":\"Adresin bağlı olduğu en dip lokasyon bilgisi. Ümraniye, Üsküdar vb.\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/FoundationDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/FoundationDTO\"}],\"definitions\":{\"FoundationDTO\":{\"title\":\"Root Type for FoundationDTO\",\"description\":\"Vakıf-Dernek veri modelidir.\",\"type\":\"object\",\"properties\":{\"addresses\":{\"$ref\":\"#/definitions/AddressCreateDTO\"},\"bolge\":{\"$ref\":\"#/definitions/BolgeLOV\"},\"contacts\":{\"$ref\":\"#/definitions/ContactInfoCreateDTO\"},\"id\":{\"format\":\"int32\",\"description\":\"Vakıf Dernek ID bilgisidir.\",\"type\":\"integer\"},\"mintika\":{\"$ref\":\"#/definitions/MintikaLOV\"},\"name\":{\"description\":\"Vakfın ismi.\",\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\": 1,\\n \\\"name\\\": \\\"some text\\\",\\n \\\"bolge\\\": {},\\n \\\"mintika\\\": {},\\n \\\"addresses\\\": {},\\n \\\"contacts\\\": {}\\n}\"]},\"MintikaLOV\":{\"title\":\"MintikaLOV\",\"description\":\"Mintika tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Mintika adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"ContactInfoCreateDTO\":{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"BolgeLOV\":{\"title\":\"BolgeLOV\",\"description\":\"Bolgeye ait tanimi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Bolge adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"AddressCreateDTO\":{\"title\":\"AddressCreateDTO\",\"description\":\" Kisi veya kurumun adres bilgisini olusturmak icin kullanılır.\\n Adrese ait lokasyon bilgisini içerisinde barındırır.\\n Lokasyon bilgisi önceden tanımlı olmalıdır. Lokasyon bilgisi alınırken lokasyon hierarşisinde kullanıcının seçtiği en altta kalan lokasyonun idsi yeterlidir.\\n Örneğin Türkiye - İstanbul - Ümraniye lokasyonu için sadece Ümraniyenin id sinin verilmesi yeterlidir.\",\"type\":\"object\",\"properties\":{\"address1\":{\"description\":\"Açık adres 1. satır\",\"type\":\"string\"},\"address2\":{\"description\":\"Açık adres 2. satır\",\"type\":\"string\"},\"address3\":{\"description\":\"Açık adres 3. satır\",\"type\":\"string\"},\"categories\":{\"description\":\"Adres kategorileri. İş adresi, Ev adresi, Öncelikli adres\",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Açık adres ve lokasyon bilgilerini içeren tam adres\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"locationId\":{\"format\":\"int64\",\"description\":\"Adresin bağlı olduğu en dip lokasyon bilgisi. Ümraniye, Üsküdar vb.\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/FoundationDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz." + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Foundation ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + }, + "href": { + "element": "string", + "content": "/api/sbt/foundations/{id}" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Vakıf Güncelleme servisidir." + }, + "id": { + "element": "string", + "content": "updateFoundation" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Vakıf ID Bilgisidir." + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/FoundationDTO\"}],\"definitions\":{\"FoundationDTO\":{\"title\":\"Root Type for FoundationDTO\",\"description\":\"Vakıf-Dernek veri modelidir.\",\"type\":\"object\",\"properties\":{\"addresses\":{\"$ref\":\"#/definitions/AddressCreateDTO\"},\"bolge\":{\"$ref\":\"#/definitions/BolgeLOV\"},\"contacts\":{\"$ref\":\"#/definitions/ContactInfoCreateDTO\"},\"id\":{\"format\":\"int32\",\"description\":\"Vakıf Dernek ID bilgisidir.\",\"type\":\"integer\"},\"mintika\":{\"$ref\":\"#/definitions/MintikaLOV\"},\"name\":{\"description\":\"Vakfın ismi.\",\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\": 1,\\n \\\"name\\\": \\\"some text\\\",\\n \\\"bolge\\\": {},\\n \\\"mintika\\\": {},\\n \\\"addresses\\\": {},\\n \\\"contacts\\\": {}\\n}\"]},\"MintikaLOV\":{\"title\":\"MintikaLOV\",\"description\":\"Mintika tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Mintika adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"ContactInfoCreateDTO\":{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"BolgeLOV\":{\"title\":\"BolgeLOV\",\"description\":\"Bolgeye ait tanimi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Bolge adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"AddressCreateDTO\":{\"title\":\"AddressCreateDTO\",\"description\":\" Kisi veya kurumun adres bilgisini olusturmak icin kullanılır.\\n Adrese ait lokasyon bilgisini içerisinde barındırır.\\n Lokasyon bilgisi önceden tanımlı olmalıdır. Lokasyon bilgisi alınırken lokasyon hierarşisinde kullanıcının seçtiği en altta kalan lokasyonun idsi yeterlidir.\\n Örneğin Türkiye - İstanbul - Ümraniye lokasyonu için sadece Ümraniyenin id sinin verilmesi yeterlidir.\",\"type\":\"object\",\"properties\":{\"address1\":{\"description\":\"Açık adres 1. satır\",\"type\":\"string\"},\"address2\":{\"description\":\"Açık adres 2. satır\",\"type\":\"string\"},\"address3\":{\"description\":\"Açık adres 3. satır\",\"type\":\"string\"},\"categories\":{\"description\":\"Adres kategorileri. İş adresi, Ev adresi, Öncelikli adres\",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Açık adres ve lokasyon bilgilerini içeren tam adres\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"locationId\":{\"format\":\"int64\",\"description\":\"Adresin bağlı olduğu en dip lokasyon bilgisi. Ümraniye, Üsküdar vb.\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/FoundationDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "202" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem Başarılı" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/FoundationDTO\"}],\"definitions\":{\"FoundationDTO\":{\"title\":\"Root Type for FoundationDTO\",\"description\":\"Vakıf-Dernek veri modelidir.\",\"type\":\"object\",\"properties\":{\"addresses\":{\"$ref\":\"#/definitions/AddressCreateDTO\"},\"bolge\":{\"$ref\":\"#/definitions/BolgeLOV\"},\"contacts\":{\"$ref\":\"#/definitions/ContactInfoCreateDTO\"},\"id\":{\"format\":\"int32\",\"description\":\"Vakıf Dernek ID bilgisidir.\",\"type\":\"integer\"},\"mintika\":{\"$ref\":\"#/definitions/MintikaLOV\"},\"name\":{\"description\":\"Vakfın ismi.\",\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\": 1,\\n \\\"name\\\": \\\"some text\\\",\\n \\\"bolge\\\": {},\\n \\\"mintika\\\": {},\\n \\\"addresses\\\": {},\\n \\\"contacts\\\": {}\\n}\"]},\"MintikaLOV\":{\"title\":\"MintikaLOV\",\"description\":\"Mintika tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Mintika adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"ContactInfoCreateDTO\":{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"BolgeLOV\":{\"title\":\"BolgeLOV\",\"description\":\"Bolgeye ait tanimi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Bolge adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"AddressCreateDTO\":{\"title\":\"AddressCreateDTO\",\"description\":\" Kisi veya kurumun adres bilgisini olusturmak icin kullanılır.\\n Adrese ait lokasyon bilgisini içerisinde barındırır.\\n Lokasyon bilgisi önceden tanımlı olmalıdır. Lokasyon bilgisi alınırken lokasyon hierarşisinde kullanıcının seçtiği en altta kalan lokasyonun idsi yeterlidir.\\n Örneğin Türkiye - İstanbul - Ümraniye lokasyonu için sadece Ümraniyenin id sinin verilmesi yeterlidir.\",\"type\":\"object\",\"properties\":{\"address1\":{\"description\":\"Açık adres 1. satır\",\"type\":\"string\"},\"address2\":{\"description\":\"Açık adres 2. satır\",\"type\":\"string\"},\"address3\":{\"description\":\"Açık adres 3. satır\",\"type\":\"string\"},\"categories\":{\"description\":\"Adres kategorileri. İş adresi, Ev adresi, Öncelikli adres\",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Açık adres ve lokasyon bilgilerini içeren tam adres\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"locationId\":{\"format\":\"int64\",\"description\":\"Adresin bağlı olduğu en dip lokasyon bilgisi. Ümraniye, Üsküdar vb.\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/FoundationDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/FoundationDTO\"}],\"definitions\":{\"FoundationDTO\":{\"title\":\"Root Type for FoundationDTO\",\"description\":\"Vakıf-Dernek veri modelidir.\",\"type\":\"object\",\"properties\":{\"addresses\":{\"$ref\":\"#/definitions/AddressCreateDTO\"},\"bolge\":{\"$ref\":\"#/definitions/BolgeLOV\"},\"contacts\":{\"$ref\":\"#/definitions/ContactInfoCreateDTO\"},\"id\":{\"format\":\"int32\",\"description\":\"Vakıf Dernek ID bilgisidir.\",\"type\":\"integer\"},\"mintika\":{\"$ref\":\"#/definitions/MintikaLOV\"},\"name\":{\"description\":\"Vakfın ismi.\",\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\": 1,\\n \\\"name\\\": \\\"some text\\\",\\n \\\"bolge\\\": {},\\n \\\"mintika\\\": {},\\n \\\"addresses\\\": {},\\n \\\"contacts\\\": {}\\n}\"]},\"MintikaLOV\":{\"title\":\"MintikaLOV\",\"description\":\"Mintika tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Mintika adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"ContactInfoCreateDTO\":{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"BolgeLOV\":{\"title\":\"BolgeLOV\",\"description\":\"Bolgeye ait tanimi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Bolge adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"AddressCreateDTO\":{\"title\":\"AddressCreateDTO\",\"description\":\" Kisi veya kurumun adres bilgisini olusturmak icin kullanılır.\\n Adrese ait lokasyon bilgisini içerisinde barındırır.\\n Lokasyon bilgisi önceden tanımlı olmalıdır. Lokasyon bilgisi alınırken lokasyon hierarşisinde kullanıcının seçtiği en altta kalan lokasyonun idsi yeterlidir.\\n Örneğin Türkiye - İstanbul - Ümraniye lokasyonu için sadece Ümraniyenin id sinin verilmesi yeterlidir.\",\"type\":\"object\",\"properties\":{\"address1\":{\"description\":\"Açık adres 1. satır\",\"type\":\"string\"},\"address2\":{\"description\":\"Açık adres 2. satır\",\"type\":\"string\"},\"address3\":{\"description\":\"Açık adres 3. satır\",\"type\":\"string\"},\"categories\":{\"description\":\"Adres kategorileri. İş adresi, Ev adresi, Öncelikli adres\",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Açık adres ve lokasyon bilgilerini içeren tam adres\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"locationId\":{\"format\":\"int64\",\"description\":\"Adresin bağlı olduğu en dip lokasyon bilgisi. Ümraniye, Üsküdar vb.\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/FoundationDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/FoundationDTO\"}],\"definitions\":{\"FoundationDTO\":{\"title\":\"Root Type for FoundationDTO\",\"description\":\"Vakıf-Dernek veri modelidir.\",\"type\":\"object\",\"properties\":{\"addresses\":{\"$ref\":\"#/definitions/AddressCreateDTO\"},\"bolge\":{\"$ref\":\"#/definitions/BolgeLOV\"},\"contacts\":{\"$ref\":\"#/definitions/ContactInfoCreateDTO\"},\"id\":{\"format\":\"int32\",\"description\":\"Vakıf Dernek ID bilgisidir.\",\"type\":\"integer\"},\"mintika\":{\"$ref\":\"#/definitions/MintikaLOV\"},\"name\":{\"description\":\"Vakfın ismi.\",\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\": 1,\\n \\\"name\\\": \\\"some text\\\",\\n \\\"bolge\\\": {},\\n \\\"mintika\\\": {},\\n \\\"addresses\\\": {},\\n \\\"contacts\\\": {}\\n}\"]},\"MintikaLOV\":{\"title\":\"MintikaLOV\",\"description\":\"Mintika tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Mintika adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"ContactInfoCreateDTO\":{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"BolgeLOV\":{\"title\":\"BolgeLOV\",\"description\":\"Bolgeye ait tanimi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Bolge adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"AddressCreateDTO\":{\"title\":\"AddressCreateDTO\",\"description\":\" Kisi veya kurumun adres bilgisini olusturmak icin kullanılır.\\n Adrese ait lokasyon bilgisini içerisinde barındırır.\\n Lokasyon bilgisi önceden tanımlı olmalıdır. Lokasyon bilgisi alınırken lokasyon hierarşisinde kullanıcının seçtiği en altta kalan lokasyonun idsi yeterlidir.\\n Örneğin Türkiye - İstanbul - Ümraniye lokasyonu için sadece Ümraniyenin id sinin verilmesi yeterlidir.\",\"type\":\"object\",\"properties\":{\"address1\":{\"description\":\"Açık adres 1. satır\",\"type\":\"string\"},\"address2\":{\"description\":\"Açık adres 2. satır\",\"type\":\"string\"},\"address3\":{\"description\":\"Açık adres 3. satır\",\"type\":\"string\"},\"categories\":{\"description\":\"Adres kategorileri. İş adresi, Ev adresi, Öncelikli adres\",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Açık adres ve lokasyon bilgilerini içeren tam adres\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"locationId\":{\"format\":\"int64\",\"description\":\"Adresin bağlı olduğu en dip lokasyon bilgisi. Ümraniye, Üsküdar vb.\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/FoundationDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/FoundationDTO\"}],\"definitions\":{\"FoundationDTO\":{\"title\":\"Root Type for FoundationDTO\",\"description\":\"Vakıf-Dernek veri modelidir.\",\"type\":\"object\",\"properties\":{\"addresses\":{\"$ref\":\"#/definitions/AddressCreateDTO\"},\"bolge\":{\"$ref\":\"#/definitions/BolgeLOV\"},\"contacts\":{\"$ref\":\"#/definitions/ContactInfoCreateDTO\"},\"id\":{\"format\":\"int32\",\"description\":\"Vakıf Dernek ID bilgisidir.\",\"type\":\"integer\"},\"mintika\":{\"$ref\":\"#/definitions/MintikaLOV\"},\"name\":{\"description\":\"Vakfın ismi.\",\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\": 1,\\n \\\"name\\\": \\\"some text\\\",\\n \\\"bolge\\\": {},\\n \\\"mintika\\\": {},\\n \\\"addresses\\\": {},\\n \\\"contacts\\\": {}\\n}\"]},\"MintikaLOV\":{\"title\":\"MintikaLOV\",\"description\":\"Mintika tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Mintika adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"ContactInfoCreateDTO\":{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"BolgeLOV\":{\"title\":\"BolgeLOV\",\"description\":\"Bolgeye ait tanimi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Bolge adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"AddressCreateDTO\":{\"title\":\"AddressCreateDTO\",\"description\":\" Kisi veya kurumun adres bilgisini olusturmak icin kullanılır.\\n Adrese ait lokasyon bilgisini içerisinde barındırır.\\n Lokasyon bilgisi önceden tanımlı olmalıdır. Lokasyon bilgisi alınırken lokasyon hierarşisinde kullanıcının seçtiği en altta kalan lokasyonun idsi yeterlidir.\\n Örneğin Türkiye - İstanbul - Ümraniye lokasyonu için sadece Ümraniyenin id sinin verilmesi yeterlidir.\",\"type\":\"object\",\"properties\":{\"address1\":{\"description\":\"Açık adres 1. satır\",\"type\":\"string\"},\"address2\":{\"description\":\"Açık adres 2. satır\",\"type\":\"string\"},\"address3\":{\"description\":\"Açık adres 3. satır\",\"type\":\"string\"},\"categories\":{\"description\":\"Adres kategorileri. İş adresi, Ev adresi, Öncelikli adres\",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Açık adres ve lokasyon bilgilerini içeren tam adres\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"locationId\":{\"format\":\"int64\",\"description\":\"Adresin bağlı olduğu en dip lokasyon bilgisi. Ümraniye, Üsküdar vb.\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/FoundationDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/FoundationDTO\"}],\"definitions\":{\"FoundationDTO\":{\"title\":\"Root Type for FoundationDTO\",\"description\":\"Vakıf-Dernek veri modelidir.\",\"type\":\"object\",\"properties\":{\"addresses\":{\"$ref\":\"#/definitions/AddressCreateDTO\"},\"bolge\":{\"$ref\":\"#/definitions/BolgeLOV\"},\"contacts\":{\"$ref\":\"#/definitions/ContactInfoCreateDTO\"},\"id\":{\"format\":\"int32\",\"description\":\"Vakıf Dernek ID bilgisidir.\",\"type\":\"integer\"},\"mintika\":{\"$ref\":\"#/definitions/MintikaLOV\"},\"name\":{\"description\":\"Vakfın ismi.\",\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\": 1,\\n \\\"name\\\": \\\"some text\\\",\\n \\\"bolge\\\": {},\\n \\\"mintika\\\": {},\\n \\\"addresses\\\": {},\\n \\\"contacts\\\": {}\\n}\"]},\"MintikaLOV\":{\"title\":\"MintikaLOV\",\"description\":\"Mintika tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Mintika adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"ContactInfoCreateDTO\":{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"BolgeLOV\":{\"title\":\"BolgeLOV\",\"description\":\"Bolgeye ait tanimi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Bolge adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"AddressCreateDTO\":{\"title\":\"AddressCreateDTO\",\"description\":\" Kisi veya kurumun adres bilgisini olusturmak icin kullanılır.\\n Adrese ait lokasyon bilgisini içerisinde barındırır.\\n Lokasyon bilgisi önceden tanımlı olmalıdır. Lokasyon bilgisi alınırken lokasyon hierarşisinde kullanıcının seçtiği en altta kalan lokasyonun idsi yeterlidir.\\n Örneğin Türkiye - İstanbul - Ümraniye lokasyonu için sadece Ümraniyenin id sinin verilmesi yeterlidir.\",\"type\":\"object\",\"properties\":{\"address1\":{\"description\":\"Açık adres 1. satır\",\"type\":\"string\"},\"address2\":{\"description\":\"Açık adres 2. satır\",\"type\":\"string\"},\"address3\":{\"description\":\"Açık adres 3. satır\",\"type\":\"string\"},\"categories\":{\"description\":\"Adres kategorileri. İş adresi, Ev adresi, Öncelikli adres\",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Açık adres ve lokasyon bilgilerini içeren tam adres\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"locationId\":{\"format\":\"int64\",\"description\":\"Adresin bağlı olduğu en dip lokasyon bilgisi. Ümraniye, Üsküdar vb.\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/FoundationDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/FoundationDTO\"}],\"definitions\":{\"FoundationDTO\":{\"title\":\"Root Type for FoundationDTO\",\"description\":\"Vakıf-Dernek veri modelidir.\",\"type\":\"object\",\"properties\":{\"addresses\":{\"$ref\":\"#/definitions/AddressCreateDTO\"},\"bolge\":{\"$ref\":\"#/definitions/BolgeLOV\"},\"contacts\":{\"$ref\":\"#/definitions/ContactInfoCreateDTO\"},\"id\":{\"format\":\"int32\",\"description\":\"Vakıf Dernek ID bilgisidir.\",\"type\":\"integer\"},\"mintika\":{\"$ref\":\"#/definitions/MintikaLOV\"},\"name\":{\"description\":\"Vakfın ismi.\",\"type\":\"string\"}},\"examples\":[\"{\\n \\\"id\\\": 1,\\n \\\"name\\\": \\\"some text\\\",\\n \\\"bolge\\\": {},\\n \\\"mintika\\\": {},\\n \\\"addresses\\\": {},\\n \\\"contacts\\\": {}\\n}\"]},\"MintikaLOV\":{\"title\":\"MintikaLOV\",\"description\":\"Mintika tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Mintika adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"ContactInfoCreateDTO\":{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"BolgeLOV\":{\"title\":\"BolgeLOV\",\"description\":\"Bolgeye ait tanimi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Bolge adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"AddressCreateDTO\":{\"title\":\"AddressCreateDTO\",\"description\":\" Kisi veya kurumun adres bilgisini olusturmak icin kullanılır.\\n Adrese ait lokasyon bilgisini içerisinde barındırır.\\n Lokasyon bilgisi önceden tanımlı olmalıdır. Lokasyon bilgisi alınırken lokasyon hierarşisinde kullanıcının seçtiği en altta kalan lokasyonun idsi yeterlidir.\\n Örneğin Türkiye - İstanbul - Ümraniye lokasyonu için sadece Ümraniyenin id sinin verilmesi yeterlidir.\",\"type\":\"object\",\"properties\":{\"address1\":{\"description\":\"Açık adres 1. satır\",\"type\":\"string\"},\"address2\":{\"description\":\"Açık adres 2. satır\",\"type\":\"string\"},\"address3\":{\"description\":\"Açık adres 3. satır\",\"type\":\"string\"},\"categories\":{\"description\":\"Adres kategorileri. İş adresi, Ev adresi, Öncelikli adres\",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Açık adres ve lokasyon bilgilerini içeren tam adres\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"locationId\":{\"format\":\"int64\",\"description\":\"Adresin bağlı olduğu en dip lokasyon bilgisi. Ümraniye, Üsküdar vb.\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/FoundationDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz." + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Vakıf silmek için kullanılır" + }, + "id": { + "element": "string", + "content": "deleteFoundation" + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "204" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz." + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Kurum ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + }, + "href": { + "element": "string", + "content": "/api/sbt/corporations/{id}/documents" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Kuruma ait belgeler servisi" + }, + "id": { + "element": "string", + "content": "getAllCorporationDocuments" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Kurum ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Kuruma ait belgeler servisi" + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/DocumentDTO\"},\"definitions\":{\"DocumentDTO\":{\"title\":\"DocumentDTO\",\"description\":\"Evrağın bilgilerini tutar. Kişi veya kuruma ait evrak bilgileridir.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Aciklama\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"type\":{\"$ref\":\"#/definitions/DocumentTypeLOV\"},\"validityEndDate\":{\"format\":\"date-time\",\"description\":\"Gecerlilik suresi bitis tarihi\",\"type\":\"string\"},\"validityStartDate\":{\"format\":\"date-time\",\"description\":\"Gecerlilik suresi baslangic tarihi\",\"type\":\"string\"}}},\"DocumentTypeLOV\":{\"title\":\"DocumentTypeLOV\",\"description\":\"Dökümanların tiplerinin tutulduğu yerdir. Örneğin : Transkript, öğrenci belgesi, ehliyet fotokopisi, İskan, KatPlanı, Ruhsat, Resim, Vergi levhası vs.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/DocumentDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz." + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Kuruma doküman ekleme servisidir." + }, + "id": { + "element": "string", + "content": "createCorporationDocument" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Kurum ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Kuruma doküman ekleme servisidir." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + }, + "content": "--BOUNDARY\r\nContent-Disposition: form-data; name=\"documentTypeId\"\r\n\r\n44933090\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"validityEndDate\"\r\n\r\nfugiat proident\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"validityStartDate\"\r\n\r\nlabo\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"document\"\r\n\r\ndo nulla incididunt laboris\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"description\"\r\n\r\ndolore exe\r\n\r\n--BOUNDARY--\r\n" + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman açıklaması" + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman tipi. Ikametgah, öğrenci belgesi vb." + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "documentTypeId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman geçerlilik süresi bitişi" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityEndDate" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman geçerlilik süresi başlangıcı" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityStartDate" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Yeni eklenen döküman dosyası" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "document" + }, + "value": { + "element": "string" + } + } + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/DocumentDTO\"}],\"definitions\":{\"DocumentDTO\":{\"title\":\"DocumentDTO\",\"description\":\"Evrağın bilgilerini tutar. Kişi veya kuruma ait evrak bilgileridir.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Aciklama\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"type\":{\"$ref\":\"#/definitions/DocumentTypeLOV\"},\"validityEndDate\":{\"format\":\"date-time\",\"description\":\"Gecerlilik suresi bitis tarihi\",\"type\":\"string\"},\"validityStartDate\":{\"format\":\"date-time\",\"description\":\"Gecerlilik suresi baslangic tarihi\",\"type\":\"string\"}}},\"DocumentTypeLOV\":{\"title\":\"DocumentTypeLOV\",\"description\":\"Dökümanların tiplerinin tutulduğu yerdir. Örneğin : Transkript, öğrenci belgesi, ehliyet fotokopisi, İskan, KatPlanı, Ruhsat, Resim, Vergi levhası vs.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/DocumentDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + }, + "content": "--BOUNDARY\r\nContent-Disposition: form-data; name=\"documentTypeId\"\r\n\r\n-59735864\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"validityEndDate\"\r\n\r\nin elit\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"validityStartDate\"\r\n\r\nipsum irure ex aute\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"document\"\r\n\r\nLorem\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"description\"\r\n\r\ncillum incididunt commodo aliquip sit\r\n\r\n--BOUNDARY--\r\n" + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman açıklaması" + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman tipi. Ikametgah, öğrenci belgesi vb." + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "documentTypeId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman geçerlilik süresi bitişi" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityEndDate" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman geçerlilik süresi başlangıcı" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityStartDate" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Yeni eklenen döküman dosyası" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "document" + }, + "value": { + "element": "string" + } + } + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + }, + "content": "--BOUNDARY\r\nContent-Disposition: form-data; name=\"documentTypeId\"\r\n\r\n73048758\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"validityEndDate\"\r\n\r\nLorem dolor\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"validityStartDate\"\r\n\r\nsint commodo officia est\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"document\"\r\n\r\nsit cillum eiusmod elit dolor\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"description\"\r\n\r\ncommodo occaecat\r\n\r\n--BOUNDARY--\r\n" + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman açıklaması" + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman tipi. Ikametgah, öğrenci belgesi vb." + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "documentTypeId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman geçerlilik süresi bitişi" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityEndDate" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman geçerlilik süresi başlangıcı" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityStartDate" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Yeni eklenen döküman dosyası" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "document" + }, + "value": { + "element": "string" + } + } + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + }, + "content": "--BOUNDARY\r\nContent-Disposition: form-data; name=\"documentTypeId\"\r\n\r\n60790402\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"validityEndDate\"\r\n\r\ndolor aliquip cupida\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"validityStartDate\"\r\n\r\ndolor\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"document\"\r\n\r\nullamco\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"description\"\r\n\r\ndo aute velit Duis consectetur\r\n\r\n--BOUNDARY--\r\n" + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman açıklaması" + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman tipi. Ikametgah, öğrenci belgesi vb." + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "documentTypeId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman geçerlilik süresi bitişi" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityEndDate" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman geçerlilik süresi başlangıcı" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityStartDate" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Yeni eklenen döküman dosyası" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "document" + }, + "value": { + "element": "string" + } + } + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + }, + "content": "--BOUNDARY\r\nContent-Disposition: form-data; name=\"documentTypeId\"\r\n\r\n-43092452\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"validityEndDate\"\r\n\r\nut laborum\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"validityStartDate\"\r\n\r\nconsequat sunt id labore in\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"document\"\r\n\r\naliqua labore\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"description\"\r\n\r\ncillum et ad laborum quis\r\n\r\n--BOUNDARY--\r\n" + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman açıklaması" + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman tipi. Ikametgah, öğrenci belgesi vb." + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "documentTypeId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman geçerlilik süresi bitişi" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityEndDate" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman geçerlilik süresi başlangıcı" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityStartDate" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Yeni eklenen döküman dosyası" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "document" + }, + "value": { + "element": "string" + } + } + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + }, + "content": "--BOUNDARY\r\nContent-Disposition: form-data; name=\"documentTypeId\"\r\n\r\n-89379572\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"validityEndDate\"\r\n\r\naliquip consequat incididunt fugiat\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"validityStartDate\"\r\n\r\nin Lorem velit cillum qui\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"document\"\r\n\r\ncupidatat nulla Lorem\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"description\"\r\n\r\nveniam dolor qui dolor\r\n\r\n--BOUNDARY--\r\n" + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman açıklaması" + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman tipi. Ikametgah, öğrenci belgesi vb." + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "documentTypeId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman geçerlilik süresi bitişi" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityEndDate" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman geçerlilik süresi başlangıcı" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityStartDate" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Yeni eklenen döküman dosyası" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "document" + }, + "value": { + "element": "string" + } + } + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz." + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Kurum ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "documentId" + }, + "value": { + "element": "number" + } + } + } + ] + }, + "href": { + "element": "string", + "content": "/api/sbt/corporations/{id}/documents/{documentId}" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Kuruma ait belgenin Bilgilerinin güncellenmesi" + }, + "id": { + "element": "string", + "content": "updateCorporationDocument" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "documentId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Kurum ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Kuruma ait belgenin Bilgilerinin güncellenmesi" + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + }, + "content": "--BOUNDARY\r\nContent-Disposition: form-data; name=\"documentTypeId\"\r\n\r\n-38224682\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"validityEndDate\"\r\n\r\nad\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"validityStartDate\"\r\n\r\nculpa\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"document\"\r\n\r\nofficia\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"description\"\r\n\r\nmagna quis\r\n\r\n--BOUNDARY--\r\n" + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman açıklaması" + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman tipi. Ikametgah, öğrenci belgesi vb." + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "documentTypeId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman geçerlilik süresi bitişi" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityEndDate" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman geçerlilik süresi başlangıcı" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityStartDate" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Yeni eklenen döküman dosyası" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "document" + }, + "value": { + "element": "string" + } + } + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "202" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/DocumentDTO\"}],\"definitions\":{\"DocumentDTO\":{\"title\":\"DocumentDTO\",\"description\":\"Evrağın bilgilerini tutar. Kişi veya kuruma ait evrak bilgileridir.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Aciklama\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"type\":{\"$ref\":\"#/definitions/DocumentTypeLOV\"},\"validityEndDate\":{\"format\":\"date-time\",\"description\":\"Gecerlilik suresi bitis tarihi\",\"type\":\"string\"},\"validityStartDate\":{\"format\":\"date-time\",\"description\":\"Gecerlilik suresi baslangic tarihi\",\"type\":\"string\"}}},\"DocumentTypeLOV\":{\"title\":\"DocumentTypeLOV\",\"description\":\"Dökümanların tiplerinin tutulduğu yerdir. Örneğin : Transkript, öğrenci belgesi, ehliyet fotokopisi, İskan, KatPlanı, Ruhsat, Resim, Vergi levhası vs.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/DocumentDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + }, + "content": "--BOUNDARY\r\nContent-Disposition: form-data; name=\"documentTypeId\"\r\n\r\n-88387386\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"validityEndDate\"\r\n\r\nexercitation ut consectetur aliqua cupidatat\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"validityStartDate\"\r\n\r\nest culpa\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"document\"\r\n\r\nsit dolore sunt dolor\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"description\"\r\n\r\naliqua dolore aute incididunt\r\n\r\n--BOUNDARY--\r\n" + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman açıklaması" + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman tipi. Ikametgah, öğrenci belgesi vb." + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "documentTypeId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman geçerlilik süresi bitişi" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityEndDate" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman geçerlilik süresi başlangıcı" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityStartDate" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Yeni eklenen döküman dosyası" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "document" + }, + "value": { + "element": "string" + } + } + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + }, + "content": "--BOUNDARY\r\nContent-Disposition: form-data; name=\"documentTypeId\"\r\n\r\n65630294\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"validityEndDate\"\r\n\r\ntempor\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"validityStartDate\"\r\n\r\nenim\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"document\"\r\n\r\ndes\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"description\"\r\n\r\nveniam\r\n\r\n--BOUNDARY--\r\n" + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman açıklaması" + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman tipi. Ikametgah, öğrenci belgesi vb." + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "documentTypeId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman geçerlilik süresi bitişi" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityEndDate" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman geçerlilik süresi başlangıcı" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityStartDate" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Yeni eklenen döküman dosyası" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "document" + }, + "value": { + "element": "string" + } + } + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + }, + "content": "--BOUNDARY\r\nContent-Disposition: form-data; name=\"documentTypeId\"\r\n\r\n-58869593\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"validityEndDate\"\r\n\r\nest Ut\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"validityStartDate\"\r\n\r\nmagna sint\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"document\"\r\n\r\nvoluptate quis\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"description\"\r\n\r\nmollit aute tempor occaecat\r\n\r\n--BOUNDARY--\r\n" + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman açıklaması" + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman tipi. Ikametgah, öğrenci belgesi vb." + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "documentTypeId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman geçerlilik süresi bitişi" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityEndDate" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman geçerlilik süresi başlangıcı" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityStartDate" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Yeni eklenen döküman dosyası" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "document" + }, + "value": { + "element": "string" + } + } + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + }, + "content": "--BOUNDARY\r\nContent-Disposition: form-data; name=\"documentTypeId\"\r\n\r\n-20151727\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"validityEndDate\"\r\n\r\nanim enim exercitation\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"validityStartDate\"\r\n\r\naliquip enim in Ut in\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"document\"\r\n\r\nvelit\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"description\"\r\n\r\nelit pariatur eiusmod amet\r\n\r\n--BOUNDARY--\r\n" + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman açıklaması" + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman tipi. Ikametgah, öğrenci belgesi vb." + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "documentTypeId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman geçerlilik süresi bitişi" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityEndDate" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman geçerlilik süresi başlangıcı" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityStartDate" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Yeni eklenen döküman dosyası" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "document" + }, + "value": { + "element": "string" + } + } + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + }, + "content": "--BOUNDARY\r\nContent-Disposition: form-data; name=\"documentTypeId\"\r\n\r\n5144418\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"validityEndDate\"\r\n\r\nullamco consectetu\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"validityStartDate\"\r\n\r\nveniam consectetur\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"document\"\r\n\r\nea dolore aute\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"description\"\r\n\r\nofficia consequat\r\n\r\n--BOUNDARY--\r\n" + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman açıklaması" + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman tipi. Ikametgah, öğrenci belgesi vb." + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "documentTypeId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman geçerlilik süresi bitişi" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityEndDate" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman geçerlilik süresi başlangıcı" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityStartDate" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Yeni eklenen döküman dosyası" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "document" + }, + "value": { + "element": "string" + } + } + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz." + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Kuruma ait belge silme servisi" + }, + "id": { + "element": "string", + "content": "deleteCorporationDocument" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "documentId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Kurum ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Kuruma ait belge silme servisi" + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "204" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz." + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/corporations/list/excel" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Personel Listesini excel'e almak için kullanılır." + }, + "id": { + "element": "string", + "content": "getAllTeacherListExcel" + } + }, + "content": [ + { + "element": "copy", + "content": "Personel Listesini excel'e almak için kullanılır." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "İndirilecek Data" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"string\"}" + }, + { + "element": "dataStructure", + "content": { + "element": "string" + } + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "category", + "meta": { + "title": { + "element": "string", + "content": "student-resource" + }, + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "resourceGroup" + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Student Resource" + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/students" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "List All StudentListDTO" + }, + "id": { + "element": "string", + "content": "getAllStudentListDTOS" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/students{?age%2eequals,age%2egreaterOrEqualThan,age%2egreaterThan,age%2ein*,age%2elessOrEqualThan,age%2elessThan,age%2especified,bolgeId%2eequals,bolgeId%2egreaterOrEqualThan,bolgeId%2egreaterThan,bolgeId%2ein*,bolgeId%2elessOrEqualThan,bolgeId%2elessThan,bolgeId%2especified,gender%2eequals,gender%2ein*,gender%2especified,mintikaId%2eequals,mintikaId%2egreaterOrEqualThan,mintikaId%2egreaterThan,mintikaId%2ein*,mintikaId%2elessOrEqualThan,mintikaId%2elessThan,mintikaId%2especified,page,size,sort*,textSearch%2econtains,textSearch%2eequals,textSearch%2ein*,textSearch%2especified}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "age.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "age.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "age.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "age.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "age.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "age.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "age.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "bolgeId.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "bolgeId.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "bolgeId.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "bolgeId.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "bolgeId.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "bolgeId.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "bolgeId.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "gender.equals" + }, + "value": { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MAN" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "WOMAN" + } + ] + } + } + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "gender.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MAN" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "WOMAN" + } + ] + } + } + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "gender.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "mintikaId.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "mintikaId.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "mintikaId.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "mintikaId.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "mintikaId.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "mintikaId.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "mintikaId.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Page number of the requested page" + } + }, + "content": { + "key": { + "element": "string", + "content": "page" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Size of a page" + } + }, + "content": { + "key": { + "element": "string", + "content": "size" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported." + } + }, + "content": { + "key": { + "element": "string", + "content": "sort" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "textSearch.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "textSearch.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "textSearch.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "textSearch.specified" + }, + "value": { + "element": "boolean" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Gets a list of all `StudentListDTO` entities." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "Successful response - returns an array of `StudentListDTO` entities." + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/StudentListDTO\"},\"definitions\":{\"StudentListDTO\":{\"title\":\"StudentListDTO\",\"description\":\"Talebenin listeleme işlemlerine ait verilerini tutar\",\"type\":\"object\",\"properties\":{\"birthDate\":{\"format\":\"date-time\",\"description\":\"Dogum Tarihi\",\"type\":\"string\"},\"citizenNumber\":{\"description\":\"Vatandaslik Numarasi\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adi\",\"type\":\"string\"},\"formalEducationGradeName\":{\"description\":\"Eğitim seviyesi idsi\",\"type\":\"string\"},\"genderName\":{\"description\":\"Cinsiyeti\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"internalEducationGradeName\":{\"description\":\"Dahili ders seviyesi\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadi\",\"type\":\"string\"},\"organizationLevel\":{\"$ref\":\"#/definitions/OrganizationLevelDTO\"}}},\"OrganizationLevelDTO\":{\"title\":\"OrganizationLevelDTO\",\"description\":\"Tüzel veya gerçek kişilerin organizasyon ağacındaki hierarşisini taşır.\",\"type\":\"object\",\"properties\":{\"bolge\":{\"$ref\":\"#/definitions/BolgeLOV\"},\"corporation\":{\"$ref\":\"#/definitions/CorporationLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"mintika\":{\"$ref\":\"#/definitions/MintikaLOV\"}}},\"MintikaLOV\":{\"title\":\"MintikaLOV\",\"description\":\"Mintika tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Mintika adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"CorporationLOV\":{\"title\":\"CorporationLOV\",\"description\":\"Kurum tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Kurum adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"BolgeLOV\":{\"title\":\"BolgeLOV\",\"description\":\"Bolgeye ait tanimi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Bolge adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/StudentListDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz." + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Create a StudentCreateDTO" + }, + "id": { + "element": "string", + "content": "createStudentCreateDTO" + } + }, + "content": [ + { + "element": "copy", + "content": "Creates a new instance of a `StudentCreateDTO`." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"birthDate\": \"1946-03-21T17:36:52.120Z\",\n \"citizenNumber\": \"ut sunt tempor ex\",\n \"citizenshipId\": -9337549,\n \"corporationId\": -56333121,\n \"createNote\": \"amet aliquip in\",\n \"createdBy\": \"quis Excepteur laboris\",\n \"createdDate\": \"1975-10-04T10:10:09.790Z\",\n \"firstName\": \"eiusmod\",\n \"formalEducationGradeId\": 70634495,\n \"genderId\": 75200127,\n \"guardians\": [],\n \"internalEducationGradeId\": -55584856,\n \"lastModifiedBy\": \"deserunt Duis in adipisicing\",\n \"lastModifiedDate\": \"1960-07-31T19:44:53.821Z\",\n \"lastName\": \"laboris ea adipisicing magna pariatur\",\n \"mobilePhoneNumber\": \"non dolore ea aute m\",\n \"studentClassificationId\": -12334897\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/StudentCreateDTO\"}],\"definitions\":{\"StudentCreateDTO\":{\"title\":\"StudentCreateDTO\",\"description\":\"Talebe oluşturmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"birthDate\":{\"format\":\"date-time\",\"description\":\"Dogum Tarihi\",\"type\":\"string\"},\"citizenNumber\":{\"description\":\"Vatandaslik numarasi\",\"type\":\"string\"},\"citizenshipId\":{\"format\":\"int64\",\"description\":\"Kimlik sahibi olduğu ülke\",\"type\":\"integer\"},\"corporationId\":{\"format\":\"int64\",\"description\":\"Talebenin resmi kayıtlı olduğu ve kaldığı Kurum bilgisi\",\"type\":\"integer\"},\"createNote\":{\"description\":\"Oluşturma esnasında verilebilecek serbest açıklama alanı.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adi\",\"type\":\"string\"},\"formalEducationGradeId\":{\"format\":\"int64\",\"description\":\"Orgun egitim sinif(seviye) idsi\",\"type\":\"integer\"},\"genderId\":{\"format\":\"int64\",\"description\":\"Cinsiyeti\",\"type\":\"integer\"},\"guardians\":{\"description\":\"Veli bilgileri\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/StudentGuardianCreateDTO\"}},\"internalEducationGradeId\":{\"format\":\"int64\",\"description\":\"Dahili egitim seviye idsi\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadi\",\"type\":\"string\"},\"mobilePhoneNumber\":{\"description\":\"Cep telefonu numarasi\",\"type\":\"string\"},\"studentClassificationId\":{\"format\":\"int64\",\"description\":\"Talebe nevisi idsi\",\"type\":\"integer\"}}},\"StudentGuardianCreateDTO\":{\"title\":\"StudentGuardianCreateDTO\",\"description\":\"Talebe velisi oluşturmak için kullanılır.\",\"required\":[\"adherenceId\",\"identification\"],\"type\":\"object\",\"properties\":{\"addresses\":{\"description\":\"Velinin adres bilgisleri. Ev adresi, iş adresi.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/AddressCreateDTO\"}},\"adherenceId\":{\"format\":\"int64\",\"description\":\"Velinin merbutiyet bilgisi. Ihvan mı, muhibban mı, diger mi oldugunu gosterir.\",\"type\":\"integer\"},\"contacts\":{\"description\":\"Velinin iletişim bilgileri. Telefon, email vb.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactInfoCreateDTO\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"identification\":{\"$ref\":\"#/definitions/IdentificationInfoDTO\"},\"isPrimary\":{\"description\":\"Talebe velileri arasinda muhattap olarak alinacak birincil veli isareti.\",\"type\":\"boolean\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"professionId\":{\"format\":\"int64\",\"description\":\"Velinin meslek bilgisi\",\"type\":\"integer\"},\"typeId\":{\"format\":\"int64\",\"description\":\"Velinin Yakınlık Bilgisi. Anne, Baba Amca vs....\",\"type\":\"integer\"}}},\"IdentificationInfoDTO\":{\"title\":\"IdentificationInfoDTO\",\"description\":\"Kisiye ait kimlik bilgilerini tutar.\",\"type\":\"object\",\"properties\":{\"birthDate\":{\"format\":\"date-time\",\"description\":\"Dogum Tarihi\",\"type\":\"string\"},\"birthPlaceName\":{\"description\":\"Dogum Yeri adi\",\"type\":\"string\"},\"citizenNumber\":{\"description\":\"Vatandaslik numarasi\",\"type\":\"string\"},\"citizenshipId\":{\"$ref\":\"#/definitions/CitizenshipLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adi\",\"type\":\"string\"},\"gender\":{\"$ref\":\"#/definitions/GenderLOV\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadi\",\"type\":\"string\"}}},\"GenderLOV\":{\"title\":\"GenderLOV\",\"description\":\"Cinsiyet tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Cinsiyet adi\",\"type\":\"string\"}}},\"CitizenshipLOV\":{\"title\":\"CitizenshipLOV\",\"description\":\"Vatandaşlık bilgilerini taşır\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Vatan adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"ContactInfoCreateDTO\":{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"AddressCreateDTO\":{\"title\":\"AddressCreateDTO\",\"description\":\" Kisi veya kurumun adres bilgisini olusturmak icin kullanılır.\\n Adrese ait lokasyon bilgisini içerisinde barındırır.\\n Lokasyon bilgisi önceden tanımlı olmalıdır. Lokasyon bilgisi alınırken lokasyon hierarşisinde kullanıcının seçtiği en altta kalan lokasyonun idsi yeterlidir.\\n Örneğin Türkiye - İstanbul - Ümraniye lokasyonu için sadece Ümraniyenin id sinin verilmesi yeterlidir.\",\"type\":\"object\",\"properties\":{\"address1\":{\"description\":\"Açık adres 1. satır\",\"type\":\"string\"},\"address2\":{\"description\":\"Açık adres 2. satır\",\"type\":\"string\"},\"address3\":{\"description\":\"Açık adres 3. satır\",\"type\":\"string\"},\"categories\":{\"description\":\"Adres kategorileri. İş adresi, Ev adresi, Öncelikli adres\",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Açık adres ve lokasyon bilgilerini içeren tam adres\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"locationId\":{\"format\":\"int64\",\"description\":\"Adresin bağlı olduğu en dip lokasyon bilgisi. Ümraniye, Üsküdar vb.\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/StudentCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/StudentProfileDTO\"}],\"definitions\":{\"StudentProfileDTO\":{\"title\":\"StudentProfileDTO\",\"description\":\"Talebe profil bilgilerini tutar\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"formalEducationGrade\":{\"$ref\":\"#/definitions/FormalEducationGradeLOV\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"identification\":{\"$ref\":\"#/definitions/StudentIdentificationInfoDTO\"},\"internalEducationGrade\":{\"$ref\":\"#/definitions/InternalEducationGradeLOV\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"organizationLevel\":{\"$ref\":\"#/definitions/OrganizationLevelDTO\"}}},\"OrganizationLevelDTO\":{\"title\":\"OrganizationLevelDTO\",\"description\":\"Tüzel veya gerçek kişilerin organizasyon ağacındaki hierarşisini taşır.\",\"type\":\"object\",\"properties\":{\"bolge\":{\"$ref\":\"#/definitions/BolgeLOV\"},\"corporation\":{\"$ref\":\"#/definitions/CorporationLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"mintika\":{\"$ref\":\"#/definitions/MintikaLOV\"}}},\"MintikaLOV\":{\"title\":\"MintikaLOV\",\"description\":\"Mintika tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Mintika adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"CorporationLOV\":{\"title\":\"CorporationLOV\",\"description\":\"Kurum tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Kurum adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"BolgeLOV\":{\"title\":\"BolgeLOV\",\"description\":\"Bolgeye ait tanimi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Bolge adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"InternalEducationGradeLOV\":{\"title\":\"InternalEducationGradeLOV\",\"description\":\"Dahili eğitim seviyeleri. Örneğin; S1, S2, S3, S4, S5, S6, S7, ibtidai, ihzari, tekamul altı, tekamul, üniversite Kuran-ı Kerim\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Dahili egitim seviyesi adi\",\"type\":\"string\"}}},\"StudentIdentificationInfoDTO\":{\"title\":\"StudentIdentificationInfoDTO\",\"description\":\"Talebeye ait kimlik bilgilerini tutar.\",\"type\":\"object\",\"properties\":{\"birthDate\":{\"format\":\"date-time\",\"description\":\"Dogum Tarihi\",\"type\":\"string\"},\"birthPlaceName\":{\"description\":\"Dogum Yeri adi\",\"type\":\"string\"},\"citizenNumber\":{\"description\":\"Vatandaslik numarasi\",\"type\":\"string\"},\"citizenshipId\":{\"$ref\":\"#/definitions/CitizenshipLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adi\",\"type\":\"string\"},\"gender\":{\"$ref\":\"#/definitions/GenderLOV\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadi\",\"type\":\"string\"}}},\"GenderLOV\":{\"title\":\"GenderLOV\",\"description\":\"Cinsiyet tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Cinsiyet adi\",\"type\":\"string\"}}},\"CitizenshipLOV\":{\"title\":\"CitizenshipLOV\",\"description\":\"Vatandaşlık bilgilerini taşır\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Vatan adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"FormalEducationGradeLOV\":{\"title\":\"FormalEducationGradeLOV\",\"description\":\"Örgün eğitime ait okul seviyelerini tutar. Örneğin; Orta okul 1.Sınıf, Meslek lisesi 2.Sınıf, Üniversite 3.Sınıf vb.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Okul seviye adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/StudentProfileDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"birthDate\": \"1983-03-31T10:15:24.385Z\",\n \"citizenNumber\": \"tempor anim\",\n \"citizenshipId\": -78258772,\n \"corporationId\": 91442960,\n \"createNote\": \"in laborum culpa amet mollit\",\n \"createdBy\": \"sed esse\",\n \"createdDate\": \"1994-01-18T17:10:19.188Z\",\n \"firstName\": \"deserunt consectetur Duis\",\n \"formalEducationGradeId\": 64089862,\n \"genderId\": -72304123,\n \"guardians\": [],\n \"internalEducationGradeId\": 47721025,\n \"lastModifiedBy\": \"consequat sed minim\",\n \"lastModifiedDate\": \"1945-09-21T22:58:06.976Z\",\n \"lastName\": \"in veniam id consequat\",\n \"mobilePhoneNumber\": \"co\",\n \"studentClassificationId\": -69577589\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/StudentCreateDTO\"}],\"definitions\":{\"StudentCreateDTO\":{\"title\":\"StudentCreateDTO\",\"description\":\"Talebe oluşturmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"birthDate\":{\"format\":\"date-time\",\"description\":\"Dogum Tarihi\",\"type\":\"string\"},\"citizenNumber\":{\"description\":\"Vatandaslik numarasi\",\"type\":\"string\"},\"citizenshipId\":{\"format\":\"int64\",\"description\":\"Kimlik sahibi olduğu ülke\",\"type\":\"integer\"},\"corporationId\":{\"format\":\"int64\",\"description\":\"Talebenin resmi kayıtlı olduğu ve kaldığı Kurum bilgisi\",\"type\":\"integer\"},\"createNote\":{\"description\":\"Oluşturma esnasında verilebilecek serbest açıklama alanı.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adi\",\"type\":\"string\"},\"formalEducationGradeId\":{\"format\":\"int64\",\"description\":\"Orgun egitim sinif(seviye) idsi\",\"type\":\"integer\"},\"genderId\":{\"format\":\"int64\",\"description\":\"Cinsiyeti\",\"type\":\"integer\"},\"guardians\":{\"description\":\"Veli bilgileri\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/StudentGuardianCreateDTO\"}},\"internalEducationGradeId\":{\"format\":\"int64\",\"description\":\"Dahili egitim seviye idsi\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadi\",\"type\":\"string\"},\"mobilePhoneNumber\":{\"description\":\"Cep telefonu numarasi\",\"type\":\"string\"},\"studentClassificationId\":{\"format\":\"int64\",\"description\":\"Talebe nevisi idsi\",\"type\":\"integer\"}}},\"StudentGuardianCreateDTO\":{\"title\":\"StudentGuardianCreateDTO\",\"description\":\"Talebe velisi oluşturmak için kullanılır.\",\"required\":[\"adherenceId\",\"identification\"],\"type\":\"object\",\"properties\":{\"addresses\":{\"description\":\"Velinin adres bilgisleri. Ev adresi, iş adresi.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/AddressCreateDTO\"}},\"adherenceId\":{\"format\":\"int64\",\"description\":\"Velinin merbutiyet bilgisi. Ihvan mı, muhibban mı, diger mi oldugunu gosterir.\",\"type\":\"integer\"},\"contacts\":{\"description\":\"Velinin iletişim bilgileri. Telefon, email vb.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactInfoCreateDTO\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"identification\":{\"$ref\":\"#/definitions/IdentificationInfoDTO\"},\"isPrimary\":{\"description\":\"Talebe velileri arasinda muhattap olarak alinacak birincil veli isareti.\",\"type\":\"boolean\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"professionId\":{\"format\":\"int64\",\"description\":\"Velinin meslek bilgisi\",\"type\":\"integer\"},\"typeId\":{\"format\":\"int64\",\"description\":\"Velinin Yakınlık Bilgisi. Anne, Baba Amca vs....\",\"type\":\"integer\"}}},\"IdentificationInfoDTO\":{\"title\":\"IdentificationInfoDTO\",\"description\":\"Kisiye ait kimlik bilgilerini tutar.\",\"type\":\"object\",\"properties\":{\"birthDate\":{\"format\":\"date-time\",\"description\":\"Dogum Tarihi\",\"type\":\"string\"},\"birthPlaceName\":{\"description\":\"Dogum Yeri adi\",\"type\":\"string\"},\"citizenNumber\":{\"description\":\"Vatandaslik numarasi\",\"type\":\"string\"},\"citizenshipId\":{\"$ref\":\"#/definitions/CitizenshipLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adi\",\"type\":\"string\"},\"gender\":{\"$ref\":\"#/definitions/GenderLOV\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadi\",\"type\":\"string\"}}},\"GenderLOV\":{\"title\":\"GenderLOV\",\"description\":\"Cinsiyet tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Cinsiyet adi\",\"type\":\"string\"}}},\"CitizenshipLOV\":{\"title\":\"CitizenshipLOV\",\"description\":\"Vatandaşlık bilgilerini taşır\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Vatan adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"ContactInfoCreateDTO\":{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"AddressCreateDTO\":{\"title\":\"AddressCreateDTO\",\"description\":\" Kisi veya kurumun adres bilgisini olusturmak icin kullanılır.\\n Adrese ait lokasyon bilgisini içerisinde barındırır.\\n Lokasyon bilgisi önceden tanımlı olmalıdır. Lokasyon bilgisi alınırken lokasyon hierarşisinde kullanıcının seçtiği en altta kalan lokasyonun idsi yeterlidir.\\n Örneğin Türkiye - İstanbul - Ümraniye lokasyonu için sadece Ümraniyenin id sinin verilmesi yeterlidir.\",\"type\":\"object\",\"properties\":{\"address1\":{\"description\":\"Açık adres 1. satır\",\"type\":\"string\"},\"address2\":{\"description\":\"Açık adres 2. satır\",\"type\":\"string\"},\"address3\":{\"description\":\"Açık adres 3. satır\",\"type\":\"string\"},\"categories\":{\"description\":\"Adres kategorileri. İş adresi, Ev adresi, Öncelikli adres\",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Açık adres ve lokasyon bilgilerini içeren tam adres\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"locationId\":{\"format\":\"int64\",\"description\":\"Adresin bağlı olduğu en dip lokasyon bilgisi. Ümraniye, Üsküdar vb.\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/StudentCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Successful response." + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/StudentProfileDTO\"}],\"definitions\":{\"StudentProfileDTO\":{\"title\":\"StudentProfileDTO\",\"description\":\"Talebe profil bilgilerini tutar\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"formalEducationGrade\":{\"$ref\":\"#/definitions/FormalEducationGradeLOV\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"identification\":{\"$ref\":\"#/definitions/StudentIdentificationInfoDTO\"},\"internalEducationGrade\":{\"$ref\":\"#/definitions/InternalEducationGradeLOV\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"organizationLevel\":{\"$ref\":\"#/definitions/OrganizationLevelDTO\"}}},\"OrganizationLevelDTO\":{\"title\":\"OrganizationLevelDTO\",\"description\":\"Tüzel veya gerçek kişilerin organizasyon ağacındaki hierarşisini taşır.\",\"type\":\"object\",\"properties\":{\"bolge\":{\"$ref\":\"#/definitions/BolgeLOV\"},\"corporation\":{\"$ref\":\"#/definitions/CorporationLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"mintika\":{\"$ref\":\"#/definitions/MintikaLOV\"}}},\"MintikaLOV\":{\"title\":\"MintikaLOV\",\"description\":\"Mintika tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Mintika adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"CorporationLOV\":{\"title\":\"CorporationLOV\",\"description\":\"Kurum tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Kurum adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"BolgeLOV\":{\"title\":\"BolgeLOV\",\"description\":\"Bolgeye ait tanimi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Bolge adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"InternalEducationGradeLOV\":{\"title\":\"InternalEducationGradeLOV\",\"description\":\"Dahili eğitim seviyeleri. Örneğin; S1, S2, S3, S4, S5, S6, S7, ibtidai, ihzari, tekamul altı, tekamul, üniversite Kuran-ı Kerim\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Dahili egitim seviyesi adi\",\"type\":\"string\"}}},\"StudentIdentificationInfoDTO\":{\"title\":\"StudentIdentificationInfoDTO\",\"description\":\"Talebeye ait kimlik bilgilerini tutar.\",\"type\":\"object\",\"properties\":{\"birthDate\":{\"format\":\"date-time\",\"description\":\"Dogum Tarihi\",\"type\":\"string\"},\"birthPlaceName\":{\"description\":\"Dogum Yeri adi\",\"type\":\"string\"},\"citizenNumber\":{\"description\":\"Vatandaslik numarasi\",\"type\":\"string\"},\"citizenshipId\":{\"$ref\":\"#/definitions/CitizenshipLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adi\",\"type\":\"string\"},\"gender\":{\"$ref\":\"#/definitions/GenderLOV\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadi\",\"type\":\"string\"}}},\"GenderLOV\":{\"title\":\"GenderLOV\",\"description\":\"Cinsiyet tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Cinsiyet adi\",\"type\":\"string\"}}},\"CitizenshipLOV\":{\"title\":\"CitizenshipLOV\",\"description\":\"Vatandaşlık bilgilerini taşır\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Vatan adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"FormalEducationGradeLOV\":{\"title\":\"FormalEducationGradeLOV\",\"description\":\"Örgün eğitime ait okul seviyelerini tutar. Örneğin; Orta okul 1.Sınıf, Meslek lisesi 2.Sınıf, Üniversite 3.Sınıf vb.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Okul seviye adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/StudentProfileDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"birthDate\": \"1941-04-01T16:36:56.840Z\",\n \"citizenNumber\": \"aliqua\",\n \"citizenshipId\": -29905925,\n \"corporationId\": -89516421,\n \"createNote\": \"quis\",\n \"createdBy\": \"commodo occaecat quis\",\n \"createdDate\": \"1967-09-27T17:46:39.009Z\",\n \"firstName\": \"adipisicing ad Excepteur proident quis\",\n \"formalEducationGradeId\": 96088442,\n \"genderId\": -67468509,\n \"guardians\": [],\n \"internalEducationGradeId\": 66337509,\n \"lastModifiedBy\": \"ad cillum sit Ut mollit\",\n \"lastModifiedDate\": \"1967-03-10T16:16:58.620Z\",\n \"lastName\": \"ea cillum velit\",\n \"mobilePhoneNumber\": \"et dolor velit amet\",\n \"studentClassificationId\": -20590872\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/StudentCreateDTO\"}],\"definitions\":{\"StudentCreateDTO\":{\"title\":\"StudentCreateDTO\",\"description\":\"Talebe oluşturmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"birthDate\":{\"format\":\"date-time\",\"description\":\"Dogum Tarihi\",\"type\":\"string\"},\"citizenNumber\":{\"description\":\"Vatandaslik numarasi\",\"type\":\"string\"},\"citizenshipId\":{\"format\":\"int64\",\"description\":\"Kimlik sahibi olduğu ülke\",\"type\":\"integer\"},\"corporationId\":{\"format\":\"int64\",\"description\":\"Talebenin resmi kayıtlı olduğu ve kaldığı Kurum bilgisi\",\"type\":\"integer\"},\"createNote\":{\"description\":\"Oluşturma esnasında verilebilecek serbest açıklama alanı.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adi\",\"type\":\"string\"},\"formalEducationGradeId\":{\"format\":\"int64\",\"description\":\"Orgun egitim sinif(seviye) idsi\",\"type\":\"integer\"},\"genderId\":{\"format\":\"int64\",\"description\":\"Cinsiyeti\",\"type\":\"integer\"},\"guardians\":{\"description\":\"Veli bilgileri\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/StudentGuardianCreateDTO\"}},\"internalEducationGradeId\":{\"format\":\"int64\",\"description\":\"Dahili egitim seviye idsi\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadi\",\"type\":\"string\"},\"mobilePhoneNumber\":{\"description\":\"Cep telefonu numarasi\",\"type\":\"string\"},\"studentClassificationId\":{\"format\":\"int64\",\"description\":\"Talebe nevisi idsi\",\"type\":\"integer\"}}},\"StudentGuardianCreateDTO\":{\"title\":\"StudentGuardianCreateDTO\",\"description\":\"Talebe velisi oluşturmak için kullanılır.\",\"required\":[\"adherenceId\",\"identification\"],\"type\":\"object\",\"properties\":{\"addresses\":{\"description\":\"Velinin adres bilgisleri. Ev adresi, iş adresi.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/AddressCreateDTO\"}},\"adherenceId\":{\"format\":\"int64\",\"description\":\"Velinin merbutiyet bilgisi. Ihvan mı, muhibban mı, diger mi oldugunu gosterir.\",\"type\":\"integer\"},\"contacts\":{\"description\":\"Velinin iletişim bilgileri. Telefon, email vb.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactInfoCreateDTO\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"identification\":{\"$ref\":\"#/definitions/IdentificationInfoDTO\"},\"isPrimary\":{\"description\":\"Talebe velileri arasinda muhattap olarak alinacak birincil veli isareti.\",\"type\":\"boolean\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"professionId\":{\"format\":\"int64\",\"description\":\"Velinin meslek bilgisi\",\"type\":\"integer\"},\"typeId\":{\"format\":\"int64\",\"description\":\"Velinin Yakınlık Bilgisi. Anne, Baba Amca vs....\",\"type\":\"integer\"}}},\"IdentificationInfoDTO\":{\"title\":\"IdentificationInfoDTO\",\"description\":\"Kisiye ait kimlik bilgilerini tutar.\",\"type\":\"object\",\"properties\":{\"birthDate\":{\"format\":\"date-time\",\"description\":\"Dogum Tarihi\",\"type\":\"string\"},\"birthPlaceName\":{\"description\":\"Dogum Yeri adi\",\"type\":\"string\"},\"citizenNumber\":{\"description\":\"Vatandaslik numarasi\",\"type\":\"string\"},\"citizenshipId\":{\"$ref\":\"#/definitions/CitizenshipLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adi\",\"type\":\"string\"},\"gender\":{\"$ref\":\"#/definitions/GenderLOV\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadi\",\"type\":\"string\"}}},\"GenderLOV\":{\"title\":\"GenderLOV\",\"description\":\"Cinsiyet tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Cinsiyet adi\",\"type\":\"string\"}}},\"CitizenshipLOV\":{\"title\":\"CitizenshipLOV\",\"description\":\"Vatandaşlık bilgilerini taşır\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Vatan adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"ContactInfoCreateDTO\":{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"AddressCreateDTO\":{\"title\":\"AddressCreateDTO\",\"description\":\" Kisi veya kurumun adres bilgisini olusturmak icin kullanılır.\\n Adrese ait lokasyon bilgisini içerisinde barındırır.\\n Lokasyon bilgisi önceden tanımlı olmalıdır. Lokasyon bilgisi alınırken lokasyon hierarşisinde kullanıcının seçtiği en altta kalan lokasyonun idsi yeterlidir.\\n Örneğin Türkiye - İstanbul - Ümraniye lokasyonu için sadece Ümraniyenin id sinin verilmesi yeterlidir.\",\"type\":\"object\",\"properties\":{\"address1\":{\"description\":\"Açık adres 1. satır\",\"type\":\"string\"},\"address2\":{\"description\":\"Açık adres 2. satır\",\"type\":\"string\"},\"address3\":{\"description\":\"Açık adres 3. satır\",\"type\":\"string\"},\"categories\":{\"description\":\"Adres kategorileri. İş adresi, Ev adresi, Öncelikli adres\",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Açık adres ve lokasyon bilgilerini içeren tam adres\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"locationId\":{\"format\":\"int64\",\"description\":\"Adresin bağlı olduğu en dip lokasyon bilgisi. Ümraniye, Üsküdar vb.\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/StudentCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"birthDate\": \"1971-10-09T00:08:52.185Z\",\n \"citizenNumber\": \"ad\",\n \"citizenshipId\": -85008046,\n \"corporationId\": -46523496,\n \"createNote\": \"elit qui magna laboris ullamco\",\n \"createdBy\": \"Excepteur amet\",\n \"createdDate\": \"1976-08-16T18:27:00.672Z\",\n \"firstName\": \"mollit\",\n \"formalEducationGradeId\": -58657743,\n \"genderId\": -62376414,\n \"guardians\": [],\n \"internalEducationGradeId\": -11778384,\n \"lastModifiedBy\": \"ut commodo et aliqua esse\",\n \"lastModifiedDate\": \"2010-08-10T18:47:30.153Z\",\n \"lastName\": \"cillum Duis ut\",\n \"mobilePhoneNumber\": \"laboris deserunt voluptate velit\",\n \"studentClassificationId\": 72201036\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/StudentCreateDTO\"}],\"definitions\":{\"StudentCreateDTO\":{\"title\":\"StudentCreateDTO\",\"description\":\"Talebe oluşturmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"birthDate\":{\"format\":\"date-time\",\"description\":\"Dogum Tarihi\",\"type\":\"string\"},\"citizenNumber\":{\"description\":\"Vatandaslik numarasi\",\"type\":\"string\"},\"citizenshipId\":{\"format\":\"int64\",\"description\":\"Kimlik sahibi olduğu ülke\",\"type\":\"integer\"},\"corporationId\":{\"format\":\"int64\",\"description\":\"Talebenin resmi kayıtlı olduğu ve kaldığı Kurum bilgisi\",\"type\":\"integer\"},\"createNote\":{\"description\":\"Oluşturma esnasında verilebilecek serbest açıklama alanı.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adi\",\"type\":\"string\"},\"formalEducationGradeId\":{\"format\":\"int64\",\"description\":\"Orgun egitim sinif(seviye) idsi\",\"type\":\"integer\"},\"genderId\":{\"format\":\"int64\",\"description\":\"Cinsiyeti\",\"type\":\"integer\"},\"guardians\":{\"description\":\"Veli bilgileri\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/StudentGuardianCreateDTO\"}},\"internalEducationGradeId\":{\"format\":\"int64\",\"description\":\"Dahili egitim seviye idsi\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadi\",\"type\":\"string\"},\"mobilePhoneNumber\":{\"description\":\"Cep telefonu numarasi\",\"type\":\"string\"},\"studentClassificationId\":{\"format\":\"int64\",\"description\":\"Talebe nevisi idsi\",\"type\":\"integer\"}}},\"StudentGuardianCreateDTO\":{\"title\":\"StudentGuardianCreateDTO\",\"description\":\"Talebe velisi oluşturmak için kullanılır.\",\"required\":[\"adherenceId\",\"identification\"],\"type\":\"object\",\"properties\":{\"addresses\":{\"description\":\"Velinin adres bilgisleri. Ev adresi, iş adresi.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/AddressCreateDTO\"}},\"adherenceId\":{\"format\":\"int64\",\"description\":\"Velinin merbutiyet bilgisi. Ihvan mı, muhibban mı, diger mi oldugunu gosterir.\",\"type\":\"integer\"},\"contacts\":{\"description\":\"Velinin iletişim bilgileri. Telefon, email vb.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactInfoCreateDTO\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"identification\":{\"$ref\":\"#/definitions/IdentificationInfoDTO\"},\"isPrimary\":{\"description\":\"Talebe velileri arasinda muhattap olarak alinacak birincil veli isareti.\",\"type\":\"boolean\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"professionId\":{\"format\":\"int64\",\"description\":\"Velinin meslek bilgisi\",\"type\":\"integer\"},\"typeId\":{\"format\":\"int64\",\"description\":\"Velinin Yakınlık Bilgisi. Anne, Baba Amca vs....\",\"type\":\"integer\"}}},\"IdentificationInfoDTO\":{\"title\":\"IdentificationInfoDTO\",\"description\":\"Kisiye ait kimlik bilgilerini tutar.\",\"type\":\"object\",\"properties\":{\"birthDate\":{\"format\":\"date-time\",\"description\":\"Dogum Tarihi\",\"type\":\"string\"},\"birthPlaceName\":{\"description\":\"Dogum Yeri adi\",\"type\":\"string\"},\"citizenNumber\":{\"description\":\"Vatandaslik numarasi\",\"type\":\"string\"},\"citizenshipId\":{\"$ref\":\"#/definitions/CitizenshipLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adi\",\"type\":\"string\"},\"gender\":{\"$ref\":\"#/definitions/GenderLOV\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadi\",\"type\":\"string\"}}},\"GenderLOV\":{\"title\":\"GenderLOV\",\"description\":\"Cinsiyet tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Cinsiyet adi\",\"type\":\"string\"}}},\"CitizenshipLOV\":{\"title\":\"CitizenshipLOV\",\"description\":\"Vatandaşlık bilgilerini taşır\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Vatan adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"ContactInfoCreateDTO\":{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"AddressCreateDTO\":{\"title\":\"AddressCreateDTO\",\"description\":\" Kisi veya kurumun adres bilgisini olusturmak icin kullanılır.\\n Adrese ait lokasyon bilgisini içerisinde barındırır.\\n Lokasyon bilgisi önceden tanımlı olmalıdır. Lokasyon bilgisi alınırken lokasyon hierarşisinde kullanıcının seçtiği en altta kalan lokasyonun idsi yeterlidir.\\n Örneğin Türkiye - İstanbul - Ümraniye lokasyonu için sadece Ümraniyenin id sinin verilmesi yeterlidir.\",\"type\":\"object\",\"properties\":{\"address1\":{\"description\":\"Açık adres 1. satır\",\"type\":\"string\"},\"address2\":{\"description\":\"Açık adres 2. satır\",\"type\":\"string\"},\"address3\":{\"description\":\"Açık adres 3. satır\",\"type\":\"string\"},\"categories\":{\"description\":\"Adres kategorileri. İş adresi, Ev adresi, Öncelikli adres\",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Açık adres ve lokasyon bilgilerini içeren tam adres\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"locationId\":{\"format\":\"int64\",\"description\":\"Adresin bağlı olduğu en dip lokasyon bilgisi. Ümraniye, Üsküdar vb.\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/StudentCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"birthDate\": \"1978-03-09T20:53:20.929Z\",\n \"citizenNumber\": \"velit deserunt\",\n \"citizenshipId\": -61763200,\n \"corporationId\": 52391997,\n \"createNote\": \"veniam culpa consequat ea\",\n \"createdBy\": \"ad deserunt consequat\",\n \"createdDate\": \"2002-07-12T13:05:42.356Z\",\n \"firstName\": \"consectetur in in\",\n \"formalEducationGradeId\": 52766250,\n \"genderId\": -76051573,\n \"guardians\": [],\n \"internalEducationGradeId\": 81906436,\n \"lastModifiedBy\": \"anim culpa\",\n \"lastModifiedDate\": \"1986-10-07T12:22:26.255Z\",\n \"lastName\": \"pa\",\n \"mobilePhoneNumber\": \"incididunt aliquip exercitation\",\n \"studentClassificationId\": 61379861\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/StudentCreateDTO\"}],\"definitions\":{\"StudentCreateDTO\":{\"title\":\"StudentCreateDTO\",\"description\":\"Talebe oluşturmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"birthDate\":{\"format\":\"date-time\",\"description\":\"Dogum Tarihi\",\"type\":\"string\"},\"citizenNumber\":{\"description\":\"Vatandaslik numarasi\",\"type\":\"string\"},\"citizenshipId\":{\"format\":\"int64\",\"description\":\"Kimlik sahibi olduğu ülke\",\"type\":\"integer\"},\"corporationId\":{\"format\":\"int64\",\"description\":\"Talebenin resmi kayıtlı olduğu ve kaldığı Kurum bilgisi\",\"type\":\"integer\"},\"createNote\":{\"description\":\"Oluşturma esnasında verilebilecek serbest açıklama alanı.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adi\",\"type\":\"string\"},\"formalEducationGradeId\":{\"format\":\"int64\",\"description\":\"Orgun egitim sinif(seviye) idsi\",\"type\":\"integer\"},\"genderId\":{\"format\":\"int64\",\"description\":\"Cinsiyeti\",\"type\":\"integer\"},\"guardians\":{\"description\":\"Veli bilgileri\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/StudentGuardianCreateDTO\"}},\"internalEducationGradeId\":{\"format\":\"int64\",\"description\":\"Dahili egitim seviye idsi\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadi\",\"type\":\"string\"},\"mobilePhoneNumber\":{\"description\":\"Cep telefonu numarasi\",\"type\":\"string\"},\"studentClassificationId\":{\"format\":\"int64\",\"description\":\"Talebe nevisi idsi\",\"type\":\"integer\"}}},\"StudentGuardianCreateDTO\":{\"title\":\"StudentGuardianCreateDTO\",\"description\":\"Talebe velisi oluşturmak için kullanılır.\",\"required\":[\"adherenceId\",\"identification\"],\"type\":\"object\",\"properties\":{\"addresses\":{\"description\":\"Velinin adres bilgisleri. Ev adresi, iş adresi.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/AddressCreateDTO\"}},\"adherenceId\":{\"format\":\"int64\",\"description\":\"Velinin merbutiyet bilgisi. Ihvan mı, muhibban mı, diger mi oldugunu gosterir.\",\"type\":\"integer\"},\"contacts\":{\"description\":\"Velinin iletişim bilgileri. Telefon, email vb.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactInfoCreateDTO\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"identification\":{\"$ref\":\"#/definitions/IdentificationInfoDTO\"},\"isPrimary\":{\"description\":\"Talebe velileri arasinda muhattap olarak alinacak birincil veli isareti.\",\"type\":\"boolean\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"professionId\":{\"format\":\"int64\",\"description\":\"Velinin meslek bilgisi\",\"type\":\"integer\"},\"typeId\":{\"format\":\"int64\",\"description\":\"Velinin Yakınlık Bilgisi. Anne, Baba Amca vs....\",\"type\":\"integer\"}}},\"IdentificationInfoDTO\":{\"title\":\"IdentificationInfoDTO\",\"description\":\"Kisiye ait kimlik bilgilerini tutar.\",\"type\":\"object\",\"properties\":{\"birthDate\":{\"format\":\"date-time\",\"description\":\"Dogum Tarihi\",\"type\":\"string\"},\"birthPlaceName\":{\"description\":\"Dogum Yeri adi\",\"type\":\"string\"},\"citizenNumber\":{\"description\":\"Vatandaslik numarasi\",\"type\":\"string\"},\"citizenshipId\":{\"$ref\":\"#/definitions/CitizenshipLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adi\",\"type\":\"string\"},\"gender\":{\"$ref\":\"#/definitions/GenderLOV\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadi\",\"type\":\"string\"}}},\"GenderLOV\":{\"title\":\"GenderLOV\",\"description\":\"Cinsiyet tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Cinsiyet adi\",\"type\":\"string\"}}},\"CitizenshipLOV\":{\"title\":\"CitizenshipLOV\",\"description\":\"Vatandaşlık bilgilerini taşır\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Vatan adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"ContactInfoCreateDTO\":{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"AddressCreateDTO\":{\"title\":\"AddressCreateDTO\",\"description\":\" Kisi veya kurumun adres bilgisini olusturmak icin kullanılır.\\n Adrese ait lokasyon bilgisini içerisinde barındırır.\\n Lokasyon bilgisi önceden tanımlı olmalıdır. Lokasyon bilgisi alınırken lokasyon hierarşisinde kullanıcının seçtiği en altta kalan lokasyonun idsi yeterlidir.\\n Örneğin Türkiye - İstanbul - Ümraniye lokasyonu için sadece Ümraniyenin id sinin verilmesi yeterlidir.\",\"type\":\"object\",\"properties\":{\"address1\":{\"description\":\"Açık adres 1. satır\",\"type\":\"string\"},\"address2\":{\"description\":\"Açık adres 2. satır\",\"type\":\"string\"},\"address3\":{\"description\":\"Açık adres 3. satır\",\"type\":\"string\"},\"categories\":{\"description\":\"Adres kategorileri. İş adresi, Ev adresi, Öncelikli adres\",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Açık adres ve lokasyon bilgilerini içeren tam adres\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"locationId\":{\"format\":\"int64\",\"description\":\"Adresin bağlı olduğu en dip lokasyon bilgisi. Ümraniye, Üsküdar vb.\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/StudentCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"birthDate\": \"1947-10-02T22:27:29.965Z\",\n \"citizenNumber\": \"ea\",\n \"citizenshipId\": 68993163,\n \"corporationId\": 35442247,\n \"createNote\": \"ex qui et\",\n \"createdBy\": \"incididunt et consequat exercitation\",\n \"createdDate\": \"1989-11-23T23:16:26.050Z\",\n \"firstName\": \"fugiat\",\n \"formalEducationGradeId\": 59354534,\n \"genderId\": 8600927,\n \"guardians\": [],\n \"internalEducationGradeId\": 98253160,\n \"lastModifiedBy\": \"ea dolore aute mollit ut\",\n \"lastModifiedDate\": \"1988-06-06T18:07:33.802Z\",\n \"lastName\": \"fugiat eu commodo dolore qui\",\n \"mobilePhoneNumber\": \"ullamco do sit tempor eu\",\n \"studentClassificationId\": -14300363\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/StudentCreateDTO\"}],\"definitions\":{\"StudentCreateDTO\":{\"title\":\"StudentCreateDTO\",\"description\":\"Talebe oluşturmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"birthDate\":{\"format\":\"date-time\",\"description\":\"Dogum Tarihi\",\"type\":\"string\"},\"citizenNumber\":{\"description\":\"Vatandaslik numarasi\",\"type\":\"string\"},\"citizenshipId\":{\"format\":\"int64\",\"description\":\"Kimlik sahibi olduğu ülke\",\"type\":\"integer\"},\"corporationId\":{\"format\":\"int64\",\"description\":\"Talebenin resmi kayıtlı olduğu ve kaldığı Kurum bilgisi\",\"type\":\"integer\"},\"createNote\":{\"description\":\"Oluşturma esnasında verilebilecek serbest açıklama alanı.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adi\",\"type\":\"string\"},\"formalEducationGradeId\":{\"format\":\"int64\",\"description\":\"Orgun egitim sinif(seviye) idsi\",\"type\":\"integer\"},\"genderId\":{\"format\":\"int64\",\"description\":\"Cinsiyeti\",\"type\":\"integer\"},\"guardians\":{\"description\":\"Veli bilgileri\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/StudentGuardianCreateDTO\"}},\"internalEducationGradeId\":{\"format\":\"int64\",\"description\":\"Dahili egitim seviye idsi\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadi\",\"type\":\"string\"},\"mobilePhoneNumber\":{\"description\":\"Cep telefonu numarasi\",\"type\":\"string\"},\"studentClassificationId\":{\"format\":\"int64\",\"description\":\"Talebe nevisi idsi\",\"type\":\"integer\"}}},\"StudentGuardianCreateDTO\":{\"title\":\"StudentGuardianCreateDTO\",\"description\":\"Talebe velisi oluşturmak için kullanılır.\",\"required\":[\"adherenceId\",\"identification\"],\"type\":\"object\",\"properties\":{\"addresses\":{\"description\":\"Velinin adres bilgisleri. Ev adresi, iş adresi.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/AddressCreateDTO\"}},\"adherenceId\":{\"format\":\"int64\",\"description\":\"Velinin merbutiyet bilgisi. Ihvan mı, muhibban mı, diger mi oldugunu gosterir.\",\"type\":\"integer\"},\"contacts\":{\"description\":\"Velinin iletişim bilgileri. Telefon, email vb.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactInfoCreateDTO\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"identification\":{\"$ref\":\"#/definitions/IdentificationInfoDTO\"},\"isPrimary\":{\"description\":\"Talebe velileri arasinda muhattap olarak alinacak birincil veli isareti.\",\"type\":\"boolean\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"professionId\":{\"format\":\"int64\",\"description\":\"Velinin meslek bilgisi\",\"type\":\"integer\"},\"typeId\":{\"format\":\"int64\",\"description\":\"Velinin Yakınlık Bilgisi. Anne, Baba Amca vs....\",\"type\":\"integer\"}}},\"IdentificationInfoDTO\":{\"title\":\"IdentificationInfoDTO\",\"description\":\"Kisiye ait kimlik bilgilerini tutar.\",\"type\":\"object\",\"properties\":{\"birthDate\":{\"format\":\"date-time\",\"description\":\"Dogum Tarihi\",\"type\":\"string\"},\"birthPlaceName\":{\"description\":\"Dogum Yeri adi\",\"type\":\"string\"},\"citizenNumber\":{\"description\":\"Vatandaslik numarasi\",\"type\":\"string\"},\"citizenshipId\":{\"$ref\":\"#/definitions/CitizenshipLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adi\",\"type\":\"string\"},\"gender\":{\"$ref\":\"#/definitions/GenderLOV\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadi\",\"type\":\"string\"}}},\"GenderLOV\":{\"title\":\"GenderLOV\",\"description\":\"Cinsiyet tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Cinsiyet adi\",\"type\":\"string\"}}},\"CitizenshipLOV\":{\"title\":\"CitizenshipLOV\",\"description\":\"Vatandaşlık bilgilerini taşır\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Vatan adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"ContactInfoCreateDTO\":{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"AddressCreateDTO\":{\"title\":\"AddressCreateDTO\",\"description\":\" Kisi veya kurumun adres bilgisini olusturmak icin kullanılır.\\n Adrese ait lokasyon bilgisini içerisinde barındırır.\\n Lokasyon bilgisi önceden tanımlı olmalıdır. Lokasyon bilgisi alınırken lokasyon hierarşisinde kullanıcının seçtiği en altta kalan lokasyonun idsi yeterlidir.\\n Örneğin Türkiye - İstanbul - Ümraniye lokasyonu için sadece Ümraniyenin id sinin verilmesi yeterlidir.\",\"type\":\"object\",\"properties\":{\"address1\":{\"description\":\"Açık adres 1. satır\",\"type\":\"string\"},\"address2\":{\"description\":\"Açık adres 2. satır\",\"type\":\"string\"},\"address3\":{\"description\":\"Açık adres 3. satır\",\"type\":\"string\"},\"categories\":{\"description\":\"Adres kategorileri. İş adresi, Ev adresi, Öncelikli adres\",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Açık adres ve lokasyon bilgilerini içeren tam adres\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"locationId\":{\"format\":\"int64\",\"description\":\"Adresin bağlı olduğu en dip lokasyon bilgisi. Ümraniye, Üsküdar vb.\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/StudentCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"birthDate\": \"1975-08-25T18:56:12.719Z\",\n \"citizenNumber\": \"mollit\",\n \"citizenshipId\": -1361056,\n \"corporationId\": 59680929,\n \"createNote\": \"quis do dolore\",\n \"createdBy\": \"commodo in sunt aliqua\",\n \"createdDate\": \"1944-06-03T17:21:40.170Z\",\n \"firstName\": \"ut cupidatat do irure\",\n \"formalEducationGradeId\": 4213112,\n \"genderId\": -54133645,\n \"guardians\": [],\n \"internalEducationGradeId\": -80100015,\n \"lastModifiedBy\": \"nostrud aliqua\",\n \"lastModifiedDate\": \"1999-12-17T08:23:05.943Z\",\n \"lastName\": \"ullamco officia commodo ea\",\n \"mobilePhoneNumber\": \"paria\",\n \"studentClassificationId\": 51851880\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/StudentCreateDTO\"}],\"definitions\":{\"StudentCreateDTO\":{\"title\":\"StudentCreateDTO\",\"description\":\"Talebe oluşturmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"birthDate\":{\"format\":\"date-time\",\"description\":\"Dogum Tarihi\",\"type\":\"string\"},\"citizenNumber\":{\"description\":\"Vatandaslik numarasi\",\"type\":\"string\"},\"citizenshipId\":{\"format\":\"int64\",\"description\":\"Kimlik sahibi olduğu ülke\",\"type\":\"integer\"},\"corporationId\":{\"format\":\"int64\",\"description\":\"Talebenin resmi kayıtlı olduğu ve kaldığı Kurum bilgisi\",\"type\":\"integer\"},\"createNote\":{\"description\":\"Oluşturma esnasında verilebilecek serbest açıklama alanı.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adi\",\"type\":\"string\"},\"formalEducationGradeId\":{\"format\":\"int64\",\"description\":\"Orgun egitim sinif(seviye) idsi\",\"type\":\"integer\"},\"genderId\":{\"format\":\"int64\",\"description\":\"Cinsiyeti\",\"type\":\"integer\"},\"guardians\":{\"description\":\"Veli bilgileri\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/StudentGuardianCreateDTO\"}},\"internalEducationGradeId\":{\"format\":\"int64\",\"description\":\"Dahili egitim seviye idsi\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadi\",\"type\":\"string\"},\"mobilePhoneNumber\":{\"description\":\"Cep telefonu numarasi\",\"type\":\"string\"},\"studentClassificationId\":{\"format\":\"int64\",\"description\":\"Talebe nevisi idsi\",\"type\":\"integer\"}}},\"StudentGuardianCreateDTO\":{\"title\":\"StudentGuardianCreateDTO\",\"description\":\"Talebe velisi oluşturmak için kullanılır.\",\"required\":[\"adherenceId\",\"identification\"],\"type\":\"object\",\"properties\":{\"addresses\":{\"description\":\"Velinin adres bilgisleri. Ev adresi, iş adresi.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/AddressCreateDTO\"}},\"adherenceId\":{\"format\":\"int64\",\"description\":\"Velinin merbutiyet bilgisi. Ihvan mı, muhibban mı, diger mi oldugunu gosterir.\",\"type\":\"integer\"},\"contacts\":{\"description\":\"Velinin iletişim bilgileri. Telefon, email vb.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactInfoCreateDTO\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"identification\":{\"$ref\":\"#/definitions/IdentificationInfoDTO\"},\"isPrimary\":{\"description\":\"Talebe velileri arasinda muhattap olarak alinacak birincil veli isareti.\",\"type\":\"boolean\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"professionId\":{\"format\":\"int64\",\"description\":\"Velinin meslek bilgisi\",\"type\":\"integer\"},\"typeId\":{\"format\":\"int64\",\"description\":\"Velinin Yakınlık Bilgisi. Anne, Baba Amca vs....\",\"type\":\"integer\"}}},\"IdentificationInfoDTO\":{\"title\":\"IdentificationInfoDTO\",\"description\":\"Kisiye ait kimlik bilgilerini tutar.\",\"type\":\"object\",\"properties\":{\"birthDate\":{\"format\":\"date-time\",\"description\":\"Dogum Tarihi\",\"type\":\"string\"},\"birthPlaceName\":{\"description\":\"Dogum Yeri adi\",\"type\":\"string\"},\"citizenNumber\":{\"description\":\"Vatandaslik numarasi\",\"type\":\"string\"},\"citizenshipId\":{\"$ref\":\"#/definitions/CitizenshipLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adi\",\"type\":\"string\"},\"gender\":{\"$ref\":\"#/definitions/GenderLOV\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadi\",\"type\":\"string\"}}},\"GenderLOV\":{\"title\":\"GenderLOV\",\"description\":\"Cinsiyet tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Cinsiyet adi\",\"type\":\"string\"}}},\"CitizenshipLOV\":{\"title\":\"CitizenshipLOV\",\"description\":\"Vatandaşlık bilgilerini taşır\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Vatan adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"ContactInfoCreateDTO\":{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"AddressCreateDTO\":{\"title\":\"AddressCreateDTO\",\"description\":\" Kisi veya kurumun adres bilgisini olusturmak icin kullanılır.\\n Adrese ait lokasyon bilgisini içerisinde barındırır.\\n Lokasyon bilgisi önceden tanımlı olmalıdır. Lokasyon bilgisi alınırken lokasyon hierarşisinde kullanıcının seçtiği en altta kalan lokasyonun idsi yeterlidir.\\n Örneğin Türkiye - İstanbul - Ümraniye lokasyonu için sadece Ümraniyenin id sinin verilmesi yeterlidir.\",\"type\":\"object\",\"properties\":{\"address1\":{\"description\":\"Açık adres 1. satır\",\"type\":\"string\"},\"address2\":{\"description\":\"Açık adres 2. satır\",\"type\":\"string\"},\"address3\":{\"description\":\"Açık adres 3. satır\",\"type\":\"string\"},\"categories\":{\"description\":\"Adres kategorileri. İş adresi, Ev adresi, Öncelikli adres\",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Açık adres ve lokasyon bilgilerini içeren tam adres\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"locationId\":{\"format\":\"int64\",\"description\":\"Adresin bağlı olduğu en dip lokasyon bilgisi. Ümraniye, Üsküdar vb.\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/StudentCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz." + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/students/{id}" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Get a StudentProfileDTO" + }, + "id": { + "element": "string", + "content": "getStudentProfileDTO" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "A unique identifier for a `StudentProfileDTO`." + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Gets the details of a single instance of a `StudentProfileDTO`." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "Successful response - returns a single `StudentProfileDTO`." + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/StudentProfileDTO\"}],\"definitions\":{\"StudentProfileDTO\":{\"title\":\"StudentProfileDTO\",\"description\":\"Talebe profil bilgilerini tutar\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"formalEducationGrade\":{\"$ref\":\"#/definitions/FormalEducationGradeLOV\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"identification\":{\"$ref\":\"#/definitions/StudentIdentificationInfoDTO\"},\"internalEducationGrade\":{\"$ref\":\"#/definitions/InternalEducationGradeLOV\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"organizationLevel\":{\"$ref\":\"#/definitions/OrganizationLevelDTO\"}}},\"OrganizationLevelDTO\":{\"title\":\"OrganizationLevelDTO\",\"description\":\"Tüzel veya gerçek kişilerin organizasyon ağacındaki hierarşisini taşır.\",\"type\":\"object\",\"properties\":{\"bolge\":{\"$ref\":\"#/definitions/BolgeLOV\"},\"corporation\":{\"$ref\":\"#/definitions/CorporationLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"mintika\":{\"$ref\":\"#/definitions/MintikaLOV\"}}},\"MintikaLOV\":{\"title\":\"MintikaLOV\",\"description\":\"Mintika tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Mintika adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"CorporationLOV\":{\"title\":\"CorporationLOV\",\"description\":\"Kurum tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Kurum adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"BolgeLOV\":{\"title\":\"BolgeLOV\",\"description\":\"Bolgeye ait tanimi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Bolge adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"InternalEducationGradeLOV\":{\"title\":\"InternalEducationGradeLOV\",\"description\":\"Dahili eğitim seviyeleri. Örneğin; S1, S2, S3, S4, S5, S6, S7, ibtidai, ihzari, tekamul altı, tekamul, üniversite Kuran-ı Kerim\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Dahili egitim seviyesi adi\",\"type\":\"string\"}}},\"StudentIdentificationInfoDTO\":{\"title\":\"StudentIdentificationInfoDTO\",\"description\":\"Talebeye ait kimlik bilgilerini tutar.\",\"type\":\"object\",\"properties\":{\"birthDate\":{\"format\":\"date-time\",\"description\":\"Dogum Tarihi\",\"type\":\"string\"},\"birthPlaceName\":{\"description\":\"Dogum Yeri adi\",\"type\":\"string\"},\"citizenNumber\":{\"description\":\"Vatandaslik numarasi\",\"type\":\"string\"},\"citizenshipId\":{\"$ref\":\"#/definitions/CitizenshipLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adi\",\"type\":\"string\"},\"gender\":{\"$ref\":\"#/definitions/GenderLOV\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadi\",\"type\":\"string\"}}},\"GenderLOV\":{\"title\":\"GenderLOV\",\"description\":\"Cinsiyet tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Cinsiyet adi\",\"type\":\"string\"}}},\"CitizenshipLOV\":{\"title\":\"CitizenshipLOV\",\"description\":\"Vatandaşlık bilgilerini taşır\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Vatan adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"FormalEducationGradeLOV\":{\"title\":\"FormalEducationGradeLOV\",\"description\":\"Örgün eğitime ait okul seviyelerini tutar. Örneğin; Orta okul 1.Sınıf, Meslek lisesi 2.Sınıf, Üniversite 3.Sınıf vb.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Okul seviye adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/StudentProfileDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz." + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/students/{id}/addresses" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Students address list" + }, + "id": { + "element": "string", + "content": "getAllStudentAddresses" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Student ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Gets a list of all `Address` entities of `Student`." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "List of all `Address` entities of `Student`." + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/AddressCardDTO\"},\"definitions\":{\"AddressCardDTO\":{\"title\":\"AddressCardDTO\",\"description\":\"Address bilgisini sunar. Sadece full address bilgisini ve kategorisini verir.\\n Adres kategorisine ait kategori adı bilgisi “ContactMediumType” dır.\\n Yani contact medium type \\\"iletişimde bulunulacak adresler\\\" bilgisini ifade eder.\",\"type\":\"object\",\"properties\":{\"addressCategory\":{\"description\":\"Address kategorisi\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Full address. İl ilçe mahalle sokak gibi bütün bilgileri içerir.\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"ContactMediumCategoryLOV\":{\"title\":\"ContactMediumCategoryLOV\",\"description\":\"Contact medium kategorileri. Bir kategori tipine ait veriyi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Category Name\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/AddressCardDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz." + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + }, + "href": { + "element": "string", + "content": "/api/sbt/students/{id}/education/formal" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Talebenin örgün eğitim dönem listesini verir. Bir örgün eğitim döneminde dönem tarihi, okulu, bölümü, eğitim sınıfı, eğitim kategorisi, eğitim dili gibi bilgiler bulunur." + }, + "id": { + "element": "string", + "content": "getAllStudentFormalEducationInfos" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Student ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Gets a list of all `FormalEducationInfo` entities of `Student`." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#produces-accept" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Accept" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + } + }, + { + "element": "httpResponse", + "attributes": { + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#produces-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + }, + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "List of all `FormalEducationInfo` entities of `Student`." + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "[\n {\n \"createdBy\": \"aute dolor\",\n \"createdDate\": \"1976-10-24T02:03:16.839Z\",\n \"department\": \"et deserunt eu proident in\",\n \"educationLangName\": \"est Except\",\n \"educationStageName\": \"eiusmod cillum\",\n \"educationalGradeName\": \"deserunt ea mollit ullamco eu\",\n \"id\": 49915790,\n \"lastModifiedBy\": \"incididunt\",\n \"lastModifiedDate\": \"1971-01-07T19:04:46.156Z\",\n \"school\": {\n \"address\": [],\n \"contacts\": [],\n \"createdBy\": \"eiusmod officia dolore\",\n \"createdDate\": \"1960-11-13T06:05:26.359Z\",\n \"id\": -68315494,\n \"lastModifiedBy\": \"non\",\n \"lastModifiedDate\": \"2012-12-23T19:49:27.963Z\",\n \"name\": \"irure in ut\",\n \"type\": {\n \"createdBy\": \"tempor anim\",\n \"createdDate\": \"1952-08-05T11:47:59.252Z\",\n \"id\": -47792633,\n \"name\": \"ea consectetur ullamco aliqua in\"\n }\n },\n \"term\": {\n \"createdBy\": \"ea est nisi dolor\",\n \"createdDate\": \"1945-01-18T01:19:39.735Z\",\n \"endDate\": \"1972-02-27T23:11:53.556Z\",\n \"id\": 86406186,\n \"lastModifiedBy\": \"consect\",\n \"lastModifiedDate\": \"1957-08-03T18:13:03.201Z\",\n \"name\": \"Duis ad i\",\n \"startDate\": \"1983-12-23T09:33:28.857Z\"\n }\n }\n]" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/FormalEducationGradeInfoDTO\"},\"definitions\":{\"FormalEducationGradeInfoDTO\":{\"title\":\"FormalEducationGradeInfoDTO\",\"description\":\"Bir kişinin aldığı eğitimin bir dönemine ait bilgileri tutmaktadır.\\n Örneğin 4 yıllık bilgisayar mühendisliği bölümünden mezun olan bir kişi için bu dto dan 4 instance tutulmalı ve şu verileri barındırmalı.\\n\\n 1 - Formal Education - Iğdır üniversitesi - Mühendislik fakültesi - Bilgisayar mühendisliği - 2010.10.01(dönem başlangıcı) - 2011.05.02( dönem bitişi )\\n 2 - Formal Education - Iğdır üniversitesi - Mühendislik fakültesi - Bilgisayar mühendisliği - 2011.10.01(dönem başlangıcı) - 2012.05.02( dönem bitişi )\\n 3 - Formal Education - Abant Izzet Baysal üniversitesi - Mühendislik ve mimarlık fakültesi - Bilgisayar mühendisliği - 2012.10.01(dönem başlangıcı) - 2013.05.02( dönem bitişi )\\n 4 - Formal Education - Abant Izzet Baysal üniversitesi - Mühendislik ve mimarlık fakültesi - Bilgisayar mühendisliği - 2013.10.01(dönem başlangıcı) - 2014.05.02( dönem bitişi )\\n\\n Yukarıdaki örnekteki tek bir satırı bu dto tutmaktadır.\\n Kişi sonuç olarak Abant izzet baysal üniversitesi bilgisayar mühendisliği diplomasına sahip olsada dönemsel olarak eğitim verileri bu şekildedir.\\n\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"department\":{\"description\":\"Fakulte ve Bölüm bilgileri yer alır. Örneğin : Sosyal bilimler MYO - Pazarlama bölümü\",\"type\":\"string\"},\"educationLangName\":{\"description\":\"The language name used while learning\",\"type\":\"string\"},\"educationStageName\":{\"description\":\"Education stage. For example : Associate degree, Licanse degree etc.. \",\"type\":\"string\"},\"educationalGradeName\":{\"description\":\"Sınıf seviye adi\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"school\":{\"$ref\":\"#/definitions/SchoolProfileDTO\"},\"term\":{\"$ref\":\"#/definitions/EducationalTermDTO\"}}},\"EducationalTermDTO\":{\"title\":\"EducationalTermDTO\",\"description\":\"Bir eğitim döneminin tanımını tutar. Örneğin 2018-2019 Eğitim öğretim dönemi gibi.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"endDate\":{\"format\":\"date-time\",\"description\":\"Donem bitis tarihi\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Dönem adı\",\"type\":\"string\"},\"startDate\":{\"format\":\"date-time\",\"description\":\"Donem baslangic tarihi\",\"type\":\"string\"}}},\"SchoolProfileDTO\":{\"title\":\"SchoolProfileDTO\",\"description\":\"Bir okula ait bilgileri tutar. İlk okul - orta okul - lise - üniversite tipinde okulların tanımlarının yapıldığı modeldir.\",\"type\":\"object\",\"properties\":{\"address\":{\"description\":\"Okul adresi\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/AddressCardDTO\"}},\"contacts\":{\"description\":\"Iletisim bilgileri. Telefon mail vb.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactInfoDTO\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Okul adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"},\"type\":{\"$ref\":\"#/definitions/EducationalStageLOV\"}}},\"EducationalStageLOV\":{\"title\":\"EducationalStageLOV\",\"description\":\"Eğitim kategorilerini tutar. Örneğin; Ön lisans, Lisans vb.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Name information\",\"type\":\"string\"}}},\"ContactInfoDTO\":{\"title\":\"ContactInfoDTO\",\"description\":\"Iletisim bilgilerini sunmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Category of contact type. For example: Home address, Home telephone, Cell phone etc.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"contactInfo\":{\"description\":\"Telephone number or email address information depending on the type.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"ContactMediumCategoryLOV\":{\"title\":\"ContactMediumCategoryLOV\",\"description\":\"Contact medium kategorileri. Bir kategori tipine ait veriyi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Category Name\",\"type\":\"string\"}}},\"AddressCardDTO\":{\"title\":\"AddressCardDTO\",\"description\":\"Address bilgisini sunar. Sadece full address bilgisini ve kategorisini verir.\\n Adres kategorisine ait kategori adı bilgisi “ContactMediumType” dır.\\n Yani contact medium type \\\"iletişimde bulunulacak adresler\\\" bilgisini ifade eder.\",\"type\":\"object\",\"properties\":{\"addressCategory\":{\"description\":\"Address kategorisi\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Full address. İl ilçe mahalle sokak gibi bütün bilgileri içerir.\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/FormalEducationGradeInfoDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#produces-accept" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Accept" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + } + }, + { + "element": "httpResponse", + "attributes": { + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#produces-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + }, + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#produces-accept" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Accept" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + } + }, + { + "element": "httpResponse", + "attributes": { + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#produces-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + }, + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#produces-accept" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Accept" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + } + }, + { + "element": "httpResponse", + "attributes": { + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#produces-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + }, + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#produces-accept" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Accept" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + } + }, + { + "element": "httpResponse", + "attributes": { + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#produces-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + }, + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#produces-accept" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Accept" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + } + }, + { + "element": "httpResponse", + "attributes": { + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#produces-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + }, + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz." + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "formalEducationId" + }, + "value": { + "element": "number" + } + } + } + ] + }, + "href": { + "element": "string", + "content": "/api/sbt/students/{id}/education/formal/{formalEducationId}" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Talebenin bir örgün eğitim kaydını görüntülemek için kullanılır." + }, + "id": { + "element": "string", + "content": "getStudentEducationFormal" + } + }, + "content": [ + { + "element": "copy", + "content": "Talebenin bir örgün eğitim kaydını görüntülemek için kullanılır. bu kayıtların yeni kayıt ekleme, editleme, silme işlemleri aktif dönem için veya geçmiş dönem için ayrı ayrı yapılmalıdır." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "Görüntülenmek istenen formal eğitim bilgisi" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/FormalEducationGradeInfoDTO\"}],\"definitions\":{\"FormalEducationGradeInfoDTO\":{\"title\":\"FormalEducationGradeInfoDTO\",\"description\":\"Bir kişinin aldığı eğitimin bir dönemine ait bilgileri tutmaktadır.\\n Örneğin 4 yıllık bilgisayar mühendisliği bölümünden mezun olan bir kişi için bu dto dan 4 instance tutulmalı ve şu verileri barındırmalı.\\n\\n 1 - Formal Education - Iğdır üniversitesi - Mühendislik fakültesi - Bilgisayar mühendisliği - 2010.10.01(dönem başlangıcı) - 2011.05.02( dönem bitişi )\\n 2 - Formal Education - Iğdır üniversitesi - Mühendislik fakültesi - Bilgisayar mühendisliği - 2011.10.01(dönem başlangıcı) - 2012.05.02( dönem bitişi )\\n 3 - Formal Education - Abant Izzet Baysal üniversitesi - Mühendislik ve mimarlık fakültesi - Bilgisayar mühendisliği - 2012.10.01(dönem başlangıcı) - 2013.05.02( dönem bitişi )\\n 4 - Formal Education - Abant Izzet Baysal üniversitesi - Mühendislik ve mimarlık fakültesi - Bilgisayar mühendisliği - 2013.10.01(dönem başlangıcı) - 2014.05.02( dönem bitişi )\\n\\n Yukarıdaki örnekteki tek bir satırı bu dto tutmaktadır.\\n Kişi sonuç olarak Abant izzet baysal üniversitesi bilgisayar mühendisliği diplomasına sahip olsada dönemsel olarak eğitim verileri bu şekildedir.\\n\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"department\":{\"description\":\"Fakulte ve Bölüm bilgileri yer alır. Örneğin : Sosyal bilimler MYO - Pazarlama bölümü\",\"type\":\"string\"},\"educationLangName\":{\"description\":\"The language name used while learning\",\"type\":\"string\"},\"educationStageName\":{\"description\":\"Education stage. For example : Associate degree, Licanse degree etc.. \",\"type\":\"string\"},\"educationalGradeName\":{\"description\":\"Sınıf seviye adi\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"school\":{\"$ref\":\"#/definitions/SchoolProfileDTO\"},\"term\":{\"$ref\":\"#/definitions/EducationalTermDTO\"}}},\"EducationalTermDTO\":{\"title\":\"EducationalTermDTO\",\"description\":\"Bir eğitim döneminin tanımını tutar. Örneğin 2018-2019 Eğitim öğretim dönemi gibi.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"endDate\":{\"format\":\"date-time\",\"description\":\"Donem bitis tarihi\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Dönem adı\",\"type\":\"string\"},\"startDate\":{\"format\":\"date-time\",\"description\":\"Donem baslangic tarihi\",\"type\":\"string\"}}},\"SchoolProfileDTO\":{\"title\":\"SchoolProfileDTO\",\"description\":\"Bir okula ait bilgileri tutar. İlk okul - orta okul - lise - üniversite tipinde okulların tanımlarının yapıldığı modeldir.\",\"type\":\"object\",\"properties\":{\"address\":{\"description\":\"Okul adresi\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/AddressCardDTO\"}},\"contacts\":{\"description\":\"Iletisim bilgileri. Telefon mail vb.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactInfoDTO\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Okul adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"},\"type\":{\"$ref\":\"#/definitions/EducationalStageLOV\"}}},\"EducationalStageLOV\":{\"title\":\"EducationalStageLOV\",\"description\":\"Eğitim kategorilerini tutar. Örneğin; Ön lisans, Lisans vb.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Name information\",\"type\":\"string\"}}},\"ContactInfoDTO\":{\"title\":\"ContactInfoDTO\",\"description\":\"Iletisim bilgilerini sunmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Category of contact type. For example: Home address, Home telephone, Cell phone etc.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"contactInfo\":{\"description\":\"Telephone number or email address information depending on the type.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"ContactMediumCategoryLOV\":{\"title\":\"ContactMediumCategoryLOV\",\"description\":\"Contact medium kategorileri. Bir kategori tipine ait veriyi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Category Name\",\"type\":\"string\"}}},\"AddressCardDTO\":{\"title\":\"AddressCardDTO\",\"description\":\"Address bilgisini sunar. Sadece full address bilgisini ve kategorisini verir.\\n Adres kategorisine ait kategori adı bilgisi “ContactMediumType” dır.\\n Yani contact medium type \\\"iletişimde bulunulacak adresler\\\" bilgisini ifade eder.\",\"type\":\"object\",\"properties\":{\"addressCategory\":{\"description\":\"Address kategorisi\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Full address. İl ilçe mahalle sokak gibi bütün bilgileri içerir.\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/FormalEducationGradeInfoDTO" + } + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/students/{id}/education/internal" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Talebenin dahili eğitim dönem listesini verir." + }, + "id": { + "element": "string", + "content": "getAllStudentInternalEducationInfos" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Student ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Gets a list of all `InternalEducationInfo` entities of `Student`." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#produces-accept" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Accept" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + } + }, + { + "element": "httpResponse", + "attributes": { + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#produces-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + }, + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "List of all `InternalEducationInfo` entities of `Student`." + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "[\n {\n \"corporation\": {\n \"createdBy\": \"sunt Duis ipsum adipisicing\",\n \"createdDate\": \"2005-01-18T16:10:10.715Z\",\n \"id\": -96625100,\n \"name\": \"dolor\"\n },\n \"createdBy\": \"minim Duis\",\n \"createdDate\": \"2004-01-18T15:32:14.820Z\",\n \"educationalGradeName\": \"commodo aliquip ex ea eiusmod\",\n \"educationalStageName\": \"sed laboris Excepteur ut\",\n \"id\": -60741509,\n \"lastModifiedBy\": \"quis aute tempor laboris\",\n \"lastModifiedDate\": \"2007-07-31T19:49:37.918Z\",\n \"term\": {\n \"createdBy\": \"commodo magna aliqua Excepteur\",\n \"createdDate\": \"1992-08-18T16:06:30.163Z\",\n \"endDate\": \"1962-03-31T01:10:19.731Z\",\n \"id\": -53444085,\n \"lastModifiedBy\": \"Ut reprehenderit ad\",\n \"lastModifiedDate\": \"2009-08-09T10:40:32.495Z\",\n \"name\": \"sed voluptate deserunt\",\n \"startDate\": \"1956-09-29T17:21:46.189Z\"\n }\n }\n]" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/InternalEducationGradeInfoDTO\"},\"definitions\":{\"InternalEducationGradeInfoDTO\":{\"title\":\"InternalEducationGradeInfoDTO\",\"description\":\"Talebe veya personelin dahili egitim donemini tutar. Dahili egitim donemi bir kisinin bir Kurumda gecirdigi bir donemi sergiler. Örneğin; 2018-2019 Dahili ders dönemi Ümraniye Kurumunda S1 sınıfı öğrencisi gibi bir bilgi tutulur.\",\"type\":\"object\",\"properties\":{\"corporation\":{\"$ref\":\"#/definitions/CorporationLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"educationalGradeName\":{\"description\":\"Eğitim sınıfı adı\",\"type\":\"string\"},\"educationalStageName\":{\"description\":\"Eğitim kademe adı\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"term\":{\"$ref\":\"#/definitions/EducationalTermDTO\"}}},\"EducationalTermDTO\":{\"title\":\"EducationalTermDTO\",\"description\":\"Bir eğitim döneminin tanımını tutar. Örneğin 2018-2019 Eğitim öğretim dönemi gibi.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"endDate\":{\"format\":\"date-time\",\"description\":\"Donem bitis tarihi\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Dönem adı\",\"type\":\"string\"},\"startDate\":{\"format\":\"date-time\",\"description\":\"Donem baslangic tarihi\",\"type\":\"string\"}}},\"CorporationLOV\":{\"title\":\"CorporationLOV\",\"description\":\"Kurum tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Kurum adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/InternalEducationGradeInfoDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#produces-accept" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Accept" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + } + }, + { + "element": "httpResponse", + "attributes": { + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#produces-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + }, + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#produces-accept" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Accept" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + } + }, + { + "element": "httpResponse", + "attributes": { + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#produces-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + }, + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#produces-accept" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Accept" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + } + }, + { + "element": "httpResponse", + "attributes": { + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#produces-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + }, + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#produces-accept" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Accept" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + } + }, + { + "element": "httpResponse", + "attributes": { + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#produces-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + }, + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#produces-accept" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Accept" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + } + }, + { + "element": "httpResponse", + "attributes": { + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#produces-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + }, + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz." + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/students/{id}/education/internal/current-level" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Talebenin aktif dahili eğitim seviyesini günceller. Talebenin güncel dahili eğitim dönemi üzerinde değişiklik yapılabilir, geriye dönük değişiklik yapılamaz." + }, + "id": { + "element": "string", + "content": "updateStudentInternalEducationLevel" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Student ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Talebenin aktif dahili eğitim seviyesini değiştirir. Mevcut seviye yetki ile değiştirilebilmeli." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "49070126" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"format\":\"int64\",\"type\":\"integer\"}" + }, + { + "element": "dataStructure", + "content": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'int64'" + } + } + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/InternalEducationGradeInfoDTO\"}],\"definitions\":{\"InternalEducationGradeInfoDTO\":{\"title\":\"InternalEducationGradeInfoDTO\",\"description\":\"Talebe veya personelin dahili egitim donemini tutar. Dahili egitim donemi bir kisinin bir Kurumda gecirdigi bir donemi sergiler. Örneğin; 2018-2019 Dahili ders dönemi Ümraniye Kurumunda S1 sınıfı öğrencisi gibi bir bilgi tutulur.\",\"type\":\"object\",\"properties\":{\"corporation\":{\"$ref\":\"#/definitions/CorporationLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"educationalGradeName\":{\"description\":\"Eğitim sınıfı adı\",\"type\":\"string\"},\"educationalStageName\":{\"description\":\"Eğitim kademe adı\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"term\":{\"$ref\":\"#/definitions/EducationalTermDTO\"}}},\"EducationalTermDTO\":{\"title\":\"EducationalTermDTO\",\"description\":\"Bir eğitim döneminin tanımını tutar. Örneğin 2018-2019 Eğitim öğretim dönemi gibi.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"endDate\":{\"format\":\"date-time\",\"description\":\"Donem bitis tarihi\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Dönem adı\",\"type\":\"string\"},\"startDate\":{\"format\":\"date-time\",\"description\":\"Donem baslangic tarihi\",\"type\":\"string\"}}},\"CorporationLOV\":{\"title\":\"CorporationLOV\",\"description\":\"Kurum tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Kurum adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/InternalEducationGradeInfoDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "69260509" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"format\":\"int64\",\"type\":\"integer\"}" + }, + { + "element": "dataStructure", + "content": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'int64'" + } + } + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "68532664" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"format\":\"int64\",\"type\":\"integer\"}" + }, + { + "element": "dataStructure", + "content": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'int64'" + } + } + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "202" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/InternalEducationGradeInfoDTO\"}],\"definitions\":{\"InternalEducationGradeInfoDTO\":{\"title\":\"InternalEducationGradeInfoDTO\",\"description\":\"Talebe veya personelin dahili egitim donemini tutar. Dahili egitim donemi bir kisinin bir Kurumda gecirdigi bir donemi sergiler. Örneğin; 2018-2019 Dahili ders dönemi Ümraniye Kurumunda S1 sınıfı öğrencisi gibi bir bilgi tutulur.\",\"type\":\"object\",\"properties\":{\"corporation\":{\"$ref\":\"#/definitions/CorporationLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"educationalGradeName\":{\"description\":\"Eğitim sınıfı adı\",\"type\":\"string\"},\"educationalStageName\":{\"description\":\"Eğitim kademe adı\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"term\":{\"$ref\":\"#/definitions/EducationalTermDTO\"}}},\"EducationalTermDTO\":{\"title\":\"EducationalTermDTO\",\"description\":\"Bir eğitim döneminin tanımını tutar. Örneğin 2018-2019 Eğitim öğretim dönemi gibi.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"endDate\":{\"format\":\"date-time\",\"description\":\"Donem bitis tarihi\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Dönem adı\",\"type\":\"string\"},\"startDate\":{\"format\":\"date-time\",\"description\":\"Donem baslangic tarihi\",\"type\":\"string\"}}},\"CorporationLOV\":{\"title\":\"CorporationLOV\",\"description\":\"Kurum tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Kurum adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/InternalEducationGradeInfoDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "55364629" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"format\":\"int64\",\"type\":\"integer\"}" + }, + { + "element": "dataStructure", + "content": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'int64'" + } + } + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "-2441400" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"format\":\"int64\",\"type\":\"integer\"}" + }, + { + "element": "dataStructure", + "content": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'int64'" + } + } + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "12385961" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"format\":\"int64\",\"type\":\"integer\"}" + }, + { + "element": "dataStructure", + "content": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'int64'" + } + } + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "21622871" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"format\":\"int64\",\"type\":\"integer\"}" + }, + { + "element": "dataStructure", + "content": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'int64'" + } + } + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "39569650" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"format\":\"int64\",\"type\":\"integer\"}" + }, + { + "element": "dataStructure", + "content": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'int64'" + } + } + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz." + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/students/{id}/electronic-addresses" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Students electronic address list" + }, + "id": { + "element": "string", + "content": "getAllStudentElectronicAddresses" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Student ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Gets a list of all `ContactInfoDTO` entities of `Student`." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "List of all `ContactInfoDTO` entities of `Student`." + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactInfoDTO\"},\"definitions\":{\"ContactInfoDTO\":{\"title\":\"ContactInfoDTO\",\"description\":\"Iletisim bilgilerini sunmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Category of contact type. For example: Home address, Home telephone, Cell phone etc.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"contactInfo\":{\"description\":\"Telephone number or email address information depending on the type.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"ContactMediumCategoryLOV\":{\"title\":\"ContactMediumCategoryLOV\",\"description\":\"Contact medium kategorileri. Bir kategori tipine ait veriyi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Category Name\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/ContactInfoDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz." + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Talebeye yeni elektronik adres ekler" + }, + "id": { + "element": "string", + "content": "createStudentElectronicAddress" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Student ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Talebeye yeni elektronik adres ekler" + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"categories\": [],\n \"contactInfo\": \"Ut Lorem in\",\n \"createdBy\": \"commodo mollit elit sint ut\",\n \"createdDate\": \"2004-08-02T02:29:30.720Z\",\n \"lastModifiedBy\": \"in aliquip Duis exercitation\",\n \"lastModifiedDate\": \"2011-09-29T17:12:18.086Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"categories\": [],\n \"contactInfo\": \"ut qui\",\n \"createdBy\": \"laboris ex\",\n \"createdDate\": \"2019-08-16T20:49:35.421Z\",\n \"lastModifiedBy\": \"in\",\n \"lastModifiedDate\": \"1966-11-26T13:51:08.200Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"categories\": [],\n \"contactInfo\": \"ipsum consectetur minim eu voluptate\",\n \"createdBy\": \"eu ut\",\n \"createdDate\": \"1989-12-11T20:00:57.938Z\",\n \"lastModifiedBy\": \"non\",\n \"lastModifiedDate\": \"1952-06-05T20:36:56.798Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"categories\": [],\n \"contactInfo\": \"enim irure in esse eu\",\n \"createdBy\": \"proident\",\n \"createdDate\": \"1947-08-26T08:15:41.858Z\",\n \"lastModifiedBy\": \"sunt pariatur anim velit\",\n \"lastModifiedDate\": \"1975-11-24T15:59:51.492Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"categories\": [],\n \"contactInfo\": \"magna non dolore sint mollit\",\n \"createdBy\": \"cillum ex laborum quis nulla\",\n \"createdDate\": \"1994-11-01T03:29:42.212Z\",\n \"lastModifiedBy\": \"adipisicing anim in\",\n \"lastModifiedDate\": \"1957-08-24T21:37:50.428Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"categories\": [],\n \"contactInfo\": \"in enim\",\n \"createdBy\": \"dolor incididunt adipisicing esse eu\",\n \"createdDate\": \"2019-11-14T04:32:53.790Z\",\n \"lastModifiedBy\": \"nulla commodo sunt\",\n \"lastModifiedDate\": \"1979-06-24T20:35:58.839Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"categories\": [],\n \"contactInfo\": \"non nostrud Lorem sed est\",\n \"createdBy\": \"magna Ut dolore labore eu\",\n \"createdDate\": \"1987-08-03T03:13:07.382Z\",\n \"lastModifiedBy\": \"ipsum\",\n \"lastModifiedDate\": \"1975-01-18T17:20:54.662Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz." + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/students/{id}/electronic-addresses/{contactId}" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Talebenin email bilgilerini günceller" + }, + "id": { + "element": "string", + "content": "updateStudentElectronicAddress" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Electronic address contact id" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "contactId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Student ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Talebenin emailini günceller" + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"categories\": [],\n \"contactInfo\": \"sit commodo\",\n \"createdBy\": \"adipisicing laboris commodo\",\n \"createdDate\": \"1968-10-24T09:23:14.442Z\",\n \"lastModifiedBy\": \"culpa tempor pariatur labore\",\n \"lastModifiedDate\": \"1946-12-07T00:18:33.674Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/ContactInfoDTO\"}],\"definitions\":{\"ContactInfoDTO\":{\"title\":\"ContactInfoDTO\",\"description\":\"Iletisim bilgilerini sunmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Category of contact type. For example: Home address, Home telephone, Cell phone etc.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"contactInfo\":{\"description\":\"Telephone number or email address information depending on the type.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"ContactMediumCategoryLOV\":{\"title\":\"ContactMediumCategoryLOV\",\"description\":\"Contact medium kategorileri. Bir kategori tipine ait veriyi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Category Name\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"categories\": [],\n \"contactInfo\": \"amet in ut ullamco\",\n \"createdBy\": \"anim incididunt\",\n \"createdDate\": \"1947-06-12T08:52:12.428Z\",\n \"lastModifiedBy\": \"minim cillum reprehenderit do\",\n \"lastModifiedDate\": \"1985-05-05T12:57:27.745Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"categories\": [],\n \"contactInfo\": \"officia ad in\",\n \"createdBy\": \"ipsum consequat\",\n \"createdDate\": \"2010-05-25T04:08:31.832Z\",\n \"lastModifiedBy\": \"magna\",\n \"lastModifiedDate\": \"1989-02-22T15:24:17.694Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "202" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/ContactInfoDTO\"}],\"definitions\":{\"ContactInfoDTO\":{\"title\":\"ContactInfoDTO\",\"description\":\"Iletisim bilgilerini sunmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Category of contact type. For example: Home address, Home telephone, Cell phone etc.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"contactInfo\":{\"description\":\"Telephone number or email address information depending on the type.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"ContactMediumCategoryLOV\":{\"title\":\"ContactMediumCategoryLOV\",\"description\":\"Contact medium kategorileri. Bir kategori tipine ait veriyi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Category Name\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"categories\": [],\n \"contactInfo\": \"eu non d\",\n \"createdBy\": \"est ut\",\n \"createdDate\": \"1962-12-23T00:31:51.194Z\",\n \"lastModifiedBy\": \"Ut ipsu\",\n \"lastModifiedDate\": \"1999-10-26T12:39:32.033Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"categories\": [],\n \"contactInfo\": \"et anim minim deserunt\",\n \"createdBy\": \"ut commodo\",\n \"createdDate\": \"1966-02-11T18:16:49.447Z\",\n \"lastModifiedBy\": \"aliqua\",\n \"lastModifiedDate\": \"1989-04-28T15:19:42.207Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"categories\": [],\n \"contactInfo\": \"eiusmod \",\n \"createdBy\": \"et velit aliqua irure mollit\",\n \"createdDate\": \"2015-02-15T04:06:00.787Z\",\n \"lastModifiedBy\": \"commodo in nostrud\",\n \"lastModifiedDate\": \"1999-04-06T06:30:31.394Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"categories\": [],\n \"contactInfo\": \"cillum pa\",\n \"createdBy\": \"commodo anim\",\n \"createdDate\": \"1969-03-11T02:25:02.615Z\",\n \"lastModifiedBy\": \"tempor ea eiusmod\",\n \"lastModifiedDate\": \"1977-04-25T08:30:48.609Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"categories\": [],\n \"contactInfo\": \"irure\",\n \"createdBy\": \"consectetur voluptate sit pariatur culpa\",\n \"createdDate\": \"2018-01-23T09:23:35.293Z\",\n \"lastModifiedBy\": \"velit aliqua pariatur ea minim\",\n \"lastModifiedDate\": \"2014-01-24T12:12:26.091Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz. " + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Talebeye ait elektronik posta adresi silme işlemini yapar" + }, + "id": { + "element": "string", + "content": "deleteStudentElectronicAddress" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Electronic address contact id" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "contactId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Student ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Öğrenciye ait elektronik posta adresi silme işlemini yapar" + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "204" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz." + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/students/{id}/foreign-languages" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Students ForeignLangInfoDTO list" + }, + "id": { + "element": "string", + "content": "getAllStudentForeignLangInfos" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Student ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Gets a list of all `ForeignLangInfoDTO` entities of `Student`." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "List of all `ForeignLangInfoDTO` entities of `Student`." + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ForeignLangInfoDTO\"},\"definitions\":{\"ForeignLangInfoDTO\":{\"title\":\"ForeignLangInfoDTO\",\"description\":\"Referans tiplerinden gelicek olan yabancı dil bilgilerini kullanır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"foreignLang\":{\"$ref\":\"#/definitions/ForeignLanguageLOV\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"listening\":{\"format\":\"int32\",\"description\":\"Foreign language listening score\",\"type\":\"integer\"},\"reading\":{\"format\":\"int32\",\"description\":\"Foreign language reading score\",\"type\":\"integer\"},\"speaking\":{\"format\":\"int32\",\"description\":\"Foreign language speaking score\",\"type\":\"integer\"},\"writing\":{\"format\":\"int32\",\"description\":\"Foreign language writing score\",\"type\":\"integer\"}}},\"ForeignLanguageLOV\":{\"title\":\"ForeignLanguageLOV\",\"description\":\"Sabit tanımlanmış yabancı dil bilgisini tutar. Comboboxlar için yabancı dil listesi dönmek için kullanılmaktadır. LanguageCode ile aynı veri değildir. Bu dtoya sağlanan veride olası bütün yabancı diller bulunabilir. LanguageCode sadece sistem içerisinde kullanılan dilleri içerir.\",\"type\":\"object\",\"properties\":{\"code\":{\"description\":\"Yabancı Dil bilgisi kodu\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Yabancı Dil bilgisi adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/ForeignLangInfoDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz." + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Talebeye yeni yabancı dil bilgisi ekler" + }, + "id": { + "element": "string", + "content": "createStudentForeignLangInfoDTO" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Student ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Talebeye yeni yabancı dil bilgisi ekler" + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"mollit Lorem\",\n \"createdDate\": \"2000-09-05T06:27:56.729Z\",\n \"foreignLang\": {\n \"code\": \"est sint irure officia adipisicing\",\n \"createdBy\": \"nulla\",\n \"createdDate\": \"2009-10-15T12:01:14.005Z\",\n \"id\": 92844,\n \"name\": \"aute id\"\n },\n \"id\": 60425936,\n \"lastModifiedBy\": \"tempor culpa non qui\",\n \"lastModifiedDate\": \"1991-08-26T23:40:59.846Z\",\n \"listening\": 20794582,\n \"reading\": -5836792,\n \"speaking\": 85616505,\n \"writing\": -56246431\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/ForeignLangInfoDTO\"}],\"definitions\":{\"ForeignLangInfoDTO\":{\"title\":\"ForeignLangInfoDTO\",\"description\":\"Referans tiplerinden gelicek olan yabancı dil bilgilerini kullanır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"foreignLang\":{\"$ref\":\"#/definitions/ForeignLanguageLOV\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"listening\":{\"format\":\"int32\",\"description\":\"Foreign language listening score\",\"type\":\"integer\"},\"reading\":{\"format\":\"int32\",\"description\":\"Foreign language reading score\",\"type\":\"integer\"},\"speaking\":{\"format\":\"int32\",\"description\":\"Foreign language speaking score\",\"type\":\"integer\"},\"writing\":{\"format\":\"int32\",\"description\":\"Foreign language writing score\",\"type\":\"integer\"}}},\"ForeignLanguageLOV\":{\"title\":\"ForeignLanguageLOV\",\"description\":\"Sabit tanımlanmış yabancı dil bilgisini tutar. Comboboxlar için yabancı dil listesi dönmek için kullanılmaktadır. LanguageCode ile aynı veri değildir. Bu dtoya sağlanan veride olası bütün yabancı diller bulunabilir. LanguageCode sadece sistem içerisinde kullanılan dilleri içerir.\",\"type\":\"object\",\"properties\":{\"code\":{\"description\":\"Yabancı Dil bilgisi kodu\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Yabancı Dil bilgisi adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ForeignLangInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/ForeignLangInfoDTO\"}],\"definitions\":{\"ForeignLangInfoDTO\":{\"title\":\"ForeignLangInfoDTO\",\"description\":\"Referans tiplerinden gelicek olan yabancı dil bilgilerini kullanır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"foreignLang\":{\"$ref\":\"#/definitions/ForeignLanguageLOV\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"listening\":{\"format\":\"int32\",\"description\":\"Foreign language listening score\",\"type\":\"integer\"},\"reading\":{\"format\":\"int32\",\"description\":\"Foreign language reading score\",\"type\":\"integer\"},\"speaking\":{\"format\":\"int32\",\"description\":\"Foreign language speaking score\",\"type\":\"integer\"},\"writing\":{\"format\":\"int32\",\"description\":\"Foreign language writing score\",\"type\":\"integer\"}}},\"ForeignLanguageLOV\":{\"title\":\"ForeignLanguageLOV\",\"description\":\"Sabit tanımlanmış yabancı dil bilgisini tutar. Comboboxlar için yabancı dil listesi dönmek için kullanılmaktadır. LanguageCode ile aynı veri değildir. Bu dtoya sağlanan veride olası bütün yabancı diller bulunabilir. LanguageCode sadece sistem içerisinde kullanılan dilleri içerir.\",\"type\":\"object\",\"properties\":{\"code\":{\"description\":\"Yabancı Dil bilgisi kodu\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Yabancı Dil bilgisi adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ForeignLangInfoDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"dolore tempor in qui\",\n \"createdDate\": \"1975-05-21T22:49:26.823Z\",\n \"foreignLang\": {\n \"code\": \"in\",\n \"createdBy\": \"consectetur reprehenderit\",\n \"createdDate\": \"1947-01-11T04:52:05.850Z\",\n \"id\": -38467776,\n \"name\": \"incididunt ex\"\n },\n \"id\": -55007459,\n \"lastModifiedBy\": \"cillum ipsum enim\",\n \"lastModifiedDate\": \"1943-11-20T17:41:51.886Z\",\n \"listening\": -82221169,\n \"reading\": 846007,\n \"speaking\": 95232981,\n \"writing\": -65070084\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/ForeignLangInfoDTO\"}],\"definitions\":{\"ForeignLangInfoDTO\":{\"title\":\"ForeignLangInfoDTO\",\"description\":\"Referans tiplerinden gelicek olan yabancı dil bilgilerini kullanır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"foreignLang\":{\"$ref\":\"#/definitions/ForeignLanguageLOV\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"listening\":{\"format\":\"int32\",\"description\":\"Foreign language listening score\",\"type\":\"integer\"},\"reading\":{\"format\":\"int32\",\"description\":\"Foreign language reading score\",\"type\":\"integer\"},\"speaking\":{\"format\":\"int32\",\"description\":\"Foreign language speaking score\",\"type\":\"integer\"},\"writing\":{\"format\":\"int32\",\"description\":\"Foreign language writing score\",\"type\":\"integer\"}}},\"ForeignLanguageLOV\":{\"title\":\"ForeignLanguageLOV\",\"description\":\"Sabit tanımlanmış yabancı dil bilgisini tutar. Comboboxlar için yabancı dil listesi dönmek için kullanılmaktadır. LanguageCode ile aynı veri değildir. Bu dtoya sağlanan veride olası bütün yabancı diller bulunabilir. LanguageCode sadece sistem içerisinde kullanılan dilleri içerir.\",\"type\":\"object\",\"properties\":{\"code\":{\"description\":\"Yabancı Dil bilgisi kodu\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Yabancı Dil bilgisi adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ForeignLangInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Öğrencinin tüm yabancı dil bilgilerini liste halinde döner." + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/ForeignLangInfoDTO\"}],\"definitions\":{\"ForeignLangInfoDTO\":{\"title\":\"ForeignLangInfoDTO\",\"description\":\"Referans tiplerinden gelicek olan yabancı dil bilgilerini kullanır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"foreignLang\":{\"$ref\":\"#/definitions/ForeignLanguageLOV\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"listening\":{\"format\":\"int32\",\"description\":\"Foreign language listening score\",\"type\":\"integer\"},\"reading\":{\"format\":\"int32\",\"description\":\"Foreign language reading score\",\"type\":\"integer\"},\"speaking\":{\"format\":\"int32\",\"description\":\"Foreign language speaking score\",\"type\":\"integer\"},\"writing\":{\"format\":\"int32\",\"description\":\"Foreign language writing score\",\"type\":\"integer\"}}},\"ForeignLanguageLOV\":{\"title\":\"ForeignLanguageLOV\",\"description\":\"Sabit tanımlanmış yabancı dil bilgisini tutar. Comboboxlar için yabancı dil listesi dönmek için kullanılmaktadır. LanguageCode ile aynı veri değildir. Bu dtoya sağlanan veride olası bütün yabancı diller bulunabilir. LanguageCode sadece sistem içerisinde kullanılan dilleri içerir.\",\"type\":\"object\",\"properties\":{\"code\":{\"description\":\"Yabancı Dil bilgisi kodu\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Yabancı Dil bilgisi adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ForeignLangInfoDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"eu fugiat\",\n \"createdDate\": \"1980-05-27T23:40:37.222Z\",\n \"foreignLang\": {\n \"code\": \"do quis velit Duis\",\n \"createdBy\": \"sed consectetur\",\n \"createdDate\": \"1960-03-23T16:08:53.243Z\",\n \"id\": 46108992,\n \"name\": \"in velit\"\n },\n \"id\": 82574517,\n \"lastModifiedBy\": \"est Excepteur Ut magna\",\n \"lastModifiedDate\": \"1996-02-23T03:21:00.343Z\",\n \"listening\": 63166360,\n \"reading\": -79264660,\n \"speaking\": -36417374,\n \"writing\": 14443414\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/ForeignLangInfoDTO\"}],\"definitions\":{\"ForeignLangInfoDTO\":{\"title\":\"ForeignLangInfoDTO\",\"description\":\"Referans tiplerinden gelicek olan yabancı dil bilgilerini kullanır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"foreignLang\":{\"$ref\":\"#/definitions/ForeignLanguageLOV\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"listening\":{\"format\":\"int32\",\"description\":\"Foreign language listening score\",\"type\":\"integer\"},\"reading\":{\"format\":\"int32\",\"description\":\"Foreign language reading score\",\"type\":\"integer\"},\"speaking\":{\"format\":\"int32\",\"description\":\"Foreign language speaking score\",\"type\":\"integer\"},\"writing\":{\"format\":\"int32\",\"description\":\"Foreign language writing score\",\"type\":\"integer\"}}},\"ForeignLanguageLOV\":{\"title\":\"ForeignLanguageLOV\",\"description\":\"Sabit tanımlanmış yabancı dil bilgisini tutar. Comboboxlar için yabancı dil listesi dönmek için kullanılmaktadır. LanguageCode ile aynı veri değildir. Bu dtoya sağlanan veride olası bütün yabancı diller bulunabilir. LanguageCode sadece sistem içerisinde kullanılan dilleri içerir.\",\"type\":\"object\",\"properties\":{\"code\":{\"description\":\"Yabancı Dil bilgisi kodu\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Yabancı Dil bilgisi adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ForeignLangInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"laborum\",\n \"createdDate\": \"1959-12-22T05:09:13.162Z\",\n \"foreignLang\": {\n \"code\": \"commodo adipisicing in\",\n \"createdBy\": \"minim dolor pariatur\",\n \"createdDate\": \"1983-10-16T07:14:24.937Z\",\n \"id\": 86623782,\n \"name\": \"voluptate ad\"\n },\n \"id\": -41011666,\n \"lastModifiedBy\": \"et\",\n \"lastModifiedDate\": \"1956-10-15T04:22:06.196Z\",\n \"listening\": -79328110,\n \"reading\": -62227893,\n \"speaking\": 69864500,\n \"writing\": -3608977\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/ForeignLangInfoDTO\"}],\"definitions\":{\"ForeignLangInfoDTO\":{\"title\":\"ForeignLangInfoDTO\",\"description\":\"Referans tiplerinden gelicek olan yabancı dil bilgilerini kullanır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"foreignLang\":{\"$ref\":\"#/definitions/ForeignLanguageLOV\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"listening\":{\"format\":\"int32\",\"description\":\"Foreign language listening score\",\"type\":\"integer\"},\"reading\":{\"format\":\"int32\",\"description\":\"Foreign language reading score\",\"type\":\"integer\"},\"speaking\":{\"format\":\"int32\",\"description\":\"Foreign language speaking score\",\"type\":\"integer\"},\"writing\":{\"format\":\"int32\",\"description\":\"Foreign language writing score\",\"type\":\"integer\"}}},\"ForeignLanguageLOV\":{\"title\":\"ForeignLanguageLOV\",\"description\":\"Sabit tanımlanmış yabancı dil bilgisini tutar. Comboboxlar için yabancı dil listesi dönmek için kullanılmaktadır. LanguageCode ile aynı veri değildir. Bu dtoya sağlanan veride olası bütün yabancı diller bulunabilir. LanguageCode sadece sistem içerisinde kullanılan dilleri içerir.\",\"type\":\"object\",\"properties\":{\"code\":{\"description\":\"Yabancı Dil bilgisi kodu\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Yabancı Dil bilgisi adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ForeignLangInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"reprehenderit Ut ipsum incid\",\n \"createdDate\": \"1986-05-28T10:50:50.543Z\",\n \"foreignLang\": {\n \"code\": \"amet nisi quis\",\n \"createdBy\": \"exercitation dolore aute\",\n \"createdDate\": \"1942-11-13T16:21:08.677Z\",\n \"id\": 40076812,\n \"name\": \"sint dolor dolore fugiat ullamco\"\n },\n \"id\": -77072776,\n \"lastModifiedBy\": \"non in labore laborum\",\n \"lastModifiedDate\": \"1955-08-05T01:09:40.319Z\",\n \"listening\": 69779919,\n \"reading\": -14884569,\n \"speaking\": -45053715,\n \"writing\": -77890456\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/ForeignLangInfoDTO\"}],\"definitions\":{\"ForeignLangInfoDTO\":{\"title\":\"ForeignLangInfoDTO\",\"description\":\"Referans tiplerinden gelicek olan yabancı dil bilgilerini kullanır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"foreignLang\":{\"$ref\":\"#/definitions/ForeignLanguageLOV\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"listening\":{\"format\":\"int32\",\"description\":\"Foreign language listening score\",\"type\":\"integer\"},\"reading\":{\"format\":\"int32\",\"description\":\"Foreign language reading score\",\"type\":\"integer\"},\"speaking\":{\"format\":\"int32\",\"description\":\"Foreign language speaking score\",\"type\":\"integer\"},\"writing\":{\"format\":\"int32\",\"description\":\"Foreign language writing score\",\"type\":\"integer\"}}},\"ForeignLanguageLOV\":{\"title\":\"ForeignLanguageLOV\",\"description\":\"Sabit tanımlanmış yabancı dil bilgisini tutar. Comboboxlar için yabancı dil listesi dönmek için kullanılmaktadır. LanguageCode ile aynı veri değildir. Bu dtoya sağlanan veride olası bütün yabancı diller bulunabilir. LanguageCode sadece sistem içerisinde kullanılan dilleri içerir.\",\"type\":\"object\",\"properties\":{\"code\":{\"description\":\"Yabancı Dil bilgisi kodu\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Yabancı Dil bilgisi adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ForeignLangInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"quis\",\n \"createdDate\": \"1990-08-21T03:45:02.880Z\",\n \"foreignLang\": {\n \"code\": \"et\",\n \"createdBy\": \"aute\",\n \"createdDate\": \"1992-03-10T06:06:33.079Z\",\n \"id\": -18701449,\n \"name\": \"deserunt esse\"\n },\n \"id\": -53419775,\n \"lastModifiedBy\": \"do\",\n \"lastModifiedDate\": \"1981-10-19T08:05:09.162Z\",\n \"listening\": -99175971,\n \"reading\": -22459068,\n \"speaking\": -79573481,\n \"writing\": 71253144\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/ForeignLangInfoDTO\"}],\"definitions\":{\"ForeignLangInfoDTO\":{\"title\":\"ForeignLangInfoDTO\",\"description\":\"Referans tiplerinden gelicek olan yabancı dil bilgilerini kullanır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"foreignLang\":{\"$ref\":\"#/definitions/ForeignLanguageLOV\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"listening\":{\"format\":\"int32\",\"description\":\"Foreign language listening score\",\"type\":\"integer\"},\"reading\":{\"format\":\"int32\",\"description\":\"Foreign language reading score\",\"type\":\"integer\"},\"speaking\":{\"format\":\"int32\",\"description\":\"Foreign language speaking score\",\"type\":\"integer\"},\"writing\":{\"format\":\"int32\",\"description\":\"Foreign language writing score\",\"type\":\"integer\"}}},\"ForeignLanguageLOV\":{\"title\":\"ForeignLanguageLOV\",\"description\":\"Sabit tanımlanmış yabancı dil bilgisini tutar. Comboboxlar için yabancı dil listesi dönmek için kullanılmaktadır. LanguageCode ile aynı veri değildir. Bu dtoya sağlanan veride olası bütün yabancı diller bulunabilir. LanguageCode sadece sistem içerisinde kullanılan dilleri içerir.\",\"type\":\"object\",\"properties\":{\"code\":{\"description\":\"Yabancı Dil bilgisi kodu\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Yabancı Dil bilgisi adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ForeignLangInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"ad\",\n \"createdDate\": \"1987-12-06T09:27:36.731Z\",\n \"foreignLang\": {\n \"code\": \"in laboris Ut\",\n \"createdBy\": \"aliquip qui consectetur culpa\",\n \"createdDate\": \"1966-08-14T23:49:02.841Z\",\n \"id\": -67381073,\n \"name\": \"commodo\"\n },\n \"id\": -96745574,\n \"lastModifiedBy\": \"in\",\n \"lastModifiedDate\": \"2012-07-26T00:23:47.036Z\",\n \"listening\": -79074717,\n \"reading\": 15214281,\n \"speaking\": 73393989,\n \"writing\": -16919714\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/ForeignLangInfoDTO\"}],\"definitions\":{\"ForeignLangInfoDTO\":{\"title\":\"ForeignLangInfoDTO\",\"description\":\"Referans tiplerinden gelicek olan yabancı dil bilgilerini kullanır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"foreignLang\":{\"$ref\":\"#/definitions/ForeignLanguageLOV\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"listening\":{\"format\":\"int32\",\"description\":\"Foreign language listening score\",\"type\":\"integer\"},\"reading\":{\"format\":\"int32\",\"description\":\"Foreign language reading score\",\"type\":\"integer\"},\"speaking\":{\"format\":\"int32\",\"description\":\"Foreign language speaking score\",\"type\":\"integer\"},\"writing\":{\"format\":\"int32\",\"description\":\"Foreign language writing score\",\"type\":\"integer\"}}},\"ForeignLanguageLOV\":{\"title\":\"ForeignLanguageLOV\",\"description\":\"Sabit tanımlanmış yabancı dil bilgisini tutar. Comboboxlar için yabancı dil listesi dönmek için kullanılmaktadır. LanguageCode ile aynı veri değildir. Bu dtoya sağlanan veride olası bütün yabancı diller bulunabilir. LanguageCode sadece sistem içerisinde kullanılan dilleri içerir.\",\"type\":\"object\",\"properties\":{\"code\":{\"description\":\"Yabancı Dil bilgisi kodu\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Yabancı Dil bilgisi adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ForeignLangInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz. " + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/students/{id}/foreign-languages/{foreignLanguageId}" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Talebenin dil bilgisini günceller" + }, + "id": { + "element": "string", + "content": "updateStudentForeignLanguageInfo" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Students Foreign language information id" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "foreignLanguageId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Student ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Talebenin dil bilgisini günceller //TODO:Dilin konuşma-okuma-dinleme-yazma boyutunda ayrı servislere ayrıştırılabilir. Şu an bir dil için bunların hepsi aynı anda güncelleniyor." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"commodo id ex culpa\",\n \"createdDate\": \"1983-11-23T10:03:47.801Z\",\n \"foreignLang\": {\n \"code\": \"enim ipsum in Ut cillum\",\n \"createdBy\": \"id nostrud\",\n \"createdDate\": \"1979-03-25T02:54:55.920Z\",\n \"id\": 84014809,\n \"name\": \"et fugiat sit\"\n },\n \"id\": 11836477,\n \"lastModifiedBy\": \"fugiat ipsum ad\",\n \"lastModifiedDate\": \"1967-03-13T07:23:59.883Z\",\n \"listening\": -55021616,\n \"reading\": -29892952,\n \"speaking\": 54474158,\n \"writing\": 70468291\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/ForeignLangInfoDTO\"}],\"definitions\":{\"ForeignLangInfoDTO\":{\"title\":\"ForeignLangInfoDTO\",\"description\":\"Referans tiplerinden gelicek olan yabancı dil bilgilerini kullanır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"foreignLang\":{\"$ref\":\"#/definitions/ForeignLanguageLOV\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"listening\":{\"format\":\"int32\",\"description\":\"Foreign language listening score\",\"type\":\"integer\"},\"reading\":{\"format\":\"int32\",\"description\":\"Foreign language reading score\",\"type\":\"integer\"},\"speaking\":{\"format\":\"int32\",\"description\":\"Foreign language speaking score\",\"type\":\"integer\"},\"writing\":{\"format\":\"int32\",\"description\":\"Foreign language writing score\",\"type\":\"integer\"}}},\"ForeignLanguageLOV\":{\"title\":\"ForeignLanguageLOV\",\"description\":\"Sabit tanımlanmış yabancı dil bilgisini tutar. Comboboxlar için yabancı dil listesi dönmek için kullanılmaktadır. LanguageCode ile aynı veri değildir. Bu dtoya sağlanan veride olası bütün yabancı diller bulunabilir. LanguageCode sadece sistem içerisinde kullanılan dilleri içerir.\",\"type\":\"object\",\"properties\":{\"code\":{\"description\":\"Yabancı Dil bilgisi kodu\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Yabancı Dil bilgisi adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ForeignLangInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/ForeignLangInfoDTO\"}],\"definitions\":{\"ForeignLangInfoDTO\":{\"title\":\"ForeignLangInfoDTO\",\"description\":\"Referans tiplerinden gelicek olan yabancı dil bilgilerini kullanır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"foreignLang\":{\"$ref\":\"#/definitions/ForeignLanguageLOV\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"listening\":{\"format\":\"int32\",\"description\":\"Foreign language listening score\",\"type\":\"integer\"},\"reading\":{\"format\":\"int32\",\"description\":\"Foreign language reading score\",\"type\":\"integer\"},\"speaking\":{\"format\":\"int32\",\"description\":\"Foreign language speaking score\",\"type\":\"integer\"},\"writing\":{\"format\":\"int32\",\"description\":\"Foreign language writing score\",\"type\":\"integer\"}}},\"ForeignLanguageLOV\":{\"title\":\"ForeignLanguageLOV\",\"description\":\"Sabit tanımlanmış yabancı dil bilgisini tutar. Comboboxlar için yabancı dil listesi dönmek için kullanılmaktadır. LanguageCode ile aynı veri değildir. Bu dtoya sağlanan veride olası bütün yabancı diller bulunabilir. LanguageCode sadece sistem içerisinde kullanılan dilleri içerir.\",\"type\":\"object\",\"properties\":{\"code\":{\"description\":\"Yabancı Dil bilgisi kodu\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Yabancı Dil bilgisi adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ForeignLangInfoDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"sunt\",\n \"createdDate\": \"2004-10-14T11:41:34.391Z\",\n \"foreignLang\": {\n \"code\": \"sunt Duis in pariatur\",\n \"createdBy\": \"veniam tempor nisi\",\n \"createdDate\": \"2012-12-01T15:55:48.361Z\",\n \"id\": 88680450,\n \"name\": \"commodo\"\n },\n \"id\": -96996980,\n \"lastModifiedBy\": \"ut et esse cupidatat\",\n \"lastModifiedDate\": \"1989-02-12T00:32:21.692Z\",\n \"listening\": -97860611,\n \"reading\": -26501856,\n \"speaking\": -67326409,\n \"writing\": 23507694\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/ForeignLangInfoDTO\"}],\"definitions\":{\"ForeignLangInfoDTO\":{\"title\":\"ForeignLangInfoDTO\",\"description\":\"Referans tiplerinden gelicek olan yabancı dil bilgilerini kullanır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"foreignLang\":{\"$ref\":\"#/definitions/ForeignLanguageLOV\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"listening\":{\"format\":\"int32\",\"description\":\"Foreign language listening score\",\"type\":\"integer\"},\"reading\":{\"format\":\"int32\",\"description\":\"Foreign language reading score\",\"type\":\"integer\"},\"speaking\":{\"format\":\"int32\",\"description\":\"Foreign language speaking score\",\"type\":\"integer\"},\"writing\":{\"format\":\"int32\",\"description\":\"Foreign language writing score\",\"type\":\"integer\"}}},\"ForeignLanguageLOV\":{\"title\":\"ForeignLanguageLOV\",\"description\":\"Sabit tanımlanmış yabancı dil bilgisini tutar. Comboboxlar için yabancı dil listesi dönmek için kullanılmaktadır. LanguageCode ile aynı veri değildir. Bu dtoya sağlanan veride olası bütün yabancı diller bulunabilir. LanguageCode sadece sistem içerisinde kullanılan dilleri içerir.\",\"type\":\"object\",\"properties\":{\"code\":{\"description\":\"Yabancı Dil bilgisi kodu\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Yabancı Dil bilgisi adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ForeignLangInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"aute repreh\",\n \"createdDate\": \"1953-12-11T22:18:08.833Z\",\n \"foreignLang\": {\n \"code\": \"cupidatat elit dolore\",\n \"createdBy\": \"id\",\n \"createdDate\": \"1992-05-23T00:57:26.324Z\",\n \"id\": 64615946,\n \"name\": \"in sed id enim\"\n },\n \"id\": -60105721,\n \"lastModifiedBy\": \"adipisicing nostrud irure temp\",\n \"lastModifiedDate\": \"1990-11-08T05:48:48.056Z\",\n \"listening\": -51005471,\n \"reading\": 44228945,\n \"speaking\": -89299815,\n \"writing\": -19459396\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/ForeignLangInfoDTO\"}],\"definitions\":{\"ForeignLangInfoDTO\":{\"title\":\"ForeignLangInfoDTO\",\"description\":\"Referans tiplerinden gelicek olan yabancı dil bilgilerini kullanır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"foreignLang\":{\"$ref\":\"#/definitions/ForeignLanguageLOV\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"listening\":{\"format\":\"int32\",\"description\":\"Foreign language listening score\",\"type\":\"integer\"},\"reading\":{\"format\":\"int32\",\"description\":\"Foreign language reading score\",\"type\":\"integer\"},\"speaking\":{\"format\":\"int32\",\"description\":\"Foreign language speaking score\",\"type\":\"integer\"},\"writing\":{\"format\":\"int32\",\"description\":\"Foreign language writing score\",\"type\":\"integer\"}}},\"ForeignLanguageLOV\":{\"title\":\"ForeignLanguageLOV\",\"description\":\"Sabit tanımlanmış yabancı dil bilgisini tutar. Comboboxlar için yabancı dil listesi dönmek için kullanılmaktadır. LanguageCode ile aynı veri değildir. Bu dtoya sağlanan veride olası bütün yabancı diller bulunabilir. LanguageCode sadece sistem içerisinde kullanılan dilleri içerir.\",\"type\":\"object\",\"properties\":{\"code\":{\"description\":\"Yabancı Dil bilgisi kodu\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Yabancı Dil bilgisi adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ForeignLangInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "202" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/ForeignLangInfoDTO\"}],\"definitions\":{\"ForeignLangInfoDTO\":{\"title\":\"ForeignLangInfoDTO\",\"description\":\"Referans tiplerinden gelicek olan yabancı dil bilgilerini kullanır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"foreignLang\":{\"$ref\":\"#/definitions/ForeignLanguageLOV\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"listening\":{\"format\":\"int32\",\"description\":\"Foreign language listening score\",\"type\":\"integer\"},\"reading\":{\"format\":\"int32\",\"description\":\"Foreign language reading score\",\"type\":\"integer\"},\"speaking\":{\"format\":\"int32\",\"description\":\"Foreign language speaking score\",\"type\":\"integer\"},\"writing\":{\"format\":\"int32\",\"description\":\"Foreign language writing score\",\"type\":\"integer\"}}},\"ForeignLanguageLOV\":{\"title\":\"ForeignLanguageLOV\",\"description\":\"Sabit tanımlanmış yabancı dil bilgisini tutar. Comboboxlar için yabancı dil listesi dönmek için kullanılmaktadır. LanguageCode ile aynı veri değildir. Bu dtoya sağlanan veride olası bütün yabancı diller bulunabilir. LanguageCode sadece sistem içerisinde kullanılan dilleri içerir.\",\"type\":\"object\",\"properties\":{\"code\":{\"description\":\"Yabancı Dil bilgisi kodu\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Yabancı Dil bilgisi adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ForeignLangInfoDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"tempor ipsum laborum magna nulla\",\n \"createdDate\": \"1991-02-07T09:37:01.107Z\",\n \"foreignLang\": {\n \"code\": \"fugiat\",\n \"createdBy\": \"cupidatat irure velit in\",\n \"createdDate\": \"2012-04-24T17:39:13.949Z\",\n \"id\": 52119287,\n \"name\": \"ex cillum Lorem\"\n },\n \"id\": 17654581,\n \"lastModifiedBy\": \"minim ut dolor\",\n \"lastModifiedDate\": \"2001-11-21T21:28:58.464Z\",\n \"listening\": -70525299,\n \"reading\": 6829720,\n \"speaking\": 88278812,\n \"writing\": -25412805\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/ForeignLangInfoDTO\"}],\"definitions\":{\"ForeignLangInfoDTO\":{\"title\":\"ForeignLangInfoDTO\",\"description\":\"Referans tiplerinden gelicek olan yabancı dil bilgilerini kullanır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"foreignLang\":{\"$ref\":\"#/definitions/ForeignLanguageLOV\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"listening\":{\"format\":\"int32\",\"description\":\"Foreign language listening score\",\"type\":\"integer\"},\"reading\":{\"format\":\"int32\",\"description\":\"Foreign language reading score\",\"type\":\"integer\"},\"speaking\":{\"format\":\"int32\",\"description\":\"Foreign language speaking score\",\"type\":\"integer\"},\"writing\":{\"format\":\"int32\",\"description\":\"Foreign language writing score\",\"type\":\"integer\"}}},\"ForeignLanguageLOV\":{\"title\":\"ForeignLanguageLOV\",\"description\":\"Sabit tanımlanmış yabancı dil bilgisini tutar. Comboboxlar için yabancı dil listesi dönmek için kullanılmaktadır. LanguageCode ile aynı veri değildir. Bu dtoya sağlanan veride olası bütün yabancı diller bulunabilir. LanguageCode sadece sistem içerisinde kullanılan dilleri içerir.\",\"type\":\"object\",\"properties\":{\"code\":{\"description\":\"Yabancı Dil bilgisi kodu\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Yabancı Dil bilgisi adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ForeignLangInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"ex ipsum\",\n \"createdDate\": \"2006-04-23T19:30:47.919Z\",\n \"foreignLang\": {\n \"code\": \"reprehenderit labore voluptate\",\n \"createdBy\": \"Duis\",\n \"createdDate\": \"2008-04-12T14:05:35.530Z\",\n \"id\": -18481620,\n \"name\": \"velit do officia sed\"\n },\n \"id\": -45751301,\n \"lastModifiedBy\": \"enim sit\",\n \"lastModifiedDate\": \"2013-11-29T19:09:16.569Z\",\n \"listening\": 373878,\n \"reading\": 32084313,\n \"speaking\": -53064022,\n \"writing\": -30529646\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/ForeignLangInfoDTO\"}],\"definitions\":{\"ForeignLangInfoDTO\":{\"title\":\"ForeignLangInfoDTO\",\"description\":\"Referans tiplerinden gelicek olan yabancı dil bilgilerini kullanır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"foreignLang\":{\"$ref\":\"#/definitions/ForeignLanguageLOV\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"listening\":{\"format\":\"int32\",\"description\":\"Foreign language listening score\",\"type\":\"integer\"},\"reading\":{\"format\":\"int32\",\"description\":\"Foreign language reading score\",\"type\":\"integer\"},\"speaking\":{\"format\":\"int32\",\"description\":\"Foreign language speaking score\",\"type\":\"integer\"},\"writing\":{\"format\":\"int32\",\"description\":\"Foreign language writing score\",\"type\":\"integer\"}}},\"ForeignLanguageLOV\":{\"title\":\"ForeignLanguageLOV\",\"description\":\"Sabit tanımlanmış yabancı dil bilgisini tutar. Comboboxlar için yabancı dil listesi dönmek için kullanılmaktadır. LanguageCode ile aynı veri değildir. Bu dtoya sağlanan veride olası bütün yabancı diller bulunabilir. LanguageCode sadece sistem içerisinde kullanılan dilleri içerir.\",\"type\":\"object\",\"properties\":{\"code\":{\"description\":\"Yabancı Dil bilgisi kodu\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Yabancı Dil bilgisi adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ForeignLangInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"nulla id labore\",\n \"createdDate\": \"1999-01-22T07:49:25.637Z\",\n \"foreignLang\": {\n \"code\": \"esse occaecat\",\n \"createdBy\": \"magna\",\n \"createdDate\": \"2016-12-11T13:25:51.748Z\",\n \"id\": 52545739,\n \"name\": \"ex aliquip in\"\n },\n \"id\": -1394239,\n \"lastModifiedBy\": \"qui nisi consectetur\",\n \"lastModifiedDate\": \"2014-02-01T16:10:42.304Z\",\n \"listening\": 90666585,\n \"reading\": -79678010,\n \"speaking\": -7617396,\n \"writing\": 76216623\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/ForeignLangInfoDTO\"}],\"definitions\":{\"ForeignLangInfoDTO\":{\"title\":\"ForeignLangInfoDTO\",\"description\":\"Referans tiplerinden gelicek olan yabancı dil bilgilerini kullanır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"foreignLang\":{\"$ref\":\"#/definitions/ForeignLanguageLOV\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"listening\":{\"format\":\"int32\",\"description\":\"Foreign language listening score\",\"type\":\"integer\"},\"reading\":{\"format\":\"int32\",\"description\":\"Foreign language reading score\",\"type\":\"integer\"},\"speaking\":{\"format\":\"int32\",\"description\":\"Foreign language speaking score\",\"type\":\"integer\"},\"writing\":{\"format\":\"int32\",\"description\":\"Foreign language writing score\",\"type\":\"integer\"}}},\"ForeignLanguageLOV\":{\"title\":\"ForeignLanguageLOV\",\"description\":\"Sabit tanımlanmış yabancı dil bilgisini tutar. Comboboxlar için yabancı dil listesi dönmek için kullanılmaktadır. LanguageCode ile aynı veri değildir. Bu dtoya sağlanan veride olası bütün yabancı diller bulunabilir. LanguageCode sadece sistem içerisinde kullanılan dilleri içerir.\",\"type\":\"object\",\"properties\":{\"code\":{\"description\":\"Yabancı Dil bilgisi kodu\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Yabancı Dil bilgisi adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ForeignLangInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"dolor\",\n \"createdDate\": \"1976-03-10T10:14:44.692Z\",\n \"foreignLang\": {\n \"code\": \"sed\",\n \"createdBy\": \"ullamco ad dolore eu\",\n \"createdDate\": \"1943-02-20T09:49:29.110Z\",\n \"id\": 3960457,\n \"name\": \"qui consequat\"\n },\n \"id\": -49949230,\n \"lastModifiedBy\": \"ad ullamco\",\n \"lastModifiedDate\": \"1959-09-04T03:14:41.591Z\",\n \"listening\": -85253049,\n \"reading\": -1839723,\n \"speaking\": 62391605,\n \"writing\": -89000498\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/ForeignLangInfoDTO\"}],\"definitions\":{\"ForeignLangInfoDTO\":{\"title\":\"ForeignLangInfoDTO\",\"description\":\"Referans tiplerinden gelicek olan yabancı dil bilgilerini kullanır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"foreignLang\":{\"$ref\":\"#/definitions/ForeignLanguageLOV\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"listening\":{\"format\":\"int32\",\"description\":\"Foreign language listening score\",\"type\":\"integer\"},\"reading\":{\"format\":\"int32\",\"description\":\"Foreign language reading score\",\"type\":\"integer\"},\"speaking\":{\"format\":\"int32\",\"description\":\"Foreign language speaking score\",\"type\":\"integer\"},\"writing\":{\"format\":\"int32\",\"description\":\"Foreign language writing score\",\"type\":\"integer\"}}},\"ForeignLanguageLOV\":{\"title\":\"ForeignLanguageLOV\",\"description\":\"Sabit tanımlanmış yabancı dil bilgisini tutar. Comboboxlar için yabancı dil listesi dönmek için kullanılmaktadır. LanguageCode ile aynı veri değildir. Bu dtoya sağlanan veride olası bütün yabancı diller bulunabilir. LanguageCode sadece sistem içerisinde kullanılan dilleri içerir.\",\"type\":\"object\",\"properties\":{\"code\":{\"description\":\"Yabancı Dil bilgisi kodu\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Yabancı Dil bilgisi adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ForeignLangInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"ipsum\",\n \"createdDate\": \"1965-07-01T17:06:37.251Z\",\n \"foreignLang\": {\n \"code\": \"dolore mollit cillum a\",\n \"createdBy\": \"tempor ex\",\n \"createdDate\": \"1984-05-05T08:53:58.991Z\",\n \"id\": -74259635,\n \"name\": \"do dolor aliqua cupidatat laboris\"\n },\n \"id\": -91268422,\n \"lastModifiedBy\": \"ut aute dolor voluptate culpa\",\n \"lastModifiedDate\": \"2001-04-01T16:47:31.781Z\",\n \"listening\": -84243914,\n \"reading\": -58649680,\n \"speaking\": -55328842,\n \"writing\": 10878699\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/ForeignLangInfoDTO\"}],\"definitions\":{\"ForeignLangInfoDTO\":{\"title\":\"ForeignLangInfoDTO\",\"description\":\"Referans tiplerinden gelicek olan yabancı dil bilgilerini kullanır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"foreignLang\":{\"$ref\":\"#/definitions/ForeignLanguageLOV\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"listening\":{\"format\":\"int32\",\"description\":\"Foreign language listening score\",\"type\":\"integer\"},\"reading\":{\"format\":\"int32\",\"description\":\"Foreign language reading score\",\"type\":\"integer\"},\"speaking\":{\"format\":\"int32\",\"description\":\"Foreign language speaking score\",\"type\":\"integer\"},\"writing\":{\"format\":\"int32\",\"description\":\"Foreign language writing score\",\"type\":\"integer\"}}},\"ForeignLanguageLOV\":{\"title\":\"ForeignLanguageLOV\",\"description\":\"Sabit tanımlanmış yabancı dil bilgisini tutar. Comboboxlar için yabancı dil listesi dönmek için kullanılmaktadır. LanguageCode ile aynı veri değildir. Bu dtoya sağlanan veride olası bütün yabancı diller bulunabilir. LanguageCode sadece sistem içerisinde kullanılan dilleri içerir.\",\"type\":\"object\",\"properties\":{\"code\":{\"description\":\"Yabancı Dil bilgisi kodu\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Yabancı Dil bilgisi adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ForeignLangInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz. " + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Talebenin yabancı dil bilgisini siler." + }, + "id": { + "element": "string", + "content": "deleteStudentForeignLanguageInfo" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Students Foreign language information id" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "foreignLanguageId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Student ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Talebenin yabancı dil bilgisini siler." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "204" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz. " + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/students/{id}/guardians" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Students guardian list" + }, + "id": { + "element": "string", + "content": "getAllStudentGuardians" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Student ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Gets a list of all `StudentGuardianProfileDTO` entities of `StudentProfileDTO`." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "Successful" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/StudentGuardianProfileDTO\"},\"definitions\":{\"StudentGuardianProfileDTO\":{\"title\":\"StudentGuardianProfileDTO\",\"description\":\"Talebe veli bilgilerini tutar\",\"type\":\"object\",\"properties\":{\"addresses\":{\"description\":\"Address bilgileri\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/AddressCardDTO\"}},\"adherence\":{\"$ref\":\"#/definitions/AdherenceLOV\"},\"birthDate\":{\"format\":\"date-time\",\"description\":\"Dogum Tarihi\",\"type\":\"string\"},\"citizenship\":{\"$ref\":\"#/definitions/CitizenshipLOV\"},\"contacts\":{\"description\":\"Iletisim bilgileri\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactInfoDTO\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adi\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"isPrimary\":{\"description\":\"Talebe velileri arasinda muhattap olarak alinacak birincil veli isareti.\",\"type\":\"boolean\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadi\",\"type\":\"string\"},\"type\":{\"$ref\":\"#/definitions/StudentGuardianTypeLOV\"}}},\"StudentGuardianTypeLOV\":{\"title\":\"StudentGuardianTypeLOV\",\"description\":\"Talebelerin velisinin yakınlık tipidir. Annesi, Babasi, Amcasi vs.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Veli tipi adi. \",\"type\":\"string\"}}},\"ContactInfoDTO\":{\"title\":\"ContactInfoDTO\",\"description\":\"Iletisim bilgilerini sunmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Category of contact type. For example: Home address, Home telephone, Cell phone etc.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"contactInfo\":{\"description\":\"Telephone number or email address information depending on the type.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"ContactMediumCategoryLOV\":{\"title\":\"ContactMediumCategoryLOV\",\"description\":\"Contact medium kategorileri. Bir kategori tipine ait veriyi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Category Name\",\"type\":\"string\"}}},\"CitizenshipLOV\":{\"title\":\"CitizenshipLOV\",\"description\":\"Vatandaşlık bilgilerini taşır\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Vatan adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"AdherenceLOV\":{\"title\":\"AdherenceLOV\",\"description\":\"Key Value şeklinde Merbutiyet tanımlarını tutar. Örneğin; ihvan, muhibban, diğer.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Merbutiyet adı\",\"type\":\"string\"}}},\"AddressCardDTO\":{\"title\":\"AddressCardDTO\",\"description\":\"Address bilgisini sunar. Sadece full address bilgisini ve kategorisini verir.\\n Adres kategorisine ait kategori adı bilgisi “ContactMediumType” dır.\\n Yani contact medium type \\\"iletişimde bulunulacak adresler\\\" bilgisini ifade eder.\",\"type\":\"object\",\"properties\":{\"addressCategory\":{\"description\":\"Address kategorisi\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Full address. İl ilçe mahalle sokak gibi bütün bilgileri içerir.\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/StudentGuardianProfileDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz." + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Talebeye yeni veli ekler. Tamamen yeni bir kişi ekleme işlemi yapar yani daha önce kayıtlı olan bir kişiyi veli olarak kaydetmek istediğinizde hata verir. Yeni kişi oluşturma işleminide yapar." + }, + "id": { + "element": "string", + "content": "createStudentGuardian" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Student ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Talebe velisi ekleme metodudur." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"adherenceId\": -51992650,\n \"identification\": {\n \"birthDate\": \"2001-04-22T04:35:40.495Z\",\n \"birthPlaceName\": \"exercitation non in\",\n \"citizenNumber\": \"ad officia dolore nostrud\",\n \"citizenshipId\": {\n \"createdBy\": \"quis mollit ut ea\",\n \"createdDate\": \"1982-10-13T23:01:49.559Z\",\n \"id\": 49176097,\n \"name\": \"dolor Duis\"\n },\n \"createdBy\": \"ipsum sit nulla officia eiusmod\",\n \"createdDate\": \"1965-01-15T20:39:38.601Z\",\n \"firstName\": \"fugiat of\",\n \"gender\": {\n \"createdBy\": \"Ut id proident\",\n \"createdDate\": \"1983-08-13T02:10:14.506Z\",\n \"id\": -18170313,\n \"name\": \"reprehenderit\"\n },\n \"lastModifiedBy\": \"voluptate\",\n \"lastModifiedDate\": \"1941-08-19T00:07:15.003Z\",\n \"lastName\": \"officia in occaecat\"\n },\n \"addresses\": [],\n \"contacts\": [],\n \"createdBy\": \"ad de\",\n \"createdDate\": \"2010-07-04T22:16:50.771Z\",\n \"isPrimary\": true,\n \"lastModifiedBy\": \"ut amet cillum\",\n \"lastModifiedDate\": \"1951-08-26T00:14:35.157Z\",\n \"professionId\": -39191109,\n \"typeId\": 60191947\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/StudentGuardianCreateDTO\"}],\"definitions\":{\"StudentGuardianCreateDTO\":{\"title\":\"StudentGuardianCreateDTO\",\"description\":\"Talebe velisi oluşturmak için kullanılır.\",\"required\":[\"adherenceId\",\"identification\"],\"type\":\"object\",\"properties\":{\"addresses\":{\"description\":\"Velinin adres bilgisleri. Ev adresi, iş adresi.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/AddressCreateDTO\"}},\"adherenceId\":{\"format\":\"int64\",\"description\":\"Velinin merbutiyet bilgisi. Ihvan mı, muhibban mı, diger mi oldugunu gosterir.\",\"type\":\"integer\"},\"contacts\":{\"description\":\"Velinin iletişim bilgileri. Telefon, email vb.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactInfoCreateDTO\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"identification\":{\"$ref\":\"#/definitions/IdentificationInfoDTO\"},\"isPrimary\":{\"description\":\"Talebe velileri arasinda muhattap olarak alinacak birincil veli isareti.\",\"type\":\"boolean\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"professionId\":{\"format\":\"int64\",\"description\":\"Velinin meslek bilgisi\",\"type\":\"integer\"},\"typeId\":{\"format\":\"int64\",\"description\":\"Velinin Yakınlık Bilgisi. Anne, Baba Amca vs....\",\"type\":\"integer\"}}},\"IdentificationInfoDTO\":{\"title\":\"IdentificationInfoDTO\",\"description\":\"Kisiye ait kimlik bilgilerini tutar.\",\"type\":\"object\",\"properties\":{\"birthDate\":{\"format\":\"date-time\",\"description\":\"Dogum Tarihi\",\"type\":\"string\"},\"birthPlaceName\":{\"description\":\"Dogum Yeri adi\",\"type\":\"string\"},\"citizenNumber\":{\"description\":\"Vatandaslik numarasi\",\"type\":\"string\"},\"citizenshipId\":{\"$ref\":\"#/definitions/CitizenshipLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adi\",\"type\":\"string\"},\"gender\":{\"$ref\":\"#/definitions/GenderLOV\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadi\",\"type\":\"string\"}}},\"GenderLOV\":{\"title\":\"GenderLOV\",\"description\":\"Cinsiyet tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Cinsiyet adi\",\"type\":\"string\"}}},\"CitizenshipLOV\":{\"title\":\"CitizenshipLOV\",\"description\":\"Vatandaşlık bilgilerini taşır\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Vatan adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"ContactInfoCreateDTO\":{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"AddressCreateDTO\":{\"title\":\"AddressCreateDTO\",\"description\":\" Kisi veya kurumun adres bilgisini olusturmak icin kullanılır.\\n Adrese ait lokasyon bilgisini içerisinde barındırır.\\n Lokasyon bilgisi önceden tanımlı olmalıdır. Lokasyon bilgisi alınırken lokasyon hierarşisinde kullanıcının seçtiği en altta kalan lokasyonun idsi yeterlidir.\\n Örneğin Türkiye - İstanbul - Ümraniye lokasyonu için sadece Ümraniyenin id sinin verilmesi yeterlidir.\",\"type\":\"object\",\"properties\":{\"address1\":{\"description\":\"Açık adres 1. satır\",\"type\":\"string\"},\"address2\":{\"description\":\"Açık adres 2. satır\",\"type\":\"string\"},\"address3\":{\"description\":\"Açık adres 3. satır\",\"type\":\"string\"},\"categories\":{\"description\":\"Adres kategorileri. İş adresi, Ev adresi, Öncelikli adres\",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Açık adres ve lokasyon bilgilerini içeren tam adres\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"locationId\":{\"format\":\"int64\",\"description\":\"Adresin bağlı olduğu en dip lokasyon bilgisi. Ümraniye, Üsküdar vb.\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/StudentGuardianCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/StudentGuardianProfileDTO\"}],\"definitions\":{\"StudentGuardianProfileDTO\":{\"title\":\"StudentGuardianProfileDTO\",\"description\":\"Talebe veli bilgilerini tutar\",\"type\":\"object\",\"properties\":{\"addresses\":{\"description\":\"Address bilgileri\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/AddressCardDTO\"}},\"adherence\":{\"$ref\":\"#/definitions/AdherenceLOV\"},\"birthDate\":{\"format\":\"date-time\",\"description\":\"Dogum Tarihi\",\"type\":\"string\"},\"citizenship\":{\"$ref\":\"#/definitions/CitizenshipLOV\"},\"contacts\":{\"description\":\"Iletisim bilgileri\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactInfoDTO\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adi\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"isPrimary\":{\"description\":\"Talebe velileri arasinda muhattap olarak alinacak birincil veli isareti.\",\"type\":\"boolean\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadi\",\"type\":\"string\"},\"type\":{\"$ref\":\"#/definitions/StudentGuardianTypeLOV\"}}},\"StudentGuardianTypeLOV\":{\"title\":\"StudentGuardianTypeLOV\",\"description\":\"Talebelerin velisinin yakınlık tipidir. Annesi, Babasi, Amcasi vs.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Veli tipi adi. \",\"type\":\"string\"}}},\"ContactInfoDTO\":{\"title\":\"ContactInfoDTO\",\"description\":\"Iletisim bilgilerini sunmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Category of contact type. For example: Home address, Home telephone, Cell phone etc.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"contactInfo\":{\"description\":\"Telephone number or email address information depending on the type.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"ContactMediumCategoryLOV\":{\"title\":\"ContactMediumCategoryLOV\",\"description\":\"Contact medium kategorileri. Bir kategori tipine ait veriyi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Category Name\",\"type\":\"string\"}}},\"CitizenshipLOV\":{\"title\":\"CitizenshipLOV\",\"description\":\"Vatandaşlık bilgilerini taşır\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Vatan adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"AdherenceLOV\":{\"title\":\"AdherenceLOV\",\"description\":\"Key Value şeklinde Merbutiyet tanımlarını tutar. Örneğin; ihvan, muhibban, diğer.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Merbutiyet adı\",\"type\":\"string\"}}},\"AddressCardDTO\":{\"title\":\"AddressCardDTO\",\"description\":\"Address bilgisini sunar. Sadece full address bilgisini ve kategorisini verir.\\n Adres kategorisine ait kategori adı bilgisi “ContactMediumType” dır.\\n Yani contact medium type \\\"iletişimde bulunulacak adresler\\\" bilgisini ifade eder.\",\"type\":\"object\",\"properties\":{\"addressCategory\":{\"description\":\"Address kategorisi\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Full address. İl ilçe mahalle sokak gibi bütün bilgileri içerir.\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/StudentGuardianProfileDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"adherenceId\": -56277420,\n \"identification\": {\n \"birthDate\": \"1964-02-27T15:16:59.577Z\",\n \"birthPlaceName\": \"ullamco anim adipisicing\",\n \"citizenNumber\": \"et\",\n \"citizenshipId\": {\n \"createdBy\": \"consectetur consequat et sunt\",\n \"createdDate\": \"1967-05-05T08:28:16.952Z\",\n \"id\": -22372205,\n \"name\": \"et\"\n },\n \"createdBy\": \"consequat in do qui\",\n \"createdDate\": \"2008-09-17T03:09:02.671Z\",\n \"firstName\": \"reprehenderit\",\n \"gender\": {\n \"createdBy\": \"dolor enim sit\",\n \"createdDate\": \"1980-12-24T10:41:40.926Z\",\n \"id\": -30455294,\n \"name\": \"laborum ut\"\n },\n \"lastModifiedBy\": \"in elit\",\n \"lastModifiedDate\": \"1973-05-27T07:10:15.557Z\",\n \"lastName\": \"aliqua sunt\"\n },\n \"addresses\": [],\n \"contacts\": [],\n \"createdBy\": \"reprehenderit proident laboris\",\n \"createdDate\": \"1964-04-06T17:02:26.271Z\",\n \"isPrimary\": false,\n \"lastModifiedBy\": \"aliqua elit officia aute\",\n \"lastModifiedDate\": \"1988-07-22T02:21:58.471Z\",\n \"professionId\": 15393848,\n \"typeId\": -55673846\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/StudentGuardianCreateDTO\"}],\"definitions\":{\"StudentGuardianCreateDTO\":{\"title\":\"StudentGuardianCreateDTO\",\"description\":\"Talebe velisi oluşturmak için kullanılır.\",\"required\":[\"adherenceId\",\"identification\"],\"type\":\"object\",\"properties\":{\"addresses\":{\"description\":\"Velinin adres bilgisleri. Ev adresi, iş adresi.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/AddressCreateDTO\"}},\"adherenceId\":{\"format\":\"int64\",\"description\":\"Velinin merbutiyet bilgisi. Ihvan mı, muhibban mı, diger mi oldugunu gosterir.\",\"type\":\"integer\"},\"contacts\":{\"description\":\"Velinin iletişim bilgileri. Telefon, email vb.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactInfoCreateDTO\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"identification\":{\"$ref\":\"#/definitions/IdentificationInfoDTO\"},\"isPrimary\":{\"description\":\"Talebe velileri arasinda muhattap olarak alinacak birincil veli isareti.\",\"type\":\"boolean\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"professionId\":{\"format\":\"int64\",\"description\":\"Velinin meslek bilgisi\",\"type\":\"integer\"},\"typeId\":{\"format\":\"int64\",\"description\":\"Velinin Yakınlık Bilgisi. Anne, Baba Amca vs....\",\"type\":\"integer\"}}},\"IdentificationInfoDTO\":{\"title\":\"IdentificationInfoDTO\",\"description\":\"Kisiye ait kimlik bilgilerini tutar.\",\"type\":\"object\",\"properties\":{\"birthDate\":{\"format\":\"date-time\",\"description\":\"Dogum Tarihi\",\"type\":\"string\"},\"birthPlaceName\":{\"description\":\"Dogum Yeri adi\",\"type\":\"string\"},\"citizenNumber\":{\"description\":\"Vatandaslik numarasi\",\"type\":\"string\"},\"citizenshipId\":{\"$ref\":\"#/definitions/CitizenshipLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adi\",\"type\":\"string\"},\"gender\":{\"$ref\":\"#/definitions/GenderLOV\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadi\",\"type\":\"string\"}}},\"GenderLOV\":{\"title\":\"GenderLOV\",\"description\":\"Cinsiyet tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Cinsiyet adi\",\"type\":\"string\"}}},\"CitizenshipLOV\":{\"title\":\"CitizenshipLOV\",\"description\":\"Vatandaşlık bilgilerini taşır\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Vatan adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"ContactInfoCreateDTO\":{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"AddressCreateDTO\":{\"title\":\"AddressCreateDTO\",\"description\":\" Kisi veya kurumun adres bilgisini olusturmak icin kullanılır.\\n Adrese ait lokasyon bilgisini içerisinde barındırır.\\n Lokasyon bilgisi önceden tanımlı olmalıdır. Lokasyon bilgisi alınırken lokasyon hierarşisinde kullanıcının seçtiği en altta kalan lokasyonun idsi yeterlidir.\\n Örneğin Türkiye - İstanbul - Ümraniye lokasyonu için sadece Ümraniyenin id sinin verilmesi yeterlidir.\",\"type\":\"object\",\"properties\":{\"address1\":{\"description\":\"Açık adres 1. satır\",\"type\":\"string\"},\"address2\":{\"description\":\"Açık adres 2. satır\",\"type\":\"string\"},\"address3\":{\"description\":\"Açık adres 3. satır\",\"type\":\"string\"},\"categories\":{\"description\":\"Adres kategorileri. İş adresi, Ev adresi, Öncelikli adres\",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Açık adres ve lokasyon bilgilerini içeren tam adres\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"locationId\":{\"format\":\"int64\",\"description\":\"Adresin bağlı olduğu en dip lokasyon bilgisi. Ümraniye, Üsküdar vb.\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/StudentGuardianCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"adherenceId\": 5917427,\n \"identification\": {\n \"birthDate\": \"1956-04-12T06:13:58.268Z\",\n \"birthPlaceName\": \"aliqua\",\n \"citizenNumber\": \"sunt anim veniam quis\",\n \"citizenshipId\": {\n \"createdBy\": \"et exercitation\",\n \"createdDate\": \"2013-03-16T15:15:15.500Z\",\n \"id\": -69462265,\n \"name\": \"adipis\"\n },\n \"createdBy\": \"sit dolor fugiat\",\n \"createdDate\": \"1948-07-20T06:50:05.499Z\",\n \"firstName\": \"in\",\n \"gender\": {\n \"createdBy\": \"proident\",\n \"createdDate\": \"1973-08-28T02:14:15.461Z\",\n \"id\": 11077068,\n \"name\": \"in ullamco culpa\"\n },\n \"lastModifiedBy\": \"sint laboris amet ea\",\n \"lastModifiedDate\": \"1988-08-17T07:12:45.803Z\",\n \"lastName\": \"sunt\"\n },\n \"addresses\": [],\n \"contacts\": [],\n \"createdBy\": \"dolor\",\n \"createdDate\": \"1973-10-20T22:36:22.725Z\",\n \"isPrimary\": false,\n \"lastModifiedBy\": \"irure sed\",\n \"lastModifiedDate\": \"1953-10-29T00:49:35.377Z\",\n \"professionId\": -85285152,\n \"typeId\": -48962142\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/StudentGuardianCreateDTO\"}],\"definitions\":{\"StudentGuardianCreateDTO\":{\"title\":\"StudentGuardianCreateDTO\",\"description\":\"Talebe velisi oluşturmak için kullanılır.\",\"required\":[\"adherenceId\",\"identification\"],\"type\":\"object\",\"properties\":{\"addresses\":{\"description\":\"Velinin adres bilgisleri. Ev adresi, iş adresi.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/AddressCreateDTO\"}},\"adherenceId\":{\"format\":\"int64\",\"description\":\"Velinin merbutiyet bilgisi. Ihvan mı, muhibban mı, diger mi oldugunu gosterir.\",\"type\":\"integer\"},\"contacts\":{\"description\":\"Velinin iletişim bilgileri. Telefon, email vb.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactInfoCreateDTO\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"identification\":{\"$ref\":\"#/definitions/IdentificationInfoDTO\"},\"isPrimary\":{\"description\":\"Talebe velileri arasinda muhattap olarak alinacak birincil veli isareti.\",\"type\":\"boolean\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"professionId\":{\"format\":\"int64\",\"description\":\"Velinin meslek bilgisi\",\"type\":\"integer\"},\"typeId\":{\"format\":\"int64\",\"description\":\"Velinin Yakınlık Bilgisi. Anne, Baba Amca vs....\",\"type\":\"integer\"}}},\"IdentificationInfoDTO\":{\"title\":\"IdentificationInfoDTO\",\"description\":\"Kisiye ait kimlik bilgilerini tutar.\",\"type\":\"object\",\"properties\":{\"birthDate\":{\"format\":\"date-time\",\"description\":\"Dogum Tarihi\",\"type\":\"string\"},\"birthPlaceName\":{\"description\":\"Dogum Yeri adi\",\"type\":\"string\"},\"citizenNumber\":{\"description\":\"Vatandaslik numarasi\",\"type\":\"string\"},\"citizenshipId\":{\"$ref\":\"#/definitions/CitizenshipLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adi\",\"type\":\"string\"},\"gender\":{\"$ref\":\"#/definitions/GenderLOV\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadi\",\"type\":\"string\"}}},\"GenderLOV\":{\"title\":\"GenderLOV\",\"description\":\"Cinsiyet tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Cinsiyet adi\",\"type\":\"string\"}}},\"CitizenshipLOV\":{\"title\":\"CitizenshipLOV\",\"description\":\"Vatandaşlık bilgilerini taşır\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Vatan adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"ContactInfoCreateDTO\":{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"AddressCreateDTO\":{\"title\":\"AddressCreateDTO\",\"description\":\" Kisi veya kurumun adres bilgisini olusturmak icin kullanılır.\\n Adrese ait lokasyon bilgisini içerisinde barındırır.\\n Lokasyon bilgisi önceden tanımlı olmalıdır. Lokasyon bilgisi alınırken lokasyon hierarşisinde kullanıcının seçtiği en altta kalan lokasyonun idsi yeterlidir.\\n Örneğin Türkiye - İstanbul - Ümraniye lokasyonu için sadece Ümraniyenin id sinin verilmesi yeterlidir.\",\"type\":\"object\",\"properties\":{\"address1\":{\"description\":\"Açık adres 1. satır\",\"type\":\"string\"},\"address2\":{\"description\":\"Açık adres 2. satır\",\"type\":\"string\"},\"address3\":{\"description\":\"Açık adres 3. satır\",\"type\":\"string\"},\"categories\":{\"description\":\"Adres kategorileri. İş adresi, Ev adresi, Öncelikli adres\",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Açık adres ve lokasyon bilgilerini içeren tam adres\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"locationId\":{\"format\":\"int64\",\"description\":\"Adresin bağlı olduğu en dip lokasyon bilgisi. Ümraniye, Üsküdar vb.\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/StudentGuardianCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"adherenceId\": 9528296,\n \"identification\": {\n \"birthDate\": \"1980-03-20T14:51:45.805Z\",\n \"birthPlaceName\": \"velit cillum ad pariatur in\",\n \"citizenNumber\": \"sint Ut magna in\",\n \"citizenshipId\": {\n \"createdBy\": \"exercitation\",\n \"createdDate\": \"2017-04-05T19:36:11.977Z\",\n \"id\": -18602562,\n \"name\": \"commodo\"\n },\n \"createdBy\": \"dolor dolore laborum esse\",\n \"createdDate\": \"1992-08-20T08:50:59.572Z\",\n \"firstName\": \"cupidatat culpa in\",\n \"gender\": {\n \"createdBy\": \"dolor ex Duis magna\",\n \"createdDate\": \"2017-10-07T13:18:30.893Z\",\n \"id\": -18284230,\n \"name\": \"non proident velit\"\n },\n \"lastModifiedBy\": \"aute occaecat\",\n \"lastModifiedDate\": \"1948-06-16T18:05:49.663Z\",\n \"lastName\": \"culpa\"\n },\n \"addresses\": [],\n \"contacts\": [],\n \"createdBy\": \"eiusmod adipisicing pariatur\",\n \"createdDate\": \"2019-08-31T02:20:22.040Z\",\n \"isPrimary\": false,\n \"lastModifiedBy\": \"magna culpa dolor\",\n \"lastModifiedDate\": \"2003-10-27T07:26:29.308Z\",\n \"professionId\": -75842618,\n \"typeId\": 57764378\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/StudentGuardianCreateDTO\"}],\"definitions\":{\"StudentGuardianCreateDTO\":{\"title\":\"StudentGuardianCreateDTO\",\"description\":\"Talebe velisi oluşturmak için kullanılır.\",\"required\":[\"adherenceId\",\"identification\"],\"type\":\"object\",\"properties\":{\"addresses\":{\"description\":\"Velinin adres bilgisleri. Ev adresi, iş adresi.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/AddressCreateDTO\"}},\"adherenceId\":{\"format\":\"int64\",\"description\":\"Velinin merbutiyet bilgisi. Ihvan mı, muhibban mı, diger mi oldugunu gosterir.\",\"type\":\"integer\"},\"contacts\":{\"description\":\"Velinin iletişim bilgileri. Telefon, email vb.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactInfoCreateDTO\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"identification\":{\"$ref\":\"#/definitions/IdentificationInfoDTO\"},\"isPrimary\":{\"description\":\"Talebe velileri arasinda muhattap olarak alinacak birincil veli isareti.\",\"type\":\"boolean\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"professionId\":{\"format\":\"int64\",\"description\":\"Velinin meslek bilgisi\",\"type\":\"integer\"},\"typeId\":{\"format\":\"int64\",\"description\":\"Velinin Yakınlık Bilgisi. Anne, Baba Amca vs....\",\"type\":\"integer\"}}},\"IdentificationInfoDTO\":{\"title\":\"IdentificationInfoDTO\",\"description\":\"Kisiye ait kimlik bilgilerini tutar.\",\"type\":\"object\",\"properties\":{\"birthDate\":{\"format\":\"date-time\",\"description\":\"Dogum Tarihi\",\"type\":\"string\"},\"birthPlaceName\":{\"description\":\"Dogum Yeri adi\",\"type\":\"string\"},\"citizenNumber\":{\"description\":\"Vatandaslik numarasi\",\"type\":\"string\"},\"citizenshipId\":{\"$ref\":\"#/definitions/CitizenshipLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adi\",\"type\":\"string\"},\"gender\":{\"$ref\":\"#/definitions/GenderLOV\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadi\",\"type\":\"string\"}}},\"GenderLOV\":{\"title\":\"GenderLOV\",\"description\":\"Cinsiyet tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Cinsiyet adi\",\"type\":\"string\"}}},\"CitizenshipLOV\":{\"title\":\"CitizenshipLOV\",\"description\":\"Vatandaşlık bilgilerini taşır\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Vatan adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"ContactInfoCreateDTO\":{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"AddressCreateDTO\":{\"title\":\"AddressCreateDTO\",\"description\":\" Kisi veya kurumun adres bilgisini olusturmak icin kullanılır.\\n Adrese ait lokasyon bilgisini içerisinde barındırır.\\n Lokasyon bilgisi önceden tanımlı olmalıdır. Lokasyon bilgisi alınırken lokasyon hierarşisinde kullanıcının seçtiği en altta kalan lokasyonun idsi yeterlidir.\\n Örneğin Türkiye - İstanbul - Ümraniye lokasyonu için sadece Ümraniyenin id sinin verilmesi yeterlidir.\",\"type\":\"object\",\"properties\":{\"address1\":{\"description\":\"Açık adres 1. satır\",\"type\":\"string\"},\"address2\":{\"description\":\"Açık adres 2. satır\",\"type\":\"string\"},\"address3\":{\"description\":\"Açık adres 3. satır\",\"type\":\"string\"},\"categories\":{\"description\":\"Adres kategorileri. İş adresi, Ev adresi, Öncelikli adres\",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Açık adres ve lokasyon bilgilerini içeren tam adres\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"locationId\":{\"format\":\"int64\",\"description\":\"Adresin bağlı olduğu en dip lokasyon bilgisi. Ümraniye, Üsküdar vb.\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/StudentGuardianCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"adherenceId\": 34396515,\n \"identification\": {\n \"birthDate\": \"1963-06-16T06:42:54.027Z\",\n \"birthPlaceName\": \"reprehenderit dolor\",\n \"citizenNumber\": \"fugiat v\",\n \"citizenshipId\": {\n \"createdBy\": \"aute officia sint amet Lorem\",\n \"createdDate\": \"1977-12-08T09:25:31.008Z\",\n \"id\": 46217375,\n \"name\": \"ad\"\n },\n \"createdBy\": \"\",\n \"createdDate\": \"1964-07-26T07:56:42.800Z\",\n \"firstName\": \"ad do veniam ullamco sit\",\n \"gender\": {\n \"createdBy\": \"cupidatat in tempor in commodo\",\n \"createdDate\": \"1955-01-14T13:01:34.891Z\",\n \"id\": -61873189,\n \"name\": \"anim nulla\"\n },\n \"lastModifiedBy\": \"fugiat deserunt in esse\",\n \"lastModifiedDate\": \"1942-03-11T10:27:37.989Z\",\n \"lastName\": \"Ut elit\"\n },\n \"addresses\": [],\n \"contacts\": [],\n \"createdBy\": \"dolore exercitation\",\n \"createdDate\": \"1958-12-24T20:27:41.105Z\",\n \"isPrimary\": false,\n \"lastModifiedBy\": \"in\",\n \"lastModifiedDate\": \"1962-06-27T18:36:19.716Z\",\n \"professionId\": -70758178,\n \"typeId\": 95680232\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/StudentGuardianCreateDTO\"}],\"definitions\":{\"StudentGuardianCreateDTO\":{\"title\":\"StudentGuardianCreateDTO\",\"description\":\"Talebe velisi oluşturmak için kullanılır.\",\"required\":[\"adherenceId\",\"identification\"],\"type\":\"object\",\"properties\":{\"addresses\":{\"description\":\"Velinin adres bilgisleri. Ev adresi, iş adresi.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/AddressCreateDTO\"}},\"adherenceId\":{\"format\":\"int64\",\"description\":\"Velinin merbutiyet bilgisi. Ihvan mı, muhibban mı, diger mi oldugunu gosterir.\",\"type\":\"integer\"},\"contacts\":{\"description\":\"Velinin iletişim bilgileri. Telefon, email vb.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactInfoCreateDTO\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"identification\":{\"$ref\":\"#/definitions/IdentificationInfoDTO\"},\"isPrimary\":{\"description\":\"Talebe velileri arasinda muhattap olarak alinacak birincil veli isareti.\",\"type\":\"boolean\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"professionId\":{\"format\":\"int64\",\"description\":\"Velinin meslek bilgisi\",\"type\":\"integer\"},\"typeId\":{\"format\":\"int64\",\"description\":\"Velinin Yakınlık Bilgisi. Anne, Baba Amca vs....\",\"type\":\"integer\"}}},\"IdentificationInfoDTO\":{\"title\":\"IdentificationInfoDTO\",\"description\":\"Kisiye ait kimlik bilgilerini tutar.\",\"type\":\"object\",\"properties\":{\"birthDate\":{\"format\":\"date-time\",\"description\":\"Dogum Tarihi\",\"type\":\"string\"},\"birthPlaceName\":{\"description\":\"Dogum Yeri adi\",\"type\":\"string\"},\"citizenNumber\":{\"description\":\"Vatandaslik numarasi\",\"type\":\"string\"},\"citizenshipId\":{\"$ref\":\"#/definitions/CitizenshipLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adi\",\"type\":\"string\"},\"gender\":{\"$ref\":\"#/definitions/GenderLOV\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadi\",\"type\":\"string\"}}},\"GenderLOV\":{\"title\":\"GenderLOV\",\"description\":\"Cinsiyet tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Cinsiyet adi\",\"type\":\"string\"}}},\"CitizenshipLOV\":{\"title\":\"CitizenshipLOV\",\"description\":\"Vatandaşlık bilgilerini taşır\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Vatan adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"ContactInfoCreateDTO\":{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"AddressCreateDTO\":{\"title\":\"AddressCreateDTO\",\"description\":\" Kisi veya kurumun adres bilgisini olusturmak icin kullanılır.\\n Adrese ait lokasyon bilgisini içerisinde barındırır.\\n Lokasyon bilgisi önceden tanımlı olmalıdır. Lokasyon bilgisi alınırken lokasyon hierarşisinde kullanıcının seçtiği en altta kalan lokasyonun idsi yeterlidir.\\n Örneğin Türkiye - İstanbul - Ümraniye lokasyonu için sadece Ümraniyenin id sinin verilmesi yeterlidir.\",\"type\":\"object\",\"properties\":{\"address1\":{\"description\":\"Açık adres 1. satır\",\"type\":\"string\"},\"address2\":{\"description\":\"Açık adres 2. satır\",\"type\":\"string\"},\"address3\":{\"description\":\"Açık adres 3. satır\",\"type\":\"string\"},\"categories\":{\"description\":\"Adres kategorileri. İş adresi, Ev adresi, Öncelikli adres\",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Açık adres ve lokasyon bilgilerini içeren tam adres\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"locationId\":{\"format\":\"int64\",\"description\":\"Adresin bağlı olduğu en dip lokasyon bilgisi. Ümraniye, Üsküdar vb.\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/StudentGuardianCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"adherenceId\": 25039570,\n \"identification\": {\n \"birthDate\": \"1962-09-07T19:50:42.957Z\",\n \"birthPlaceName\": \"Duis proident dolore laborum minim\",\n \"citizenNumber\": \"ex cupidatat irure cillum\",\n \"citizenshipId\": {\n \"createdBy\": \"aliqua in\",\n \"createdDate\": \"1947-08-19T10:02:44.952Z\",\n \"id\": 61575886,\n \"name\": \"consectetur\"\n },\n \"createdBy\": \"veniam dolor l\",\n \"createdDate\": \"1947-06-30T00:57:09.529Z\",\n \"firstName\": \"cu\",\n \"gender\": {\n \"createdBy\": \"quis est incididunt\",\n \"createdDate\": \"2001-06-09T11:57:52.584Z\",\n \"id\": 84357104,\n \"name\": \"cupidatat Duis exercitation in dolor\"\n },\n \"lastModifiedBy\": \"veniam nulla\",\n \"lastModifiedDate\": \"1981-07-14T18:15:25.651Z\",\n \"lastName\": \"et\"\n },\n \"addresses\": [],\n \"contacts\": [],\n \"createdBy\": \"irure\",\n \"createdDate\": \"2001-05-02T15:22:11.504Z\",\n \"isPrimary\": false,\n \"lastModifiedBy\": \"eiusmod Excepteur\",\n \"lastModifiedDate\": \"1983-05-09T17:48:53.711Z\",\n \"professionId\": -70317457,\n \"typeId\": 84349505\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/StudentGuardianCreateDTO\"}],\"definitions\":{\"StudentGuardianCreateDTO\":{\"title\":\"StudentGuardianCreateDTO\",\"description\":\"Talebe velisi oluşturmak için kullanılır.\",\"required\":[\"adherenceId\",\"identification\"],\"type\":\"object\",\"properties\":{\"addresses\":{\"description\":\"Velinin adres bilgisleri. Ev adresi, iş adresi.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/AddressCreateDTO\"}},\"adherenceId\":{\"format\":\"int64\",\"description\":\"Velinin merbutiyet bilgisi. Ihvan mı, muhibban mı, diger mi oldugunu gosterir.\",\"type\":\"integer\"},\"contacts\":{\"description\":\"Velinin iletişim bilgileri. Telefon, email vb.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactInfoCreateDTO\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"identification\":{\"$ref\":\"#/definitions/IdentificationInfoDTO\"},\"isPrimary\":{\"description\":\"Talebe velileri arasinda muhattap olarak alinacak birincil veli isareti.\",\"type\":\"boolean\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"professionId\":{\"format\":\"int64\",\"description\":\"Velinin meslek bilgisi\",\"type\":\"integer\"},\"typeId\":{\"format\":\"int64\",\"description\":\"Velinin Yakınlık Bilgisi. Anne, Baba Amca vs....\",\"type\":\"integer\"}}},\"IdentificationInfoDTO\":{\"title\":\"IdentificationInfoDTO\",\"description\":\"Kisiye ait kimlik bilgilerini tutar.\",\"type\":\"object\",\"properties\":{\"birthDate\":{\"format\":\"date-time\",\"description\":\"Dogum Tarihi\",\"type\":\"string\"},\"birthPlaceName\":{\"description\":\"Dogum Yeri adi\",\"type\":\"string\"},\"citizenNumber\":{\"description\":\"Vatandaslik numarasi\",\"type\":\"string\"},\"citizenshipId\":{\"$ref\":\"#/definitions/CitizenshipLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adi\",\"type\":\"string\"},\"gender\":{\"$ref\":\"#/definitions/GenderLOV\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadi\",\"type\":\"string\"}}},\"GenderLOV\":{\"title\":\"GenderLOV\",\"description\":\"Cinsiyet tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Cinsiyet adi\",\"type\":\"string\"}}},\"CitizenshipLOV\":{\"title\":\"CitizenshipLOV\",\"description\":\"Vatandaşlık bilgilerini taşır\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Vatan adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"ContactInfoCreateDTO\":{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"AddressCreateDTO\":{\"title\":\"AddressCreateDTO\",\"description\":\" Kisi veya kurumun adres bilgisini olusturmak icin kullanılır.\\n Adrese ait lokasyon bilgisini içerisinde barındırır.\\n Lokasyon bilgisi önceden tanımlı olmalıdır. Lokasyon bilgisi alınırken lokasyon hierarşisinde kullanıcının seçtiği en altta kalan lokasyonun idsi yeterlidir.\\n Örneğin Türkiye - İstanbul - Ümraniye lokasyonu için sadece Ümraniyenin id sinin verilmesi yeterlidir.\",\"type\":\"object\",\"properties\":{\"address1\":{\"description\":\"Açık adres 1. satır\",\"type\":\"string\"},\"address2\":{\"description\":\"Açık adres 2. satır\",\"type\":\"string\"},\"address3\":{\"description\":\"Açık adres 3. satır\",\"type\":\"string\"},\"categories\":{\"description\":\"Adres kategorileri. İş adresi, Ev adresi, Öncelikli adres\",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Açık adres ve lokasyon bilgilerini içeren tam adres\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"locationId\":{\"format\":\"int64\",\"description\":\"Adresin bağlı olduğu en dip lokasyon bilgisi. Ümraniye, Üsküdar vb.\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/StudentGuardianCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"adherenceId\": 64766790,\n \"identification\": {\n \"birthDate\": \"1982-01-05T12:58:37.455Z\",\n \"birthPlaceName\": \"consectetur\",\n \"citizenNumber\": \"officia in qui\",\n \"citizenshipId\": {\n \"createdBy\": \"ad amet velit\",\n \"createdDate\": \"1942-12-19T12:57:22.405Z\",\n \"id\": -50663662,\n \"name\": \"tempor non\"\n },\n \"createdBy\": \"qui id\",\n \"createdDate\": \"2007-09-14T13:11:10.436Z\",\n \"firstName\": \"ex Excepteur enim ullamco\",\n \"gender\": {\n \"createdBy\": \"voluptate deserunt veniam\",\n \"createdDate\": \"1998-09-06T21:25:15.532Z\",\n \"id\": 91988596,\n \"name\": \"velit et enim\"\n },\n \"lastModifiedBy\": \"labore adipisicing consectetur Ut cupidatat\",\n \"lastModifiedDate\": \"2018-09-02T21:24:55.833Z\",\n \"lastName\": \"nostrud eu sint et exercitat\"\n },\n \"addresses\": [],\n \"contacts\": [],\n \"createdBy\": \"sunt \",\n \"createdDate\": \"1979-08-29T20:07:05.515Z\",\n \"isPrimary\": false,\n \"lastModifiedBy\": \"do nisi cupidatat consectetur\",\n \"lastModifiedDate\": \"2005-03-20T21:30:47.022Z\",\n \"professionId\": -24459735,\n \"typeId\": -10438666\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/StudentGuardianCreateDTO\"}],\"definitions\":{\"StudentGuardianCreateDTO\":{\"title\":\"StudentGuardianCreateDTO\",\"description\":\"Talebe velisi oluşturmak için kullanılır.\",\"required\":[\"adherenceId\",\"identification\"],\"type\":\"object\",\"properties\":{\"addresses\":{\"description\":\"Velinin adres bilgisleri. Ev adresi, iş adresi.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/AddressCreateDTO\"}},\"adherenceId\":{\"format\":\"int64\",\"description\":\"Velinin merbutiyet bilgisi. Ihvan mı, muhibban mı, diger mi oldugunu gosterir.\",\"type\":\"integer\"},\"contacts\":{\"description\":\"Velinin iletişim bilgileri. Telefon, email vb.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactInfoCreateDTO\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"identification\":{\"$ref\":\"#/definitions/IdentificationInfoDTO\"},\"isPrimary\":{\"description\":\"Talebe velileri arasinda muhattap olarak alinacak birincil veli isareti.\",\"type\":\"boolean\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"professionId\":{\"format\":\"int64\",\"description\":\"Velinin meslek bilgisi\",\"type\":\"integer\"},\"typeId\":{\"format\":\"int64\",\"description\":\"Velinin Yakınlık Bilgisi. Anne, Baba Amca vs....\",\"type\":\"integer\"}}},\"IdentificationInfoDTO\":{\"title\":\"IdentificationInfoDTO\",\"description\":\"Kisiye ait kimlik bilgilerini tutar.\",\"type\":\"object\",\"properties\":{\"birthDate\":{\"format\":\"date-time\",\"description\":\"Dogum Tarihi\",\"type\":\"string\"},\"birthPlaceName\":{\"description\":\"Dogum Yeri adi\",\"type\":\"string\"},\"citizenNumber\":{\"description\":\"Vatandaslik numarasi\",\"type\":\"string\"},\"citizenshipId\":{\"$ref\":\"#/definitions/CitizenshipLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adi\",\"type\":\"string\"},\"gender\":{\"$ref\":\"#/definitions/GenderLOV\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadi\",\"type\":\"string\"}}},\"GenderLOV\":{\"title\":\"GenderLOV\",\"description\":\"Cinsiyet tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Cinsiyet adi\",\"type\":\"string\"}}},\"CitizenshipLOV\":{\"title\":\"CitizenshipLOV\",\"description\":\"Vatandaşlık bilgilerini taşır\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Vatan adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"ContactInfoCreateDTO\":{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"AddressCreateDTO\":{\"title\":\"AddressCreateDTO\",\"description\":\" Kisi veya kurumun adres bilgisini olusturmak icin kullanılır.\\n Adrese ait lokasyon bilgisini içerisinde barındırır.\\n Lokasyon bilgisi önceden tanımlı olmalıdır. Lokasyon bilgisi alınırken lokasyon hierarşisinde kullanıcının seçtiği en altta kalan lokasyonun idsi yeterlidir.\\n Örneğin Türkiye - İstanbul - Ümraniye lokasyonu için sadece Ümraniyenin id sinin verilmesi yeterlidir.\",\"type\":\"object\",\"properties\":{\"address1\":{\"description\":\"Açık adres 1. satır\",\"type\":\"string\"},\"address2\":{\"description\":\"Açık adres 2. satır\",\"type\":\"string\"},\"address3\":{\"description\":\"Açık adres 3. satır\",\"type\":\"string\"},\"categories\":{\"description\":\"Adres kategorileri. İş adresi, Ev adresi, Öncelikli adres\",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Açık adres ve lokasyon bilgilerini içeren tam adres\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"locationId\":{\"format\":\"int64\",\"description\":\"Adresin bağlı olduğu en dip lokasyon bilgisi. Ümraniye, Üsküdar vb.\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/StudentGuardianCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz. " + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/students/{id}/guardians/{guardianId}" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Update Student Guardian" + }, + "id": { + "element": "string", + "content": "updateStudentGuardian" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Guardian Unique Identifier" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "guardianId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Student Unique Identifier" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Talebe velisi guncelleme metodudur." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"adherenceId\": 10497847,\n \"identification\": {\n \"birthDate\": \"1982-10-21T14:28:24.911Z\",\n \"birthPlaceName\": \"adipisicing ad ea est Lorem\",\n \"citizenNumber\": \"consequat mollit minim officia\",\n \"citizenshipId\": {\n \"createdBy\": \"do Excepteur\",\n \"createdDate\": \"1971-12-03T19:51:53.876Z\",\n \"id\": -46284781,\n \"name\": \"in qui consequat ad magna\"\n },\n \"createdBy\": \"eiusmod labore quis dolore non\",\n \"createdDate\": \"2014-11-24T19:26:32.988Z\",\n \"firstName\": \"sed nisi magna\",\n \"gender\": {\n \"createdBy\": \"Duis do\",\n \"createdDate\": \"1991-05-06T12:07:57.845Z\",\n \"id\": -60065758,\n \"name\": \"ex mollit tempor\"\n },\n \"lastModifiedBy\": \"ullamco magna ut\",\n \"lastModifiedDate\": \"1992-04-14T23:30:18.220Z\",\n \"lastName\": \"et proident anim\"\n },\n \"addresses\": [],\n \"contacts\": [],\n \"createdBy\": \"in labore magna sunt\",\n \"createdDate\": \"1978-04-23T10:28:11.530Z\",\n \"isPrimary\": true,\n \"lastModifiedBy\": \"et\",\n \"lastModifiedDate\": \"1975-12-24T18:23:55.892Z\",\n \"professionId\": -87878854,\n \"typeId\": 65984418\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/StudentGuardianCreateDTO\"}],\"definitions\":{\"StudentGuardianCreateDTO\":{\"title\":\"StudentGuardianCreateDTO\",\"description\":\"Talebe velisi oluşturmak için kullanılır.\",\"required\":[\"adherenceId\",\"identification\"],\"type\":\"object\",\"properties\":{\"addresses\":{\"description\":\"Velinin adres bilgisleri. Ev adresi, iş adresi.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/AddressCreateDTO\"}},\"adherenceId\":{\"format\":\"int64\",\"description\":\"Velinin merbutiyet bilgisi. Ihvan mı, muhibban mı, diger mi oldugunu gosterir.\",\"type\":\"integer\"},\"contacts\":{\"description\":\"Velinin iletişim bilgileri. Telefon, email vb.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactInfoCreateDTO\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"identification\":{\"$ref\":\"#/definitions/IdentificationInfoDTO\"},\"isPrimary\":{\"description\":\"Talebe velileri arasinda muhattap olarak alinacak birincil veli isareti.\",\"type\":\"boolean\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"professionId\":{\"format\":\"int64\",\"description\":\"Velinin meslek bilgisi\",\"type\":\"integer\"},\"typeId\":{\"format\":\"int64\",\"description\":\"Velinin Yakınlık Bilgisi. Anne, Baba Amca vs....\",\"type\":\"integer\"}}},\"IdentificationInfoDTO\":{\"title\":\"IdentificationInfoDTO\",\"description\":\"Kisiye ait kimlik bilgilerini tutar.\",\"type\":\"object\",\"properties\":{\"birthDate\":{\"format\":\"date-time\",\"description\":\"Dogum Tarihi\",\"type\":\"string\"},\"birthPlaceName\":{\"description\":\"Dogum Yeri adi\",\"type\":\"string\"},\"citizenNumber\":{\"description\":\"Vatandaslik numarasi\",\"type\":\"string\"},\"citizenshipId\":{\"$ref\":\"#/definitions/CitizenshipLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adi\",\"type\":\"string\"},\"gender\":{\"$ref\":\"#/definitions/GenderLOV\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadi\",\"type\":\"string\"}}},\"GenderLOV\":{\"title\":\"GenderLOV\",\"description\":\"Cinsiyet tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Cinsiyet adi\",\"type\":\"string\"}}},\"CitizenshipLOV\":{\"title\":\"CitizenshipLOV\",\"description\":\"Vatandaşlık bilgilerini taşır\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Vatan adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"ContactInfoCreateDTO\":{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"AddressCreateDTO\":{\"title\":\"AddressCreateDTO\",\"description\":\" Kisi veya kurumun adres bilgisini olusturmak icin kullanılır.\\n Adrese ait lokasyon bilgisini içerisinde barındırır.\\n Lokasyon bilgisi önceden tanımlı olmalıdır. Lokasyon bilgisi alınırken lokasyon hierarşisinde kullanıcının seçtiği en altta kalan lokasyonun idsi yeterlidir.\\n Örneğin Türkiye - İstanbul - Ümraniye lokasyonu için sadece Ümraniyenin id sinin verilmesi yeterlidir.\",\"type\":\"object\",\"properties\":{\"address1\":{\"description\":\"Açık adres 1. satır\",\"type\":\"string\"},\"address2\":{\"description\":\"Açık adres 2. satır\",\"type\":\"string\"},\"address3\":{\"description\":\"Açık adres 3. satır\",\"type\":\"string\"},\"categories\":{\"description\":\"Adres kategorileri. İş adresi, Ev adresi, Öncelikli adres\",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Açık adres ve lokasyon bilgilerini içeren tam adres\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"locationId\":{\"format\":\"int64\",\"description\":\"Adresin bağlı olduğu en dip lokasyon bilgisi. Ümraniye, Üsküdar vb.\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/StudentGuardianCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/StudentGuardianProfileDTO\"}],\"definitions\":{\"StudentGuardianProfileDTO\":{\"title\":\"StudentGuardianProfileDTO\",\"description\":\"Talebe veli bilgilerini tutar\",\"type\":\"object\",\"properties\":{\"addresses\":{\"description\":\"Address bilgileri\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/AddressCardDTO\"}},\"adherence\":{\"$ref\":\"#/definitions/AdherenceLOV\"},\"birthDate\":{\"format\":\"date-time\",\"description\":\"Dogum Tarihi\",\"type\":\"string\"},\"citizenship\":{\"$ref\":\"#/definitions/CitizenshipLOV\"},\"contacts\":{\"description\":\"Iletisim bilgileri\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactInfoDTO\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adi\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"isPrimary\":{\"description\":\"Talebe velileri arasinda muhattap olarak alinacak birincil veli isareti.\",\"type\":\"boolean\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadi\",\"type\":\"string\"},\"type\":{\"$ref\":\"#/definitions/StudentGuardianTypeLOV\"}}},\"StudentGuardianTypeLOV\":{\"title\":\"StudentGuardianTypeLOV\",\"description\":\"Talebelerin velisinin yakınlık tipidir. Annesi, Babasi, Amcasi vs.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Veli tipi adi. \",\"type\":\"string\"}}},\"ContactInfoDTO\":{\"title\":\"ContactInfoDTO\",\"description\":\"Iletisim bilgilerini sunmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Category of contact type. For example: Home address, Home telephone, Cell phone etc.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"contactInfo\":{\"description\":\"Telephone number or email address information depending on the type.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"ContactMediumCategoryLOV\":{\"title\":\"ContactMediumCategoryLOV\",\"description\":\"Contact medium kategorileri. Bir kategori tipine ait veriyi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Category Name\",\"type\":\"string\"}}},\"CitizenshipLOV\":{\"title\":\"CitizenshipLOV\",\"description\":\"Vatandaşlık bilgilerini taşır\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Vatan adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"AdherenceLOV\":{\"title\":\"AdherenceLOV\",\"description\":\"Key Value şeklinde Merbutiyet tanımlarını tutar. Örneğin; ihvan, muhibban, diğer.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Merbutiyet adı\",\"type\":\"string\"}}},\"AddressCardDTO\":{\"title\":\"AddressCardDTO\",\"description\":\"Address bilgisini sunar. Sadece full address bilgisini ve kategorisini verir.\\n Adres kategorisine ait kategori adı bilgisi “ContactMediumType” dır.\\n Yani contact medium type \\\"iletişimde bulunulacak adresler\\\" bilgisini ifade eder.\",\"type\":\"object\",\"properties\":{\"addressCategory\":{\"description\":\"Address kategorisi\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Full address. İl ilçe mahalle sokak gibi bütün bilgileri içerir.\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/StudentGuardianProfileDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"adherenceId\": 3299083,\n \"identification\": {\n \"birthDate\": \"1958-09-13T20:52:25.341Z\",\n \"birthPlaceName\": \"ir\",\n \"citizenNumber\": \"ad et veniam\",\n \"citizenshipId\": {\n \"createdBy\": \"eu sint ut consequat\",\n \"createdDate\": \"2013-05-27T02:12:53.863Z\",\n \"id\": 31331899,\n \"name\": \"cupidatat proident commodo nisi\"\n },\n \"createdBy\": \"est id eiusmod quis\",\n \"createdDate\": \"2000-04-18T20:35:07.504Z\",\n \"firstName\": \"ipsum occaecat aliqua tempor reprehenderit\",\n \"gender\": {\n \"createdBy\": \"officia Duis consequat\",\n \"createdDate\": \"1955-03-22T22:32:47.992Z\",\n \"id\": -13644915,\n \"name\": \"anim do minim cillum\"\n },\n \"lastModifiedBy\": \"dolor ad\",\n \"lastModifiedDate\": \"1994-09-19T11:39:06.347Z\",\n \"lastName\": \"nulla consequat Excepteur qui\"\n },\n \"addresses\": [],\n \"contacts\": [],\n \"createdBy\": \"nisi ex officia nostrud esse\",\n \"createdDate\": \"1944-09-25T20:26:55.044Z\",\n \"isPrimary\": true,\n \"lastModifiedBy\": \"mini\",\n \"lastModifiedDate\": \"1975-02-09T07:12:59.074Z\",\n \"professionId\": -98645656,\n \"typeId\": 34697042\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/StudentGuardianCreateDTO\"}],\"definitions\":{\"StudentGuardianCreateDTO\":{\"title\":\"StudentGuardianCreateDTO\",\"description\":\"Talebe velisi oluşturmak için kullanılır.\",\"required\":[\"adherenceId\",\"identification\"],\"type\":\"object\",\"properties\":{\"addresses\":{\"description\":\"Velinin adres bilgisleri. Ev adresi, iş adresi.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/AddressCreateDTO\"}},\"adherenceId\":{\"format\":\"int64\",\"description\":\"Velinin merbutiyet bilgisi. Ihvan mı, muhibban mı, diger mi oldugunu gosterir.\",\"type\":\"integer\"},\"contacts\":{\"description\":\"Velinin iletişim bilgileri. Telefon, email vb.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactInfoCreateDTO\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"identification\":{\"$ref\":\"#/definitions/IdentificationInfoDTO\"},\"isPrimary\":{\"description\":\"Talebe velileri arasinda muhattap olarak alinacak birincil veli isareti.\",\"type\":\"boolean\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"professionId\":{\"format\":\"int64\",\"description\":\"Velinin meslek bilgisi\",\"type\":\"integer\"},\"typeId\":{\"format\":\"int64\",\"description\":\"Velinin Yakınlık Bilgisi. Anne, Baba Amca vs....\",\"type\":\"integer\"}}},\"IdentificationInfoDTO\":{\"title\":\"IdentificationInfoDTO\",\"description\":\"Kisiye ait kimlik bilgilerini tutar.\",\"type\":\"object\",\"properties\":{\"birthDate\":{\"format\":\"date-time\",\"description\":\"Dogum Tarihi\",\"type\":\"string\"},\"birthPlaceName\":{\"description\":\"Dogum Yeri adi\",\"type\":\"string\"},\"citizenNumber\":{\"description\":\"Vatandaslik numarasi\",\"type\":\"string\"},\"citizenshipId\":{\"$ref\":\"#/definitions/CitizenshipLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adi\",\"type\":\"string\"},\"gender\":{\"$ref\":\"#/definitions/GenderLOV\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadi\",\"type\":\"string\"}}},\"GenderLOV\":{\"title\":\"GenderLOV\",\"description\":\"Cinsiyet tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Cinsiyet adi\",\"type\":\"string\"}}},\"CitizenshipLOV\":{\"title\":\"CitizenshipLOV\",\"description\":\"Vatandaşlık bilgilerini taşır\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Vatan adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"ContactInfoCreateDTO\":{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"AddressCreateDTO\":{\"title\":\"AddressCreateDTO\",\"description\":\" Kisi veya kurumun adres bilgisini olusturmak icin kullanılır.\\n Adrese ait lokasyon bilgisini içerisinde barındırır.\\n Lokasyon bilgisi önceden tanımlı olmalıdır. Lokasyon bilgisi alınırken lokasyon hierarşisinde kullanıcının seçtiği en altta kalan lokasyonun idsi yeterlidir.\\n Örneğin Türkiye - İstanbul - Ümraniye lokasyonu için sadece Ümraniyenin id sinin verilmesi yeterlidir.\",\"type\":\"object\",\"properties\":{\"address1\":{\"description\":\"Açık adres 1. satır\",\"type\":\"string\"},\"address2\":{\"description\":\"Açık adres 2. satır\",\"type\":\"string\"},\"address3\":{\"description\":\"Açık adres 3. satır\",\"type\":\"string\"},\"categories\":{\"description\":\"Adres kategorileri. İş adresi, Ev adresi, Öncelikli adres\",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Açık adres ve lokasyon bilgilerini içeren tam adres\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"locationId\":{\"format\":\"int64\",\"description\":\"Adresin bağlı olduğu en dip lokasyon bilgisi. Ümraniye, Üsküdar vb.\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/StudentGuardianCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"adherenceId\": 27758903,\n \"identification\": {\n \"birthDate\": \"1949-10-07T13:01:05.488Z\",\n \"birthPlaceName\": \"cillum laboris\",\n \"citizenNumber\": \"eiusmod\",\n \"citizenshipId\": {\n \"createdBy\": \"commodo exercitation et culpa consequat\",\n \"createdDate\": \"1999-06-20T04:35:00.457Z\",\n \"id\": 39071239,\n \"name\": \"eiusmod ea cupidatat sit Ut\"\n },\n \"createdBy\": \"ullamco et in\",\n \"createdDate\": \"1949-12-27T04:33:36.387Z\",\n \"firstName\": \"officia\",\n \"gender\": {\n \"createdBy\": \"occaecat enim adipisicing\",\n \"createdDate\": \"1958-04-25T14:26:36.557Z\",\n \"id\": 32618009,\n \"name\": \"in in\"\n },\n \"lastModifiedBy\": \"proident cupidatat in Lorem\",\n \"lastModifiedDate\": \"2016-11-29T18:05:22.363Z\",\n \"lastName\": \"elit sit anim amet id\"\n },\n \"addresses\": [],\n \"contacts\": [],\n \"createdBy\": \"cillum ad\",\n \"createdDate\": \"1956-02-19T18:18:10.085Z\",\n \"isPrimary\": true,\n \"lastModifiedBy\": \"irure et amet anim\",\n \"lastModifiedDate\": \"2006-05-22T22:19:59.643Z\",\n \"professionId\": -90200891,\n \"typeId\": 42418785\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/StudentGuardianCreateDTO\"}],\"definitions\":{\"StudentGuardianCreateDTO\":{\"title\":\"StudentGuardianCreateDTO\",\"description\":\"Talebe velisi oluşturmak için kullanılır.\",\"required\":[\"adherenceId\",\"identification\"],\"type\":\"object\",\"properties\":{\"addresses\":{\"description\":\"Velinin adres bilgisleri. Ev adresi, iş adresi.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/AddressCreateDTO\"}},\"adherenceId\":{\"format\":\"int64\",\"description\":\"Velinin merbutiyet bilgisi. Ihvan mı, muhibban mı, diger mi oldugunu gosterir.\",\"type\":\"integer\"},\"contacts\":{\"description\":\"Velinin iletişim bilgileri. Telefon, email vb.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactInfoCreateDTO\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"identification\":{\"$ref\":\"#/definitions/IdentificationInfoDTO\"},\"isPrimary\":{\"description\":\"Talebe velileri arasinda muhattap olarak alinacak birincil veli isareti.\",\"type\":\"boolean\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"professionId\":{\"format\":\"int64\",\"description\":\"Velinin meslek bilgisi\",\"type\":\"integer\"},\"typeId\":{\"format\":\"int64\",\"description\":\"Velinin Yakınlık Bilgisi. Anne, Baba Amca vs....\",\"type\":\"integer\"}}},\"IdentificationInfoDTO\":{\"title\":\"IdentificationInfoDTO\",\"description\":\"Kisiye ait kimlik bilgilerini tutar.\",\"type\":\"object\",\"properties\":{\"birthDate\":{\"format\":\"date-time\",\"description\":\"Dogum Tarihi\",\"type\":\"string\"},\"birthPlaceName\":{\"description\":\"Dogum Yeri adi\",\"type\":\"string\"},\"citizenNumber\":{\"description\":\"Vatandaslik numarasi\",\"type\":\"string\"},\"citizenshipId\":{\"$ref\":\"#/definitions/CitizenshipLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adi\",\"type\":\"string\"},\"gender\":{\"$ref\":\"#/definitions/GenderLOV\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadi\",\"type\":\"string\"}}},\"GenderLOV\":{\"title\":\"GenderLOV\",\"description\":\"Cinsiyet tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Cinsiyet adi\",\"type\":\"string\"}}},\"CitizenshipLOV\":{\"title\":\"CitizenshipLOV\",\"description\":\"Vatandaşlık bilgilerini taşır\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Vatan adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"ContactInfoCreateDTO\":{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"AddressCreateDTO\":{\"title\":\"AddressCreateDTO\",\"description\":\" Kisi veya kurumun adres bilgisini olusturmak icin kullanılır.\\n Adrese ait lokasyon bilgisini içerisinde barındırır.\\n Lokasyon bilgisi önceden tanımlı olmalıdır. Lokasyon bilgisi alınırken lokasyon hierarşisinde kullanıcının seçtiği en altta kalan lokasyonun idsi yeterlidir.\\n Örneğin Türkiye - İstanbul - Ümraniye lokasyonu için sadece Ümraniyenin id sinin verilmesi yeterlidir.\",\"type\":\"object\",\"properties\":{\"address1\":{\"description\":\"Açık adres 1. satır\",\"type\":\"string\"},\"address2\":{\"description\":\"Açık adres 2. satır\",\"type\":\"string\"},\"address3\":{\"description\":\"Açık adres 3. satır\",\"type\":\"string\"},\"categories\":{\"description\":\"Adres kategorileri. İş adresi, Ev adresi, Öncelikli adres\",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Açık adres ve lokasyon bilgilerini içeren tam adres\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"locationId\":{\"format\":\"int64\",\"description\":\"Adresin bağlı olduğu en dip lokasyon bilgisi. Ümraniye, Üsküdar vb.\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/StudentGuardianCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "202" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/StudentGuardianProfileDTO\"}],\"definitions\":{\"StudentGuardianProfileDTO\":{\"title\":\"StudentGuardianProfileDTO\",\"description\":\"Talebe veli bilgilerini tutar\",\"type\":\"object\",\"properties\":{\"addresses\":{\"description\":\"Address bilgileri\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/AddressCardDTO\"}},\"adherence\":{\"$ref\":\"#/definitions/AdherenceLOV\"},\"birthDate\":{\"format\":\"date-time\",\"description\":\"Dogum Tarihi\",\"type\":\"string\"},\"citizenship\":{\"$ref\":\"#/definitions/CitizenshipLOV\"},\"contacts\":{\"description\":\"Iletisim bilgileri\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactInfoDTO\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adi\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"isPrimary\":{\"description\":\"Talebe velileri arasinda muhattap olarak alinacak birincil veli isareti.\",\"type\":\"boolean\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadi\",\"type\":\"string\"},\"type\":{\"$ref\":\"#/definitions/StudentGuardianTypeLOV\"}}},\"StudentGuardianTypeLOV\":{\"title\":\"StudentGuardianTypeLOV\",\"description\":\"Talebelerin velisinin yakınlık tipidir. Annesi, Babasi, Amcasi vs.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Veli tipi adi. \",\"type\":\"string\"}}},\"ContactInfoDTO\":{\"title\":\"ContactInfoDTO\",\"description\":\"Iletisim bilgilerini sunmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Category of contact type. For example: Home address, Home telephone, Cell phone etc.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"contactInfo\":{\"description\":\"Telephone number or email address information depending on the type.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"ContactMediumCategoryLOV\":{\"title\":\"ContactMediumCategoryLOV\",\"description\":\"Contact medium kategorileri. Bir kategori tipine ait veriyi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Category Name\",\"type\":\"string\"}}},\"CitizenshipLOV\":{\"title\":\"CitizenshipLOV\",\"description\":\"Vatandaşlık bilgilerini taşır\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Vatan adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"AdherenceLOV\":{\"title\":\"AdherenceLOV\",\"description\":\"Key Value şeklinde Merbutiyet tanımlarını tutar. Örneğin; ihvan, muhibban, diğer.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Merbutiyet adı\",\"type\":\"string\"}}},\"AddressCardDTO\":{\"title\":\"AddressCardDTO\",\"description\":\"Address bilgisini sunar. Sadece full address bilgisini ve kategorisini verir.\\n Adres kategorisine ait kategori adı bilgisi “ContactMediumType” dır.\\n Yani contact medium type \\\"iletişimde bulunulacak adresler\\\" bilgisini ifade eder.\",\"type\":\"object\",\"properties\":{\"addressCategory\":{\"description\":\"Address kategorisi\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Full address. İl ilçe mahalle sokak gibi bütün bilgileri içerir.\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/StudentGuardianProfileDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"adherenceId\": -74763771,\n \"identification\": {\n \"birthDate\": \"1993-11-30T01:07:50.935Z\",\n \"birthPlaceName\": \"ea esse sunt ut deserunt\",\n \"citizenNumber\": \"in id\",\n \"citizenshipId\": {\n \"createdBy\": \"ullamco\",\n \"createdDate\": \"1993-10-23T00:19:22.685Z\",\n \"id\": -92360216,\n \"name\": \"adipisicing dolor in\"\n },\n \"createdBy\": \"ipsum\",\n \"createdDate\": \"1994-02-05T16:21:09.021Z\",\n \"firstName\": \"D\",\n \"gender\": {\n \"createdBy\": \"officia a\",\n \"createdDate\": \"1992-05-21T02:44:38.233Z\",\n \"id\": -64565646,\n \"name\": \"laborum aliquip magna\"\n },\n \"lastModifiedBy\": \"dolor ut deserunt velit\",\n \"lastModifiedDate\": \"1977-06-06T12:20:25.359Z\",\n \"lastName\": \"in mollit velit\"\n },\n \"addresses\": [],\n \"contacts\": [],\n \"createdBy\": \"velit veniam amet ut irure\",\n \"createdDate\": \"2005-08-02T09:53:43.803Z\",\n \"isPrimary\": false,\n \"lastModifiedBy\": \"qui deserunt\",\n \"lastModifiedDate\": \"1960-03-30T05:56:57.572Z\",\n \"professionId\": 89568954,\n \"typeId\": -51380191\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/StudentGuardianCreateDTO\"}],\"definitions\":{\"StudentGuardianCreateDTO\":{\"title\":\"StudentGuardianCreateDTO\",\"description\":\"Talebe velisi oluşturmak için kullanılır.\",\"required\":[\"adherenceId\",\"identification\"],\"type\":\"object\",\"properties\":{\"addresses\":{\"description\":\"Velinin adres bilgisleri. Ev adresi, iş adresi.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/AddressCreateDTO\"}},\"adherenceId\":{\"format\":\"int64\",\"description\":\"Velinin merbutiyet bilgisi. Ihvan mı, muhibban mı, diger mi oldugunu gosterir.\",\"type\":\"integer\"},\"contacts\":{\"description\":\"Velinin iletişim bilgileri. Telefon, email vb.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactInfoCreateDTO\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"identification\":{\"$ref\":\"#/definitions/IdentificationInfoDTO\"},\"isPrimary\":{\"description\":\"Talebe velileri arasinda muhattap olarak alinacak birincil veli isareti.\",\"type\":\"boolean\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"professionId\":{\"format\":\"int64\",\"description\":\"Velinin meslek bilgisi\",\"type\":\"integer\"},\"typeId\":{\"format\":\"int64\",\"description\":\"Velinin Yakınlık Bilgisi. Anne, Baba Amca vs....\",\"type\":\"integer\"}}},\"IdentificationInfoDTO\":{\"title\":\"IdentificationInfoDTO\",\"description\":\"Kisiye ait kimlik bilgilerini tutar.\",\"type\":\"object\",\"properties\":{\"birthDate\":{\"format\":\"date-time\",\"description\":\"Dogum Tarihi\",\"type\":\"string\"},\"birthPlaceName\":{\"description\":\"Dogum Yeri adi\",\"type\":\"string\"},\"citizenNumber\":{\"description\":\"Vatandaslik numarasi\",\"type\":\"string\"},\"citizenshipId\":{\"$ref\":\"#/definitions/CitizenshipLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adi\",\"type\":\"string\"},\"gender\":{\"$ref\":\"#/definitions/GenderLOV\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadi\",\"type\":\"string\"}}},\"GenderLOV\":{\"title\":\"GenderLOV\",\"description\":\"Cinsiyet tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Cinsiyet adi\",\"type\":\"string\"}}},\"CitizenshipLOV\":{\"title\":\"CitizenshipLOV\",\"description\":\"Vatandaşlık bilgilerini taşır\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Vatan adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"ContactInfoCreateDTO\":{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"AddressCreateDTO\":{\"title\":\"AddressCreateDTO\",\"description\":\" Kisi veya kurumun adres bilgisini olusturmak icin kullanılır.\\n Adrese ait lokasyon bilgisini içerisinde barındırır.\\n Lokasyon bilgisi önceden tanımlı olmalıdır. Lokasyon bilgisi alınırken lokasyon hierarşisinde kullanıcının seçtiği en altta kalan lokasyonun idsi yeterlidir.\\n Örneğin Türkiye - İstanbul - Ümraniye lokasyonu için sadece Ümraniyenin id sinin verilmesi yeterlidir.\",\"type\":\"object\",\"properties\":{\"address1\":{\"description\":\"Açık adres 1. satır\",\"type\":\"string\"},\"address2\":{\"description\":\"Açık adres 2. satır\",\"type\":\"string\"},\"address3\":{\"description\":\"Açık adres 3. satır\",\"type\":\"string\"},\"categories\":{\"description\":\"Adres kategorileri. İş adresi, Ev adresi, Öncelikli adres\",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Açık adres ve lokasyon bilgilerini içeren tam adres\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"locationId\":{\"format\":\"int64\",\"description\":\"Adresin bağlı olduğu en dip lokasyon bilgisi. Ümraniye, Üsküdar vb.\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/StudentGuardianCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"adherenceId\": -95050010,\n \"identification\": {\n \"birthDate\": \"1986-11-17T05:11:34.454Z\",\n \"birthPlaceName\": \"labore magna quis laboris id\",\n \"citizenNumber\": \"elit\",\n \"citizenshipId\": {\n \"createdBy\": \"Lorem eiusmod laborum quis\",\n \"createdDate\": \"1995-05-16T00:55:43.997Z\",\n \"id\": -40600466,\n \"name\": \"amet sed ea tempor\"\n },\n \"createdBy\": \"laborum deserunt occaecat sint eiusmod\",\n \"createdDate\": \"1973-06-04T22:53:04.874Z\",\n \"firstName\": \"Duis nisi sint\",\n \"gender\": {\n \"createdBy\": \"anim sint culpa deserunt\",\n \"createdDate\": \"1969-05-23T06:05:30.746Z\",\n \"id\": -74139011,\n \"name\": \"sunt in\"\n },\n \"lastModifiedBy\": \"eiusmod\",\n \"lastModifiedDate\": \"1942-07-06T00:06:57.141Z\",\n \"lastName\": \"pariatur in anim laboris minim\"\n },\n \"addresses\": [],\n \"contacts\": [],\n \"createdBy\": \"occaecat incidid\",\n \"createdDate\": \"1974-06-05T00:31:05.972Z\",\n \"isPrimary\": false,\n \"lastModifiedBy\": \"nulla Duis\",\n \"lastModifiedDate\": \"2017-09-29T20:07:17.135Z\",\n \"professionId\": -46696032,\n \"typeId\": -40533840\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/StudentGuardianCreateDTO\"}],\"definitions\":{\"StudentGuardianCreateDTO\":{\"title\":\"StudentGuardianCreateDTO\",\"description\":\"Talebe velisi oluşturmak için kullanılır.\",\"required\":[\"adherenceId\",\"identification\"],\"type\":\"object\",\"properties\":{\"addresses\":{\"description\":\"Velinin adres bilgisleri. Ev adresi, iş adresi.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/AddressCreateDTO\"}},\"adherenceId\":{\"format\":\"int64\",\"description\":\"Velinin merbutiyet bilgisi. Ihvan mı, muhibban mı, diger mi oldugunu gosterir.\",\"type\":\"integer\"},\"contacts\":{\"description\":\"Velinin iletişim bilgileri. Telefon, email vb.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactInfoCreateDTO\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"identification\":{\"$ref\":\"#/definitions/IdentificationInfoDTO\"},\"isPrimary\":{\"description\":\"Talebe velileri arasinda muhattap olarak alinacak birincil veli isareti.\",\"type\":\"boolean\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"professionId\":{\"format\":\"int64\",\"description\":\"Velinin meslek bilgisi\",\"type\":\"integer\"},\"typeId\":{\"format\":\"int64\",\"description\":\"Velinin Yakınlık Bilgisi. Anne, Baba Amca vs....\",\"type\":\"integer\"}}},\"IdentificationInfoDTO\":{\"title\":\"IdentificationInfoDTO\",\"description\":\"Kisiye ait kimlik bilgilerini tutar.\",\"type\":\"object\",\"properties\":{\"birthDate\":{\"format\":\"date-time\",\"description\":\"Dogum Tarihi\",\"type\":\"string\"},\"birthPlaceName\":{\"description\":\"Dogum Yeri adi\",\"type\":\"string\"},\"citizenNumber\":{\"description\":\"Vatandaslik numarasi\",\"type\":\"string\"},\"citizenshipId\":{\"$ref\":\"#/definitions/CitizenshipLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adi\",\"type\":\"string\"},\"gender\":{\"$ref\":\"#/definitions/GenderLOV\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadi\",\"type\":\"string\"}}},\"GenderLOV\":{\"title\":\"GenderLOV\",\"description\":\"Cinsiyet tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Cinsiyet adi\",\"type\":\"string\"}}},\"CitizenshipLOV\":{\"title\":\"CitizenshipLOV\",\"description\":\"Vatandaşlık bilgilerini taşır\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Vatan adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"ContactInfoCreateDTO\":{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"AddressCreateDTO\":{\"title\":\"AddressCreateDTO\",\"description\":\" Kisi veya kurumun adres bilgisini olusturmak icin kullanılır.\\n Adrese ait lokasyon bilgisini içerisinde barındırır.\\n Lokasyon bilgisi önceden tanımlı olmalıdır. Lokasyon bilgisi alınırken lokasyon hierarşisinde kullanıcının seçtiği en altta kalan lokasyonun idsi yeterlidir.\\n Örneğin Türkiye - İstanbul - Ümraniye lokasyonu için sadece Ümraniyenin id sinin verilmesi yeterlidir.\",\"type\":\"object\",\"properties\":{\"address1\":{\"description\":\"Açık adres 1. satır\",\"type\":\"string\"},\"address2\":{\"description\":\"Açık adres 2. satır\",\"type\":\"string\"},\"address3\":{\"description\":\"Açık adres 3. satır\",\"type\":\"string\"},\"categories\":{\"description\":\"Adres kategorileri. İş adresi, Ev adresi, Öncelikli adres\",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Açık adres ve lokasyon bilgilerini içeren tam adres\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"locationId\":{\"format\":\"int64\",\"description\":\"Adresin bağlı olduğu en dip lokasyon bilgisi. Ümraniye, Üsküdar vb.\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/StudentGuardianCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"adherenceId\": -75406991,\n \"identification\": {\n \"birthDate\": \"1975-09-27T12:18:22.792Z\",\n \"birthPlaceName\": \"qui Duis\",\n \"citizenNumber\": \"ipsum\",\n \"citizenshipId\": {\n \"createdBy\": \"voluptate dolor\",\n \"createdDate\": \"2006-06-16T21:55:38.837Z\",\n \"id\": 86291611,\n \"name\": \"dolor do in fugiat\"\n },\n \"createdBy\": \"anim voluptate\",\n \"createdDate\": \"1991-05-30T07:29:00.602Z\",\n \"firstName\": \"qui enim\",\n \"gender\": {\n \"createdBy\": \"cupidatat eiusm\",\n \"createdDate\": \"2003-03-31T03:05:13.702Z\",\n \"id\": -41274248,\n \"name\": \"esse cillum eiusmod mollit\"\n },\n \"lastModifiedBy\": \"laborum eu tempor\",\n \"lastModifiedDate\": \"2000-05-01T11:29:53.534Z\",\n \"lastName\": \"elit\"\n },\n \"addresses\": [],\n \"contacts\": [],\n \"createdBy\": \"labore in\",\n \"createdDate\": \"1962-05-03T18:28:52.982Z\",\n \"isPrimary\": false,\n \"lastModifiedBy\": \"exercitation Ut\",\n \"lastModifiedDate\": \"1995-03-29T17:46:18.626Z\",\n \"professionId\": 34704173,\n \"typeId\": -1076368\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/StudentGuardianCreateDTO\"}],\"definitions\":{\"StudentGuardianCreateDTO\":{\"title\":\"StudentGuardianCreateDTO\",\"description\":\"Talebe velisi oluşturmak için kullanılır.\",\"required\":[\"adherenceId\",\"identification\"],\"type\":\"object\",\"properties\":{\"addresses\":{\"description\":\"Velinin adres bilgisleri. Ev adresi, iş adresi.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/AddressCreateDTO\"}},\"adherenceId\":{\"format\":\"int64\",\"description\":\"Velinin merbutiyet bilgisi. Ihvan mı, muhibban mı, diger mi oldugunu gosterir.\",\"type\":\"integer\"},\"contacts\":{\"description\":\"Velinin iletişim bilgileri. Telefon, email vb.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactInfoCreateDTO\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"identification\":{\"$ref\":\"#/definitions/IdentificationInfoDTO\"},\"isPrimary\":{\"description\":\"Talebe velileri arasinda muhattap olarak alinacak birincil veli isareti.\",\"type\":\"boolean\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"professionId\":{\"format\":\"int64\",\"description\":\"Velinin meslek bilgisi\",\"type\":\"integer\"},\"typeId\":{\"format\":\"int64\",\"description\":\"Velinin Yakınlık Bilgisi. Anne, Baba Amca vs....\",\"type\":\"integer\"}}},\"IdentificationInfoDTO\":{\"title\":\"IdentificationInfoDTO\",\"description\":\"Kisiye ait kimlik bilgilerini tutar.\",\"type\":\"object\",\"properties\":{\"birthDate\":{\"format\":\"date-time\",\"description\":\"Dogum Tarihi\",\"type\":\"string\"},\"birthPlaceName\":{\"description\":\"Dogum Yeri adi\",\"type\":\"string\"},\"citizenNumber\":{\"description\":\"Vatandaslik numarasi\",\"type\":\"string\"},\"citizenshipId\":{\"$ref\":\"#/definitions/CitizenshipLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adi\",\"type\":\"string\"},\"gender\":{\"$ref\":\"#/definitions/GenderLOV\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadi\",\"type\":\"string\"}}},\"GenderLOV\":{\"title\":\"GenderLOV\",\"description\":\"Cinsiyet tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Cinsiyet adi\",\"type\":\"string\"}}},\"CitizenshipLOV\":{\"title\":\"CitizenshipLOV\",\"description\":\"Vatandaşlık bilgilerini taşır\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Vatan adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"ContactInfoCreateDTO\":{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"AddressCreateDTO\":{\"title\":\"AddressCreateDTO\",\"description\":\" Kisi veya kurumun adres bilgisini olusturmak icin kullanılır.\\n Adrese ait lokasyon bilgisini içerisinde barındırır.\\n Lokasyon bilgisi önceden tanımlı olmalıdır. Lokasyon bilgisi alınırken lokasyon hierarşisinde kullanıcının seçtiği en altta kalan lokasyonun idsi yeterlidir.\\n Örneğin Türkiye - İstanbul - Ümraniye lokasyonu için sadece Ümraniyenin id sinin verilmesi yeterlidir.\",\"type\":\"object\",\"properties\":{\"address1\":{\"description\":\"Açık adres 1. satır\",\"type\":\"string\"},\"address2\":{\"description\":\"Açık adres 2. satır\",\"type\":\"string\"},\"address3\":{\"description\":\"Açık adres 3. satır\",\"type\":\"string\"},\"categories\":{\"description\":\"Adres kategorileri. İş adresi, Ev adresi, Öncelikli adres\",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Açık adres ve lokasyon bilgilerini içeren tam adres\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"locationId\":{\"format\":\"int64\",\"description\":\"Adresin bağlı olduğu en dip lokasyon bilgisi. Ümraniye, Üsküdar vb.\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/StudentGuardianCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"adherenceId\": 69091527,\n \"identification\": {\n \"birthDate\": \"2002-03-01T21:41:13.253Z\",\n \"birthPlaceName\": \"minim voluptate velit in\",\n \"citizenNumber\": \"culpa pariatur sed\",\n \"citizenshipId\": {\n \"createdBy\": \"proident officia in\",\n \"createdDate\": \"1959-03-09T01:29:12.034Z\",\n \"id\": 52698926,\n \"name\": \"id irure cupidatat amet\"\n },\n \"createdBy\": \"pariatur velit nu\",\n \"createdDate\": \"2002-12-23T03:05:24.565Z\",\n \"firstName\": \"ullamco aute\",\n \"gender\": {\n \"createdBy\": \"incididun\",\n \"createdDate\": \"2002-11-16T21:18:23.398Z\",\n \"id\": -93431736,\n \"name\": \"nulla\"\n },\n \"lastModifiedBy\": \"esse\",\n \"lastModifiedDate\": \"1985-06-04T11:06:13.183Z\",\n \"lastName\": \"proident Lorem dolore Duis ut\"\n },\n \"addresses\": [],\n \"contacts\": [],\n \"createdBy\": \"est\",\n \"createdDate\": \"1996-02-01T01:57:40.404Z\",\n \"isPrimary\": false,\n \"lastModifiedBy\": \"ut dolore paria\",\n \"lastModifiedDate\": \"1978-01-25T01:51:45.697Z\",\n \"professionId\": -32896416,\n \"typeId\": -81338043\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/StudentGuardianCreateDTO\"}],\"definitions\":{\"StudentGuardianCreateDTO\":{\"title\":\"StudentGuardianCreateDTO\",\"description\":\"Talebe velisi oluşturmak için kullanılır.\",\"required\":[\"adherenceId\",\"identification\"],\"type\":\"object\",\"properties\":{\"addresses\":{\"description\":\"Velinin adres bilgisleri. Ev adresi, iş adresi.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/AddressCreateDTO\"}},\"adherenceId\":{\"format\":\"int64\",\"description\":\"Velinin merbutiyet bilgisi. Ihvan mı, muhibban mı, diger mi oldugunu gosterir.\",\"type\":\"integer\"},\"contacts\":{\"description\":\"Velinin iletişim bilgileri. Telefon, email vb.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactInfoCreateDTO\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"identification\":{\"$ref\":\"#/definitions/IdentificationInfoDTO\"},\"isPrimary\":{\"description\":\"Talebe velileri arasinda muhattap olarak alinacak birincil veli isareti.\",\"type\":\"boolean\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"professionId\":{\"format\":\"int64\",\"description\":\"Velinin meslek bilgisi\",\"type\":\"integer\"},\"typeId\":{\"format\":\"int64\",\"description\":\"Velinin Yakınlık Bilgisi. Anne, Baba Amca vs....\",\"type\":\"integer\"}}},\"IdentificationInfoDTO\":{\"title\":\"IdentificationInfoDTO\",\"description\":\"Kisiye ait kimlik bilgilerini tutar.\",\"type\":\"object\",\"properties\":{\"birthDate\":{\"format\":\"date-time\",\"description\":\"Dogum Tarihi\",\"type\":\"string\"},\"birthPlaceName\":{\"description\":\"Dogum Yeri adi\",\"type\":\"string\"},\"citizenNumber\":{\"description\":\"Vatandaslik numarasi\",\"type\":\"string\"},\"citizenshipId\":{\"$ref\":\"#/definitions/CitizenshipLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adi\",\"type\":\"string\"},\"gender\":{\"$ref\":\"#/definitions/GenderLOV\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadi\",\"type\":\"string\"}}},\"GenderLOV\":{\"title\":\"GenderLOV\",\"description\":\"Cinsiyet tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Cinsiyet adi\",\"type\":\"string\"}}},\"CitizenshipLOV\":{\"title\":\"CitizenshipLOV\",\"description\":\"Vatandaşlık bilgilerini taşır\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Vatan adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"ContactInfoCreateDTO\":{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"AddressCreateDTO\":{\"title\":\"AddressCreateDTO\",\"description\":\" Kisi veya kurumun adres bilgisini olusturmak icin kullanılır.\\n Adrese ait lokasyon bilgisini içerisinde barındırır.\\n Lokasyon bilgisi önceden tanımlı olmalıdır. Lokasyon bilgisi alınırken lokasyon hierarşisinde kullanıcının seçtiği en altta kalan lokasyonun idsi yeterlidir.\\n Örneğin Türkiye - İstanbul - Ümraniye lokasyonu için sadece Ümraniyenin id sinin verilmesi yeterlidir.\",\"type\":\"object\",\"properties\":{\"address1\":{\"description\":\"Açık adres 1. satır\",\"type\":\"string\"},\"address2\":{\"description\":\"Açık adres 2. satır\",\"type\":\"string\"},\"address3\":{\"description\":\"Açık adres 3. satır\",\"type\":\"string\"},\"categories\":{\"description\":\"Adres kategorileri. İş adresi, Ev adresi, Öncelikli adres\",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Açık adres ve lokasyon bilgilerini içeren tam adres\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"locationId\":{\"format\":\"int64\",\"description\":\"Adresin bağlı olduğu en dip lokasyon bilgisi. Ümraniye, Üsküdar vb.\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/StudentGuardianCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"adherenceId\": 81321174,\n \"identification\": {\n \"birthDate\": \"2000-06-06T00:06:19.272Z\",\n \"birthPlaceName\": \"aliqua culpa tempor in \",\n \"citizenNumber\": \"laboris\",\n \"citizenshipId\": {\n \"createdBy\": \"eiusmod \",\n \"createdDate\": \"1991-08-22T13:25:25.979Z\",\n \"id\": -8608097,\n \"name\": \"qui consectetur enim nostrud\"\n },\n \"createdBy\": \"eu\",\n \"createdDate\": \"2015-02-15T17:37:54.887Z\",\n \"firstName\": \"sint proident\",\n \"gender\": {\n \"createdBy\": \"Excepteur voluptate\",\n \"createdDate\": \"1989-12-05T04:39:28.439Z\",\n \"id\": 60806947,\n \"name\": \"sit dolore ex ullamco\"\n },\n \"lastModifiedBy\": \"magna ullamco exercitation\",\n \"lastModifiedDate\": \"2007-08-21T03:26:46.585Z\",\n \"lastName\": \"nulla\"\n },\n \"addresses\": [],\n \"contacts\": [],\n \"createdBy\": \"eiusmod ut dolor ad Lorem\",\n \"createdDate\": \"1970-05-13T16:56:32.533Z\",\n \"isPrimary\": true,\n \"lastModifiedBy\": \"proident laboris Ut\",\n \"lastModifiedDate\": \"1981-11-08T23:07:33.152Z\",\n \"professionId\": 58220107,\n \"typeId\": -34755853\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/StudentGuardianCreateDTO\"}],\"definitions\":{\"StudentGuardianCreateDTO\":{\"title\":\"StudentGuardianCreateDTO\",\"description\":\"Talebe velisi oluşturmak için kullanılır.\",\"required\":[\"adherenceId\",\"identification\"],\"type\":\"object\",\"properties\":{\"addresses\":{\"description\":\"Velinin adres bilgisleri. Ev adresi, iş adresi.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/AddressCreateDTO\"}},\"adherenceId\":{\"format\":\"int64\",\"description\":\"Velinin merbutiyet bilgisi. Ihvan mı, muhibban mı, diger mi oldugunu gosterir.\",\"type\":\"integer\"},\"contacts\":{\"description\":\"Velinin iletişim bilgileri. Telefon, email vb.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactInfoCreateDTO\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"identification\":{\"$ref\":\"#/definitions/IdentificationInfoDTO\"},\"isPrimary\":{\"description\":\"Talebe velileri arasinda muhattap olarak alinacak birincil veli isareti.\",\"type\":\"boolean\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"professionId\":{\"format\":\"int64\",\"description\":\"Velinin meslek bilgisi\",\"type\":\"integer\"},\"typeId\":{\"format\":\"int64\",\"description\":\"Velinin Yakınlık Bilgisi. Anne, Baba Amca vs....\",\"type\":\"integer\"}}},\"IdentificationInfoDTO\":{\"title\":\"IdentificationInfoDTO\",\"description\":\"Kisiye ait kimlik bilgilerini tutar.\",\"type\":\"object\",\"properties\":{\"birthDate\":{\"format\":\"date-time\",\"description\":\"Dogum Tarihi\",\"type\":\"string\"},\"birthPlaceName\":{\"description\":\"Dogum Yeri adi\",\"type\":\"string\"},\"citizenNumber\":{\"description\":\"Vatandaslik numarasi\",\"type\":\"string\"},\"citizenshipId\":{\"$ref\":\"#/definitions/CitizenshipLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adi\",\"type\":\"string\"},\"gender\":{\"$ref\":\"#/definitions/GenderLOV\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadi\",\"type\":\"string\"}}},\"GenderLOV\":{\"title\":\"GenderLOV\",\"description\":\"Cinsiyet tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Cinsiyet adi\",\"type\":\"string\"}}},\"CitizenshipLOV\":{\"title\":\"CitizenshipLOV\",\"description\":\"Vatandaşlık bilgilerini taşır\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Vatan adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"ContactInfoCreateDTO\":{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"AddressCreateDTO\":{\"title\":\"AddressCreateDTO\",\"description\":\" Kisi veya kurumun adres bilgisini olusturmak icin kullanılır.\\n Adrese ait lokasyon bilgisini içerisinde barındırır.\\n Lokasyon bilgisi önceden tanımlı olmalıdır. Lokasyon bilgisi alınırken lokasyon hierarşisinde kullanıcının seçtiği en altta kalan lokasyonun idsi yeterlidir.\\n Örneğin Türkiye - İstanbul - Ümraniye lokasyonu için sadece Ümraniyenin id sinin verilmesi yeterlidir.\",\"type\":\"object\",\"properties\":{\"address1\":{\"description\":\"Açık adres 1. satır\",\"type\":\"string\"},\"address2\":{\"description\":\"Açık adres 2. satır\",\"type\":\"string\"},\"address3\":{\"description\":\"Açık adres 3. satır\",\"type\":\"string\"},\"categories\":{\"description\":\"Adres kategorileri. İş adresi, Ev adresi, Öncelikli adres\",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Açık adres ve lokasyon bilgilerini içeren tam adres\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"locationId\":{\"format\":\"int64\",\"description\":\"Adresin bağlı olduğu en dip lokasyon bilgisi. Ümraniye, Üsküdar vb.\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/StudentGuardianCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz. " + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Talebenin velisini siler. Talebe velisi silindiğinde veliye ait kişisel verileride silinmiş olur." + }, + "id": { + "element": "string", + "content": "deleteStudentGuardian" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Guardian Unique Identifier" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "guardianId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Student Unique Identifier" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Talebenin velisini siler. Talebe velisi silindiğinde veliye ait kişisel verileride silinmiş olur." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "204" + } + }, + "content": [ + { + "element": "copy", + "content": "Student's Guardian Deleted" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz. " + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/students/{id}/health" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Talebenin saglık bilgisini verir. Mevcut ve geçirdiği rahatsızlıkları barındırmaktadır." + }, + "id": { + "element": "string", + "content": "getStudentHealthInfo" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Student ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Gets one `HealthInfo` of `Student`." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "`HealthInfo` entity of `Student`." + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/HealthInfoDTO\"}],\"definitions\":{\"HealthInfoDTO\":{\"title\":\"HealthInfoDTO\",\"description\":\"Kisiye ait saglik bilgilerini tutar.\",\"type\":\"object\",\"properties\":{\"bloodGroup\":{\"$ref\":\"#/definitions/BloodGroupLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"diseases\":{\"description\":\"Disease informations\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/HealthProblemDTO\"}},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"length\":{\"format\":\"int64\",\"description\":\"Body length of person\",\"type\":\"integer\"},\"lengthMeasurementUnit\":{\"$ref\":\"#/definitions/LengthMeasurementUnitLOV\"},\"weight\":{\"format\":\"double\",\"description\":\"Body weight of person\",\"type\":\"number\"},\"weightMeasurementUnit\":{\"$ref\":\"#/definitions/WeightMeasurementUnitLOV\"}}},\"WeightMeasurementUnitLOV\":{\"title\":\"WeightMeasurementUnitLOV\",\"description\":\"Ağırlık ölçü birimleridir. Ölçüm sistemi farketmez. Örneğin : kg, gr, ton, galon vb..\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Agirlik birim adi\",\"type\":\"string\"}}},\"LengthMeasurementUnitLOV\":{\"title\":\"LengthMeasurementUnitLOV\",\"description\":\"Uzunluk ölçü birimleridir. Ölçüm sistemi farketmez. Örneğin : cm, metre, desimetre, mil, km vb.. \",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Adi\",\"type\":\"string\"}}},\"HealthProblemDTO\":{\"title\":\"HealthProblemDTO\",\"description\":\"Kişilere ait sağlık problemlerinin tanımını tutar. Hastalık tipi örnek olarak : Geçirdiği rahatsızlıklar, devam eden rahatsızlıklar olabilir. Hastalık devamlılığı türüdür.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Geçirilen rahatsızlıkla ilgili açıklama ve notlar.\",\"type\":\"string\"},\"disease\":{\"$ref\":\"#/definitions/DiseaseLOV\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"type\":{\"$ref\":\"#/definitions/HealthProblemTypeLOV\"}}},\"HealthProblemTypeLOV\":{\"title\":\"HealthProblemTypeLOV\",\"description\":\"Hastalık türüdür. Örneğin; Geçirilmiş rahatsızlıklar, devam eden rahatsızlıklar vb.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Hastalık türü adı\",\"type\":\"string\"}}},\"DiseaseLOV\":{\"title\":\"DiseaseLOV\",\"description\":\"Hastalık bilgilerini tutar. Hastalıklar etiket olarak tanımlanabilir.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Hastaligin adi\",\"type\":\"string\"}}},\"BloodGroupLOV\":{\"title\":\"BloodGroupLOV\",\"description\":\"Kan grubu tanımıdır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Kan grubu adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/HealthInfoDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz." + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/students/{id}/health/general" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Talebenin genel sağlık bilgilerini güncelleyen metot" + }, + "id": { + "element": "string", + "content": "updateStudentGeneralHealthInfo" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Unique Student Identifier" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Talebenin genel saglik bilgilerinin guncellendigi metod. Ekleme metoduna gerek yoktur. eklerken de guncellerken de bu metod kullanilacaktir." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"bloodGroup\": {\n \"createdBy\": \"aliqua ex occaec\",\n \"createdDate\": \"1945-03-11T16:30:48.992Z\",\n \"id\": 59097625,\n \"name\": \"ex do quis Lorem\"\n },\n \"createdBy\": \"aliquip nulla\",\n \"createdDate\": \"1965-11-10T17:11:31.066Z\",\n \"id\": -78256629,\n \"lastModifiedBy\": \"ea anim Lorem\",\n \"lastModifiedDate\": \"1962-01-05T01:38:45.588Z\",\n \"length\": -90336251,\n \"lengthMeasurementUnit\": {\n \"createdBy\": \"cillum \",\n \"createdDate\": \"1973-07-04T04:10:04.219Z\",\n \"id\": -26232664,\n \"name\": \"sunt in do\"\n },\n \"weight\": 81820171.39956662,\n \"weightMeasurementUnit\": {\n \"createdBy\": \"reprehenderit\",\n \"createdDate\": \"2015-11-10T17:40:14.338Z\",\n \"id\": 63001161,\n \"name\": \"qui consequat ullamco\"\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/GeneralHealthInfoDTO\"}],\"definitions\":{\"GeneralHealthInfoDTO\":{\"title\":\"GeneralHealthInfoDTO\",\"description\":\"Kisiye ait bedeni saglik bilgilerini tutar. Boy kilo kan grubu gibi. Rahatsızlık bilgilerini barındırmaz.\",\"type\":\"object\",\"properties\":{\"bloodGroup\":{\"$ref\":\"#/definitions/BloodGroupLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"length\":{\"format\":\"int64\",\"description\":\"Body length of person\",\"type\":\"integer\"},\"lengthMeasurementUnit\":{\"$ref\":\"#/definitions/LengthMeasurementUnitLOV\"},\"weight\":{\"format\":\"double\",\"description\":\"Body weight of person\",\"type\":\"number\"},\"weightMeasurementUnit\":{\"$ref\":\"#/definitions/WeightMeasurementUnitLOV\"}}},\"WeightMeasurementUnitLOV\":{\"title\":\"WeightMeasurementUnitLOV\",\"description\":\"Ağırlık ölçü birimleridir. Ölçüm sistemi farketmez. Örneğin : kg, gr, ton, galon vb..\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Agirlik birim adi\",\"type\":\"string\"}}},\"LengthMeasurementUnitLOV\":{\"title\":\"LengthMeasurementUnitLOV\",\"description\":\"Uzunluk ölçü birimleridir. Ölçüm sistemi farketmez. Örneğin : cm, metre, desimetre, mil, km vb.. \",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Adi\",\"type\":\"string\"}}},\"BloodGroupLOV\":{\"title\":\"BloodGroupLOV\",\"description\":\"Kan grubu tanımıdır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Kan grubu adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/GeneralHealthInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem Başarılı." + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/GeneralHealthInfoDTO\"}],\"definitions\":{\"GeneralHealthInfoDTO\":{\"title\":\"GeneralHealthInfoDTO\",\"description\":\"Kisiye ait bedeni saglik bilgilerini tutar. Boy kilo kan grubu gibi. Rahatsızlık bilgilerini barındırmaz.\",\"type\":\"object\",\"properties\":{\"bloodGroup\":{\"$ref\":\"#/definitions/BloodGroupLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"length\":{\"format\":\"int64\",\"description\":\"Body length of person\",\"type\":\"integer\"},\"lengthMeasurementUnit\":{\"$ref\":\"#/definitions/LengthMeasurementUnitLOV\"},\"weight\":{\"format\":\"double\",\"description\":\"Body weight of person\",\"type\":\"number\"},\"weightMeasurementUnit\":{\"$ref\":\"#/definitions/WeightMeasurementUnitLOV\"}}},\"WeightMeasurementUnitLOV\":{\"title\":\"WeightMeasurementUnitLOV\",\"description\":\"Ağırlık ölçü birimleridir. Ölçüm sistemi farketmez. Örneğin : kg, gr, ton, galon vb..\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Agirlik birim adi\",\"type\":\"string\"}}},\"LengthMeasurementUnitLOV\":{\"title\":\"LengthMeasurementUnitLOV\",\"description\":\"Uzunluk ölçü birimleridir. Ölçüm sistemi farketmez. Örneğin : cm, metre, desimetre, mil, km vb.. \",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Adi\",\"type\":\"string\"}}},\"BloodGroupLOV\":{\"title\":\"BloodGroupLOV\",\"description\":\"Kan grubu tanımıdır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Kan grubu adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/GeneralHealthInfoDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"bloodGroup\": {\n \"createdBy\": \"ullamco cupidatat commodo sit labore\",\n \"createdDate\": \"1943-12-10T07:29:25.818Z\",\n \"id\": -2369117,\n \"name\": \"non amet irure aute adipisicing\"\n },\n \"createdBy\": \"exercitation\",\n \"createdDate\": \"1943-05-30T13:54:18.527Z\",\n \"id\": 28073827,\n \"lastModifiedBy\": \"cupidatat mollit dolore ullamco reprehenderit\",\n \"lastModifiedDate\": \"2019-07-17T13:42:55.213Z\",\n \"length\": -83441252,\n \"lengthMeasurementUnit\": {\n \"createdBy\": \"aliquip do\",\n \"createdDate\": \"1955-03-18T15:17:35.527Z\",\n \"id\": 81539483,\n \"name\": \"nisi ipsum ut\"\n },\n \"weight\": -35365950.83336409,\n \"weightMeasurementUnit\": {\n \"createdBy\": \"tempor veniam\",\n \"createdDate\": \"1976-08-16T11:23:28.986Z\",\n \"id\": -25062663,\n \"name\": \"m\"\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/GeneralHealthInfoDTO\"}],\"definitions\":{\"GeneralHealthInfoDTO\":{\"title\":\"GeneralHealthInfoDTO\",\"description\":\"Kisiye ait bedeni saglik bilgilerini tutar. Boy kilo kan grubu gibi. Rahatsızlık bilgilerini barındırmaz.\",\"type\":\"object\",\"properties\":{\"bloodGroup\":{\"$ref\":\"#/definitions/BloodGroupLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"length\":{\"format\":\"int64\",\"description\":\"Body length of person\",\"type\":\"integer\"},\"lengthMeasurementUnit\":{\"$ref\":\"#/definitions/LengthMeasurementUnitLOV\"},\"weight\":{\"format\":\"double\",\"description\":\"Body weight of person\",\"type\":\"number\"},\"weightMeasurementUnit\":{\"$ref\":\"#/definitions/WeightMeasurementUnitLOV\"}}},\"WeightMeasurementUnitLOV\":{\"title\":\"WeightMeasurementUnitLOV\",\"description\":\"Ağırlık ölçü birimleridir. Ölçüm sistemi farketmez. Örneğin : kg, gr, ton, galon vb..\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Agirlik birim adi\",\"type\":\"string\"}}},\"LengthMeasurementUnitLOV\":{\"title\":\"LengthMeasurementUnitLOV\",\"description\":\"Uzunluk ölçü birimleridir. Ölçüm sistemi farketmez. Örneğin : cm, metre, desimetre, mil, km vb.. \",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Adi\",\"type\":\"string\"}}},\"BloodGroupLOV\":{\"title\":\"BloodGroupLOV\",\"description\":\"Kan grubu tanımıdır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Kan grubu adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/GeneralHealthInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"bloodGroup\": {\n \"createdBy\": \"consectetur ad labore\",\n \"createdDate\": \"1997-12-18T22:07:40.668Z\",\n \"id\": -91282338,\n \"name\": \"occaecat eiusmod\"\n },\n \"createdBy\": \"amet magna exercitation dolor ipsum\",\n \"createdDate\": \"1984-02-08T12:37:56.330Z\",\n \"id\": 55851525,\n \"lastModifiedBy\": \"exercitation\",\n \"lastModifiedDate\": \"2014-04-22T15:43:57.696Z\",\n \"length\": -52528699,\n \"lengthMeasurementUnit\": {\n \"createdBy\": \"enim\",\n \"createdDate\": \"1978-06-09T08:36:22.970Z\",\n \"id\": -76288089,\n \"name\": \"cillum nostrud\"\n },\n \"weight\": 67310467.64890847,\n \"weightMeasurementUnit\": {\n \"createdBy\": \"qui ut sed velit ipsum\",\n \"createdDate\": \"1971-01-07T10:03:15.286Z\",\n \"id\": -98593667,\n \"name\": \"nulla nisi voluptate\"\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/GeneralHealthInfoDTO\"}],\"definitions\":{\"GeneralHealthInfoDTO\":{\"title\":\"GeneralHealthInfoDTO\",\"description\":\"Kisiye ait bedeni saglik bilgilerini tutar. Boy kilo kan grubu gibi. Rahatsızlık bilgilerini barındırmaz.\",\"type\":\"object\",\"properties\":{\"bloodGroup\":{\"$ref\":\"#/definitions/BloodGroupLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"length\":{\"format\":\"int64\",\"description\":\"Body length of person\",\"type\":\"integer\"},\"lengthMeasurementUnit\":{\"$ref\":\"#/definitions/LengthMeasurementUnitLOV\"},\"weight\":{\"format\":\"double\",\"description\":\"Body weight of person\",\"type\":\"number\"},\"weightMeasurementUnit\":{\"$ref\":\"#/definitions/WeightMeasurementUnitLOV\"}}},\"WeightMeasurementUnitLOV\":{\"title\":\"WeightMeasurementUnitLOV\",\"description\":\"Ağırlık ölçü birimleridir. Ölçüm sistemi farketmez. Örneğin : kg, gr, ton, galon vb..\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Agirlik birim adi\",\"type\":\"string\"}}},\"LengthMeasurementUnitLOV\":{\"title\":\"LengthMeasurementUnitLOV\",\"description\":\"Uzunluk ölçü birimleridir. Ölçüm sistemi farketmez. Örneğin : cm, metre, desimetre, mil, km vb.. \",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Adi\",\"type\":\"string\"}}},\"BloodGroupLOV\":{\"title\":\"BloodGroupLOV\",\"description\":\"Kan grubu tanımıdır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Kan grubu adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/GeneralHealthInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"bloodGroup\": {\n \"createdBy\": \"adipisicing Duis consequat in nisi\",\n \"createdDate\": \"1958-06-16T16:25:02.687Z\",\n \"id\": -65285949,\n \"name\": \"mollit exercita\"\n },\n \"createdBy\": \"in\",\n \"createdDate\": \"1960-02-28T09:20:31.899Z\",\n \"id\": 19426464,\n \"lastModifiedBy\": \"dolor Duis\",\n \"lastModifiedDate\": \"1991-01-10T14:39:05.327Z\",\n \"length\": -71837488,\n \"lengthMeasurementUnit\": {\n \"createdBy\": \"ipsum Excepteur\",\n \"createdDate\": \"1964-10-13T18:13:35.931Z\",\n \"id\": -86390820,\n \"name\": \"magna\"\n },\n \"weight\": 2047671.8706002235,\n \"weightMeasurementUnit\": {\n \"createdBy\": \"ullamco enim pariatur minim\",\n \"createdDate\": \"1979-07-02T18:09:18.717Z\",\n \"id\": -60318299,\n \"name\": \"do in ad\"\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/GeneralHealthInfoDTO\"}],\"definitions\":{\"GeneralHealthInfoDTO\":{\"title\":\"GeneralHealthInfoDTO\",\"description\":\"Kisiye ait bedeni saglik bilgilerini tutar. Boy kilo kan grubu gibi. Rahatsızlık bilgilerini barındırmaz.\",\"type\":\"object\",\"properties\":{\"bloodGroup\":{\"$ref\":\"#/definitions/BloodGroupLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"length\":{\"format\":\"int64\",\"description\":\"Body length of person\",\"type\":\"integer\"},\"lengthMeasurementUnit\":{\"$ref\":\"#/definitions/LengthMeasurementUnitLOV\"},\"weight\":{\"format\":\"double\",\"description\":\"Body weight of person\",\"type\":\"number\"},\"weightMeasurementUnit\":{\"$ref\":\"#/definitions/WeightMeasurementUnitLOV\"}}},\"WeightMeasurementUnitLOV\":{\"title\":\"WeightMeasurementUnitLOV\",\"description\":\"Ağırlık ölçü birimleridir. Ölçüm sistemi farketmez. Örneğin : kg, gr, ton, galon vb..\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Agirlik birim adi\",\"type\":\"string\"}}},\"LengthMeasurementUnitLOV\":{\"title\":\"LengthMeasurementUnitLOV\",\"description\":\"Uzunluk ölçü birimleridir. Ölçüm sistemi farketmez. Örneğin : cm, metre, desimetre, mil, km vb.. \",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Adi\",\"type\":\"string\"}}},\"BloodGroupLOV\":{\"title\":\"BloodGroupLOV\",\"description\":\"Kan grubu tanımıdır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Kan grubu adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/GeneralHealthInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"bloodGroup\": {\n \"createdBy\": \"Duis adipisicing sint\",\n \"createdDate\": \"1991-09-19T22:02:04.174Z\",\n \"id\": -15509306,\n \"name\": \"proident do nostrud\"\n },\n \"createdBy\": \"nisi officia ullamco\",\n \"createdDate\": \"2000-05-24T05:57:59.619Z\",\n \"id\": -28462504,\n \"lastModifiedBy\": \"enim qui\",\n \"lastModifiedDate\": \"2013-05-24T06:28:33.076Z\",\n \"length\": 77733050,\n \"lengthMeasurementUnit\": {\n \"createdBy\": \"veniam dolore Lorem\",\n \"createdDate\": \"1964-10-09T06:38:35.313Z\",\n \"id\": 85901980,\n \"name\": \"proident dolore\"\n },\n \"weight\": 7912113.331907511,\n \"weightMeasurementUnit\": {\n \"createdBy\": \"incididunt Lorem culpa\",\n \"createdDate\": \"1952-09-02T07:52:16.346Z\",\n \"id\": 38444486,\n \"name\": \"officia magna veniam ut\"\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/GeneralHealthInfoDTO\"}],\"definitions\":{\"GeneralHealthInfoDTO\":{\"title\":\"GeneralHealthInfoDTO\",\"description\":\"Kisiye ait bedeni saglik bilgilerini tutar. Boy kilo kan grubu gibi. Rahatsızlık bilgilerini barındırmaz.\",\"type\":\"object\",\"properties\":{\"bloodGroup\":{\"$ref\":\"#/definitions/BloodGroupLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"length\":{\"format\":\"int64\",\"description\":\"Body length of person\",\"type\":\"integer\"},\"lengthMeasurementUnit\":{\"$ref\":\"#/definitions/LengthMeasurementUnitLOV\"},\"weight\":{\"format\":\"double\",\"description\":\"Body weight of person\",\"type\":\"number\"},\"weightMeasurementUnit\":{\"$ref\":\"#/definitions/WeightMeasurementUnitLOV\"}}},\"WeightMeasurementUnitLOV\":{\"title\":\"WeightMeasurementUnitLOV\",\"description\":\"Ağırlık ölçü birimleridir. Ölçüm sistemi farketmez. Örneğin : kg, gr, ton, galon vb..\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Agirlik birim adi\",\"type\":\"string\"}}},\"LengthMeasurementUnitLOV\":{\"title\":\"LengthMeasurementUnitLOV\",\"description\":\"Uzunluk ölçü birimleridir. Ölçüm sistemi farketmez. Örneğin : cm, metre, desimetre, mil, km vb.. \",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Adi\",\"type\":\"string\"}}},\"BloodGroupLOV\":{\"title\":\"BloodGroupLOV\",\"description\":\"Kan grubu tanımıdır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Kan grubu adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/GeneralHealthInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"bloodGroup\": {\n \"createdBy\": \"occaecat\",\n \"createdDate\": \"1970-07-26T20:58:20.291Z\",\n \"id\": 39369070,\n \"name\": \"sunt qui irure ullamco\"\n },\n \"createdBy\": \"in Lorem qui nisi Excepte\",\n \"createdDate\": \"1944-02-29T02:59:49.445Z\",\n \"id\": 66504408,\n \"lastModifiedBy\": \"velit occaecat\",\n \"lastModifiedDate\": \"1967-05-11T19:52:50.074Z\",\n \"length\": 50715807,\n \"lengthMeasurementUnit\": {\n \"createdBy\": \"cillum non minim elit\",\n \"createdDate\": \"2006-10-10T04:11:48.839Z\",\n \"id\": 559056,\n \"name\": \"do nostrud in qui\"\n },\n \"weight\": 90503650.50844741,\n \"weightMeasurementUnit\": {\n \"createdBy\": \"laborum\",\n \"createdDate\": \"1957-05-05T10:13:14.969Z\",\n \"id\": 22900483,\n \"name\": \"ullamco ipsum do Lorem\"\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/GeneralHealthInfoDTO\"}],\"definitions\":{\"GeneralHealthInfoDTO\":{\"title\":\"GeneralHealthInfoDTO\",\"description\":\"Kisiye ait bedeni saglik bilgilerini tutar. Boy kilo kan grubu gibi. Rahatsızlık bilgilerini barındırmaz.\",\"type\":\"object\",\"properties\":{\"bloodGroup\":{\"$ref\":\"#/definitions/BloodGroupLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"length\":{\"format\":\"int64\",\"description\":\"Body length of person\",\"type\":\"integer\"},\"lengthMeasurementUnit\":{\"$ref\":\"#/definitions/LengthMeasurementUnitLOV\"},\"weight\":{\"format\":\"double\",\"description\":\"Body weight of person\",\"type\":\"number\"},\"weightMeasurementUnit\":{\"$ref\":\"#/definitions/WeightMeasurementUnitLOV\"}}},\"WeightMeasurementUnitLOV\":{\"title\":\"WeightMeasurementUnitLOV\",\"description\":\"Ağırlık ölçü birimleridir. Ölçüm sistemi farketmez. Örneğin : kg, gr, ton, galon vb..\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Agirlik birim adi\",\"type\":\"string\"}}},\"LengthMeasurementUnitLOV\":{\"title\":\"LengthMeasurementUnitLOV\",\"description\":\"Uzunluk ölçü birimleridir. Ölçüm sistemi farketmez. Örneğin : cm, metre, desimetre, mil, km vb.. \",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Adi\",\"type\":\"string\"}}},\"BloodGroupLOV\":{\"title\":\"BloodGroupLOV\",\"description\":\"Kan grubu tanımıdır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Kan grubu adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/GeneralHealthInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"bloodGroup\": {\n \"createdBy\": \"irure magna amet cupidatat\",\n \"createdDate\": \"1945-10-04T05:12:09.677Z\",\n \"id\": -89048302,\n \"name\": \"non eiusmod elit\"\n },\n \"createdBy\": \"ut deserunt\",\n \"createdDate\": \"1987-10-30T09:24:25.845Z\",\n \"id\": 43654288,\n \"lastModifiedBy\": \"magna ad aliquip\",\n \"lastModifiedDate\": \"1998-03-04T06:17:31.631Z\",\n \"length\": -63753020,\n \"lengthMeasurementUnit\": {\n \"createdBy\": \"in qui velit\",\n \"createdDate\": \"2003-03-17T12:34:53.034Z\",\n \"id\": 85158827,\n \"name\": \"aliquip Lorem\"\n },\n \"weight\": 78528344.10432458,\n \"weightMeasurementUnit\": {\n \"createdBy\": \"amet eiusmod irure in\",\n \"createdDate\": \"1990-02-25T14:35:38.820Z\",\n \"id\": -98995444,\n \"name\": \"aute\"\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/GeneralHealthInfoDTO\"}],\"definitions\":{\"GeneralHealthInfoDTO\":{\"title\":\"GeneralHealthInfoDTO\",\"description\":\"Kisiye ait bedeni saglik bilgilerini tutar. Boy kilo kan grubu gibi. Rahatsızlık bilgilerini barındırmaz.\",\"type\":\"object\",\"properties\":{\"bloodGroup\":{\"$ref\":\"#/definitions/BloodGroupLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"length\":{\"format\":\"int64\",\"description\":\"Body length of person\",\"type\":\"integer\"},\"lengthMeasurementUnit\":{\"$ref\":\"#/definitions/LengthMeasurementUnitLOV\"},\"weight\":{\"format\":\"double\",\"description\":\"Body weight of person\",\"type\":\"number\"},\"weightMeasurementUnit\":{\"$ref\":\"#/definitions/WeightMeasurementUnitLOV\"}}},\"WeightMeasurementUnitLOV\":{\"title\":\"WeightMeasurementUnitLOV\",\"description\":\"Ağırlık ölçü birimleridir. Ölçüm sistemi farketmez. Örneğin : kg, gr, ton, galon vb..\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Agirlik birim adi\",\"type\":\"string\"}}},\"LengthMeasurementUnitLOV\":{\"title\":\"LengthMeasurementUnitLOV\",\"description\":\"Uzunluk ölçü birimleridir. Ölçüm sistemi farketmez. Örneğin : cm, metre, desimetre, mil, km vb.. \",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Adi\",\"type\":\"string\"}}},\"BloodGroupLOV\":{\"title\":\"BloodGroupLOV\",\"description\":\"Kan grubu tanımıdır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Kan grubu adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/GeneralHealthInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz." + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/students/{id}/health/problem/{healthProblemId}" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Talebeden geçirdiği veya devam eden rahatsızlık bilgisini siler." + }, + "id": { + "element": "string", + "content": "deleteStudentHealthProblem" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Unique Health Problem Indentifier" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "healthProblemId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Unique Student Indentifier" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Talebeden geçirdiği veya devam eden rahatsızlık bilgisini siler." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "204" + } + }, + "content": [ + { + "element": "copy", + "content": "Health Problem Deleted" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz. " + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/students/{id}/identification/unverified-update" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Temel kimlik bilgilerinin güncellemesini yapar. Kimlik bilgileri güncellenirken kimlik doğrulaması yapılmaz." + }, + "id": { + "element": "string", + "content": "updateStudentIdentificationUnverified" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Student ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Yatılı ve nehari talebelerin kimlik bilgileri güncellenirken kimliğin doğrulandığı ve doğrulanmadanda güncellenebilmesini sağlayan metodlar tanımlandı. Bu metod doğrulama olmadan güncelleme yapmaktadır. Daha önce kimlik bilgilerinin doğrulaması yapıldıysa kimlik bilgilerinin değiştirilmesine izin verilmez." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"citizenshipId\": -31390097,\n \"createdBy\": \"ut ull\",\n \"createdDate\": \"1975-04-06T15:51:58.179Z\",\n \"firstName\": \"labore eu exercitation est enim\",\n \"gender\": {\n \"createdBy\": \"voluptate veniam\",\n \"createdDate\": \"1977-03-13T19:37:34.252Z\",\n \"id\": -82243008,\n \"name\": \"ullamco fugiat adipisicing\"\n },\n \"lastModifiedBy\": \"ullamco laboris cillum cupidatat officia\",\n \"lastModifiedDate\": \"2019-07-30T19:55:47.563Z\",\n \"lastName\": \"dolor\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/BasicUnverifiedIdentificationInfoDTO\"}],\"definitions\":{\"BasicUnverifiedIdentificationInfoDTO\":{\"title\":\"BasicUnverifiedIdentificationInfoDTO\",\"description\":\"Temel kimlik bilgilerini barındırır. Vatandaşlık numarası bilgisini barındırmaz. Taşıdığı bilgiler herhangi bir vatandaşlık numarası ile eşleşiyor mu eşleşmiyor mu doğrulanmamıştır edilmemiştir.\",\"type\":\"object\",\"properties\":{\"citizenshipId\":{\"format\":\"int64\",\"description\":\"Doğduğu Vatanı\",\"type\":\"integer\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adı\",\"type\":\"string\"},\"gender\":{\"$ref\":\"#/definitions/GenderLOV\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadı\",\"type\":\"string\"}}},\"GenderLOV\":{\"title\":\"GenderLOV\",\"description\":\"Cinsiyet tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Cinsiyet adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/BasicUnverifiedIdentificationInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/BasicUnverifiedIdentificationInfoDTO\"}],\"definitions\":{\"BasicUnverifiedIdentificationInfoDTO\":{\"title\":\"BasicUnverifiedIdentificationInfoDTO\",\"description\":\"Temel kimlik bilgilerini barındırır. Vatandaşlık numarası bilgisini barındırmaz. Taşıdığı bilgiler herhangi bir vatandaşlık numarası ile eşleşiyor mu eşleşmiyor mu doğrulanmamıştır edilmemiştir.\",\"type\":\"object\",\"properties\":{\"citizenshipId\":{\"format\":\"int64\",\"description\":\"Doğduğu Vatanı\",\"type\":\"integer\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adı\",\"type\":\"string\"},\"gender\":{\"$ref\":\"#/definitions/GenderLOV\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadı\",\"type\":\"string\"}}},\"GenderLOV\":{\"title\":\"GenderLOV\",\"description\":\"Cinsiyet tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Cinsiyet adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/BasicUnverifiedIdentificationInfoDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"citizenshipId\": 8449978,\n \"createdBy\": \"voluptate nisi officia in\",\n \"createdDate\": \"1999-06-16T19:59:37.906Z\",\n \"firstName\": \"sed aliqua\",\n \"gender\": {\n \"createdBy\": \"in nisi\",\n \"createdDate\": \"2005-10-12T16:23:03.136Z\",\n \"id\": -17771903,\n \"name\": \"qui\"\n },\n \"lastModifiedBy\": \"nostrud Duis et\",\n \"lastModifiedDate\": \"2003-05-17T15:52:07.067Z\",\n \"lastName\": \"mollit\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/BasicUnverifiedIdentificationInfoDTO\"}],\"definitions\":{\"BasicUnverifiedIdentificationInfoDTO\":{\"title\":\"BasicUnverifiedIdentificationInfoDTO\",\"description\":\"Temel kimlik bilgilerini barındırır. Vatandaşlık numarası bilgisini barındırmaz. Taşıdığı bilgiler herhangi bir vatandaşlık numarası ile eşleşiyor mu eşleşmiyor mu doğrulanmamıştır edilmemiştir.\",\"type\":\"object\",\"properties\":{\"citizenshipId\":{\"format\":\"int64\",\"description\":\"Doğduğu Vatanı\",\"type\":\"integer\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adı\",\"type\":\"string\"},\"gender\":{\"$ref\":\"#/definitions/GenderLOV\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadı\",\"type\":\"string\"}}},\"GenderLOV\":{\"title\":\"GenderLOV\",\"description\":\"Cinsiyet tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Cinsiyet adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/BasicUnverifiedIdentificationInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"citizenshipId\": -8166815,\n \"createdBy\": \"ex ipsum\",\n \"createdDate\": \"1955-05-09T23:35:09.127Z\",\n \"firstName\": \"exercitation\",\n \"gender\": {\n \"createdBy\": \"dolor reprehenderit voluptate adipisicing cupidatat\",\n \"createdDate\": \"1942-11-14T15:49:40.209Z\",\n \"id\": -62317367,\n \"name\": \"dolore fugiat elit et Lorem\"\n },\n \"lastModifiedBy\": \"aliquip\",\n \"lastModifiedDate\": \"1946-01-09T23:46:10.444Z\",\n \"lastName\": \"sint sed eu ea id\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/BasicUnverifiedIdentificationInfoDTO\"}],\"definitions\":{\"BasicUnverifiedIdentificationInfoDTO\":{\"title\":\"BasicUnverifiedIdentificationInfoDTO\",\"description\":\"Temel kimlik bilgilerini barındırır. Vatandaşlık numarası bilgisini barındırmaz. Taşıdığı bilgiler herhangi bir vatandaşlık numarası ile eşleşiyor mu eşleşmiyor mu doğrulanmamıştır edilmemiştir.\",\"type\":\"object\",\"properties\":{\"citizenshipId\":{\"format\":\"int64\",\"description\":\"Doğduğu Vatanı\",\"type\":\"integer\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adı\",\"type\":\"string\"},\"gender\":{\"$ref\":\"#/definitions/GenderLOV\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadı\",\"type\":\"string\"}}},\"GenderLOV\":{\"title\":\"GenderLOV\",\"description\":\"Cinsiyet tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Cinsiyet adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/BasicUnverifiedIdentificationInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "202" + } + }, + "content": [ + { + "element": "copy", + "content": "Successful" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/BasicUnverifiedIdentificationInfoDTO\"}],\"definitions\":{\"BasicUnverifiedIdentificationInfoDTO\":{\"title\":\"BasicUnverifiedIdentificationInfoDTO\",\"description\":\"Temel kimlik bilgilerini barındırır. Vatandaşlık numarası bilgisini barındırmaz. Taşıdığı bilgiler herhangi bir vatandaşlık numarası ile eşleşiyor mu eşleşmiyor mu doğrulanmamıştır edilmemiştir.\",\"type\":\"object\",\"properties\":{\"citizenshipId\":{\"format\":\"int64\",\"description\":\"Doğduğu Vatanı\",\"type\":\"integer\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adı\",\"type\":\"string\"},\"gender\":{\"$ref\":\"#/definitions/GenderLOV\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadı\",\"type\":\"string\"}}},\"GenderLOV\":{\"title\":\"GenderLOV\",\"description\":\"Cinsiyet tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Cinsiyet adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/BasicUnverifiedIdentificationInfoDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"citizenshipId\": 14158233,\n \"createdBy\": \"amet Excepteur\",\n \"createdDate\": \"2007-03-10T05:33:36.336Z\",\n \"firstName\": \"dolor\",\n \"gender\": {\n \"createdBy\": \"reprehenderit ullamco velit veniam\",\n \"createdDate\": \"2004-10-18T16:02:14.596Z\",\n \"id\": -43949417,\n \"name\": \"ex Ut\"\n },\n \"lastModifiedBy\": \"nisi\",\n \"lastModifiedDate\": \"1973-08-05T11:22:24.798Z\",\n \"lastName\": \"anim dolor labore\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/BasicUnverifiedIdentificationInfoDTO\"}],\"definitions\":{\"BasicUnverifiedIdentificationInfoDTO\":{\"title\":\"BasicUnverifiedIdentificationInfoDTO\",\"description\":\"Temel kimlik bilgilerini barındırır. Vatandaşlık numarası bilgisini barındırmaz. Taşıdığı bilgiler herhangi bir vatandaşlık numarası ile eşleşiyor mu eşleşmiyor mu doğrulanmamıştır edilmemiştir.\",\"type\":\"object\",\"properties\":{\"citizenshipId\":{\"format\":\"int64\",\"description\":\"Doğduğu Vatanı\",\"type\":\"integer\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adı\",\"type\":\"string\"},\"gender\":{\"$ref\":\"#/definitions/GenderLOV\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadı\",\"type\":\"string\"}}},\"GenderLOV\":{\"title\":\"GenderLOV\",\"description\":\"Cinsiyet tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Cinsiyet adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/BasicUnverifiedIdentificationInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz giriş." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"citizenshipId\": 19703289,\n \"createdBy\": \"exercitation laboris in et incididunt\",\n \"createdDate\": \"2006-05-20T05:35:12.605Z\",\n \"firstName\": \"sint\",\n \"gender\": {\n \"createdBy\": \"in proident\",\n \"createdDate\": \"1946-08-07T23:55:50.333Z\",\n \"id\": 34211567,\n \"name\": \"in\"\n },\n \"lastModifiedBy\": \"aliquip laboris Duis\",\n \"lastModifiedDate\": \"1963-11-17T19:54:52.059Z\",\n \"lastName\": \"voluptate\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/BasicUnverifiedIdentificationInfoDTO\"}],\"definitions\":{\"BasicUnverifiedIdentificationInfoDTO\":{\"title\":\"BasicUnverifiedIdentificationInfoDTO\",\"description\":\"Temel kimlik bilgilerini barındırır. Vatandaşlık numarası bilgisini barındırmaz. Taşıdığı bilgiler herhangi bir vatandaşlık numarası ile eşleşiyor mu eşleşmiyor mu doğrulanmamıştır edilmemiştir.\",\"type\":\"object\",\"properties\":{\"citizenshipId\":{\"format\":\"int64\",\"description\":\"Doğduğu Vatanı\",\"type\":\"integer\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adı\",\"type\":\"string\"},\"gender\":{\"$ref\":\"#/definitions/GenderLOV\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadı\",\"type\":\"string\"}}},\"GenderLOV\":{\"title\":\"GenderLOV\",\"description\":\"Cinsiyet tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Cinsiyet adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/BasicUnverifiedIdentificationInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"citizenshipId\": -7542465,\n \"createdBy\": \"pariatur\",\n \"createdDate\": \"1956-01-06T17:44:09.665Z\",\n \"firstName\": \"labore\",\n \"gender\": {\n \"createdBy\": \"minim est\",\n \"createdDate\": \"2014-04-30T08:00:14.008Z\",\n \"id\": 74811936,\n \"name\": \"aliquip reprehenderit commodo dolor\"\n },\n \"lastModifiedBy\": \"\",\n \"lastModifiedDate\": \"2001-06-03T20:54:21.476Z\",\n \"lastName\": \"tempor non\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/BasicUnverifiedIdentificationInfoDTO\"}],\"definitions\":{\"BasicUnverifiedIdentificationInfoDTO\":{\"title\":\"BasicUnverifiedIdentificationInfoDTO\",\"description\":\"Temel kimlik bilgilerini barındırır. Vatandaşlık numarası bilgisini barındırmaz. Taşıdığı bilgiler herhangi bir vatandaşlık numarası ile eşleşiyor mu eşleşmiyor mu doğrulanmamıştır edilmemiştir.\",\"type\":\"object\",\"properties\":{\"citizenshipId\":{\"format\":\"int64\",\"description\":\"Doğduğu Vatanı\",\"type\":\"integer\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adı\",\"type\":\"string\"},\"gender\":{\"$ref\":\"#/definitions/GenderLOV\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadı\",\"type\":\"string\"}}},\"GenderLOV\":{\"title\":\"GenderLOV\",\"description\":\"Cinsiyet tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Cinsiyet adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/BasicUnverifiedIdentificationInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"citizenshipId\": -56344854,\n \"createdBy\": \"eu voluptate reprehenderit ullamco\",\n \"createdDate\": \"1982-10-09T10:38:53.940Z\",\n \"firstName\": \"ullamco cupidatat\",\n \"gender\": {\n \"createdBy\": \"Ut dolore sed\",\n \"createdDate\": \"1997-08-18T18:28:36.001Z\",\n \"id\": -17972832,\n \"name\": \"Lorem pariatur dolore c\"\n },\n \"lastModifiedBy\": \"Ut adipisicing\",\n \"lastModifiedDate\": \"2007-05-17T12:06:14.832Z\",\n \"lastName\": \"mollit dolore\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/BasicUnverifiedIdentificationInfoDTO\"}],\"definitions\":{\"BasicUnverifiedIdentificationInfoDTO\":{\"title\":\"BasicUnverifiedIdentificationInfoDTO\",\"description\":\"Temel kimlik bilgilerini barındırır. Vatandaşlık numarası bilgisini barındırmaz. Taşıdığı bilgiler herhangi bir vatandaşlık numarası ile eşleşiyor mu eşleşmiyor mu doğrulanmamıştır edilmemiştir.\",\"type\":\"object\",\"properties\":{\"citizenshipId\":{\"format\":\"int64\",\"description\":\"Doğduğu Vatanı\",\"type\":\"integer\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adı\",\"type\":\"string\"},\"gender\":{\"$ref\":\"#/definitions/GenderLOV\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadı\",\"type\":\"string\"}}},\"GenderLOV\":{\"title\":\"GenderLOV\",\"description\":\"Cinsiyet tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Cinsiyet adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/BasicUnverifiedIdentificationInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Business exception" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"citizenshipId\": -18769056,\n \"createdBy\": \"dolor Duis in\",\n \"createdDate\": \"2007-10-22T06:20:04.482Z\",\n \"firstName\": \"minim sed occaecat eu\",\n \"gender\": {\n \"createdBy\": \"laboris\",\n \"createdDate\": \"1998-10-05T20:21:14.492Z\",\n \"id\": -9729816,\n \"name\": \"non\"\n },\n \"lastModifiedBy\": \"e\",\n \"lastModifiedDate\": \"1996-01-27T02:49:10.850Z\",\n \"lastName\": \"ullamco enim eiusmod\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/BasicUnverifiedIdentificationInfoDTO\"}],\"definitions\":{\"BasicUnverifiedIdentificationInfoDTO\":{\"title\":\"BasicUnverifiedIdentificationInfoDTO\",\"description\":\"Temel kimlik bilgilerini barındırır. Vatandaşlık numarası bilgisini barındırmaz. Taşıdığı bilgiler herhangi bir vatandaşlık numarası ile eşleşiyor mu eşleşmiyor mu doğrulanmamıştır edilmemiştir.\",\"type\":\"object\",\"properties\":{\"citizenshipId\":{\"format\":\"int64\",\"description\":\"Doğduğu Vatanı\",\"type\":\"integer\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adı\",\"type\":\"string\"},\"gender\":{\"$ref\":\"#/definitions/GenderLOV\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadı\",\"type\":\"string\"}}},\"GenderLOV\":{\"title\":\"GenderLOV\",\"description\":\"Cinsiyet tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Cinsiyet adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/BasicUnverifiedIdentificationInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "Sunucu hatası" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/students/{id}/identification/verified-update" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Temel kimlik bilgilerinin güncellemesini yapar. Kimlik bilgileri güncellenirken kimlik doğrulaması yapılır." + }, + "id": { + "element": "string", + "content": "updateStudentIdentificationVerified" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Student ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Yatılı ve nehari talebelerin kimlik bilgileri güncellenirken kimliğin doğrulandığı ve doğrulanmadanda güncellenebilmesini sağlayan metodlar tanımlandı. Bu metod doğrulama ile güncelleme yapmaktadır. Daha önce kimlik bilgilerinin doğrulaması yapıldıysa kimlik bilgilerinin değiştirilmesine izin verilmez." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"citizenNumber\": \"officia dolore anim\",\n \"citizenshipId\": 14333698,\n \"createdBy\": \"Excepteur sed\",\n \"createdDate\": \"1956-03-01T01:58:42.014Z\",\n \"firstName\": \"dolor\",\n \"gender\": {\n \"createdBy\": \"commodo velit\",\n \"createdDate\": \"1981-11-05T08:28:17.574Z\",\n \"id\": 76713097,\n \"name\": \"mollit in velit pariatur\"\n },\n \"lastModifiedBy\": \"id nisi ipsum\",\n \"lastModifiedDate\": \"2003-07-20T09:44:54.720Z\",\n \"lastName\": \"esse irure consequat\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/BasicIdentificationInfoDTO\"}],\"definitions\":{\"BasicIdentificationInfoDTO\":{\"title\":\"BasicIdentificationInfoDTO\",\"description\":\"Temel kimlik bilgilerini barındırır. Tc kimlik numarası içerir. Tc kimlik bilgisi ile kimlik bilgilerinin uyuşması beklenir.\",\"type\":\"object\",\"properties\":{\"citizenNumber\":{\"description\":\"Vatandaşlık numarası\",\"type\":\"string\"},\"citizenshipId\":{\"format\":\"int64\",\"description\":\"Doğduğu Vatanı\",\"type\":\"integer\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adı\",\"type\":\"string\"},\"gender\":{\"$ref\":\"#/definitions/GenderLOV\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadı\",\"type\":\"string\"}}},\"GenderLOV\":{\"title\":\"GenderLOV\",\"description\":\"Cinsiyet tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Cinsiyet adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/BasicIdentificationInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/BasicIdentificationInfoDTO\"}],\"definitions\":{\"BasicIdentificationInfoDTO\":{\"title\":\"BasicIdentificationInfoDTO\",\"description\":\"Temel kimlik bilgilerini barındırır. Tc kimlik numarası içerir. Tc kimlik bilgisi ile kimlik bilgilerinin uyuşması beklenir.\",\"type\":\"object\",\"properties\":{\"citizenNumber\":{\"description\":\"Vatandaşlık numarası\",\"type\":\"string\"},\"citizenshipId\":{\"format\":\"int64\",\"description\":\"Doğduğu Vatanı\",\"type\":\"integer\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adı\",\"type\":\"string\"},\"gender\":{\"$ref\":\"#/definitions/GenderLOV\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadı\",\"type\":\"string\"}}},\"GenderLOV\":{\"title\":\"GenderLOV\",\"description\":\"Cinsiyet tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Cinsiyet adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/BasicIdentificationInfoDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"citizenNumber\": \"ullamco eu magna quis culpa\",\n \"citizenshipId\": 8516,\n \"createdBy\": \"dolore qui\",\n \"createdDate\": \"1954-12-27T07:41:13.500Z\",\n \"firstName\": \"anim aliqua\",\n \"gender\": {\n \"createdBy\": \"ex tempor\",\n \"createdDate\": \"2007-10-26T00:34:19.454Z\",\n \"id\": 86471887,\n \"name\": \"sint labore ex\"\n },\n \"lastModifiedBy\": \"dolore exercitation cupidatat\",\n \"lastModifiedDate\": \"2018-07-14T12:11:21.456Z\",\n \"lastName\": \"deserunt\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/BasicIdentificationInfoDTO\"}],\"definitions\":{\"BasicIdentificationInfoDTO\":{\"title\":\"BasicIdentificationInfoDTO\",\"description\":\"Temel kimlik bilgilerini barındırır. Tc kimlik numarası içerir. Tc kimlik bilgisi ile kimlik bilgilerinin uyuşması beklenir.\",\"type\":\"object\",\"properties\":{\"citizenNumber\":{\"description\":\"Vatandaşlık numarası\",\"type\":\"string\"},\"citizenshipId\":{\"format\":\"int64\",\"description\":\"Doğduğu Vatanı\",\"type\":\"integer\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adı\",\"type\":\"string\"},\"gender\":{\"$ref\":\"#/definitions/GenderLOV\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadı\",\"type\":\"string\"}}},\"GenderLOV\":{\"title\":\"GenderLOV\",\"description\":\"Cinsiyet tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Cinsiyet adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/BasicIdentificationInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"citizenNumber\": \"aliquip officia cupidatat\",\n \"citizenshipId\": -2737795,\n \"createdBy\": \"elit aliqua Duis\",\n \"createdDate\": \"1943-12-18T17:31:34.173Z\",\n \"firstName\": \"reprehenderit\",\n \"gender\": {\n \"createdBy\": \"dolor ad et\",\n \"createdDate\": \"1957-10-02T12:53:28.587Z\",\n \"id\": 42654156,\n \"name\": \"Duis\"\n },\n \"lastModifiedBy\": \"dese\",\n \"lastModifiedDate\": \"1968-11-26T13:51:39.198Z\",\n \"lastName\": \"non velit et\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/BasicIdentificationInfoDTO\"}],\"definitions\":{\"BasicIdentificationInfoDTO\":{\"title\":\"BasicIdentificationInfoDTO\",\"description\":\"Temel kimlik bilgilerini barındırır. Tc kimlik numarası içerir. Tc kimlik bilgisi ile kimlik bilgilerinin uyuşması beklenir.\",\"type\":\"object\",\"properties\":{\"citizenNumber\":{\"description\":\"Vatandaşlık numarası\",\"type\":\"string\"},\"citizenshipId\":{\"format\":\"int64\",\"description\":\"Doğduğu Vatanı\",\"type\":\"integer\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adı\",\"type\":\"string\"},\"gender\":{\"$ref\":\"#/definitions/GenderLOV\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadı\",\"type\":\"string\"}}},\"GenderLOV\":{\"title\":\"GenderLOV\",\"description\":\"Cinsiyet tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Cinsiyet adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/BasicIdentificationInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "202" + } + }, + "content": [ + { + "element": "copy", + "content": "Successful" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/BasicIdentificationInfoDTO\"}],\"definitions\":{\"BasicIdentificationInfoDTO\":{\"title\":\"BasicIdentificationInfoDTO\",\"description\":\"Temel kimlik bilgilerini barındırır. Tc kimlik numarası içerir. Tc kimlik bilgisi ile kimlik bilgilerinin uyuşması beklenir.\",\"type\":\"object\",\"properties\":{\"citizenNumber\":{\"description\":\"Vatandaşlık numarası\",\"type\":\"string\"},\"citizenshipId\":{\"format\":\"int64\",\"description\":\"Doğduğu Vatanı\",\"type\":\"integer\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adı\",\"type\":\"string\"},\"gender\":{\"$ref\":\"#/definitions/GenderLOV\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadı\",\"type\":\"string\"}}},\"GenderLOV\":{\"title\":\"GenderLOV\",\"description\":\"Cinsiyet tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Cinsiyet adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/BasicIdentificationInfoDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"citizenNumber\": \"est reprehenderit\",\n \"citizenshipId\": 26496638,\n \"createdBy\": \"Duis\",\n \"createdDate\": \"2011-07-15T04:49:53.280Z\",\n \"firstName\": \"sit ullamco occaecat dolore nostrud\",\n \"gender\": {\n \"createdBy\": \"commodo magna aliquip\",\n \"createdDate\": \"2000-06-22T10:05:27.132Z\",\n \"id\": 67643836,\n \"name\": \"dolor ut tempor enim\"\n },\n \"lastModifiedBy\": \"elit nisi consectetur ad mollit\",\n \"lastModifiedDate\": \"1951-11-26T18:00:53.139Z\",\n \"lastName\": \"adipisicing ipsum ut qui\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/BasicIdentificationInfoDTO\"}],\"definitions\":{\"BasicIdentificationInfoDTO\":{\"title\":\"BasicIdentificationInfoDTO\",\"description\":\"Temel kimlik bilgilerini barındırır. Tc kimlik numarası içerir. Tc kimlik bilgisi ile kimlik bilgilerinin uyuşması beklenir.\",\"type\":\"object\",\"properties\":{\"citizenNumber\":{\"description\":\"Vatandaşlık numarası\",\"type\":\"string\"},\"citizenshipId\":{\"format\":\"int64\",\"description\":\"Doğduğu Vatanı\",\"type\":\"integer\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adı\",\"type\":\"string\"},\"gender\":{\"$ref\":\"#/definitions/GenderLOV\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadı\",\"type\":\"string\"}}},\"GenderLOV\":{\"title\":\"GenderLOV\",\"description\":\"Cinsiyet tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Cinsiyet adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/BasicIdentificationInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz giriş." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"citizenNumber\": \"et ipsum sint laborum incididunt\",\n \"citizenshipId\": 50237426,\n \"createdBy\": \"culpa quis est ullamco\",\n \"createdDate\": \"1985-02-04T20:26:24.605Z\",\n \"firstName\": \"aliqua Lorem dolore ullamco\",\n \"gender\": {\n \"createdBy\": \"id i\",\n \"createdDate\": \"2015-11-20T04:41:30.886Z\",\n \"id\": -7689041,\n \"name\": \"adipisicing nisi labori\"\n },\n \"lastModifiedBy\": \"et minim ut qui\",\n \"lastModifiedDate\": \"1967-12-11T13:21:07.192Z\",\n \"lastName\": \"fugiat\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/BasicIdentificationInfoDTO\"}],\"definitions\":{\"BasicIdentificationInfoDTO\":{\"title\":\"BasicIdentificationInfoDTO\",\"description\":\"Temel kimlik bilgilerini barındırır. Tc kimlik numarası içerir. Tc kimlik bilgisi ile kimlik bilgilerinin uyuşması beklenir.\",\"type\":\"object\",\"properties\":{\"citizenNumber\":{\"description\":\"Vatandaşlık numarası\",\"type\":\"string\"},\"citizenshipId\":{\"format\":\"int64\",\"description\":\"Doğduğu Vatanı\",\"type\":\"integer\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adı\",\"type\":\"string\"},\"gender\":{\"$ref\":\"#/definitions/GenderLOV\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadı\",\"type\":\"string\"}}},\"GenderLOV\":{\"title\":\"GenderLOV\",\"description\":\"Cinsiyet tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Cinsiyet adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/BasicIdentificationInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"citizenNumber\": \"ut in\",\n \"citizenshipId\": -18831794,\n \"createdBy\": \"enim magna nostrud\",\n \"createdDate\": \"2012-10-28T00:05:59.251Z\",\n \"firstName\": \"d\",\n \"gender\": {\n \"createdBy\": \"est id non\",\n \"createdDate\": \"1961-09-15T13:23:13.448Z\",\n \"id\": -99917433,\n \"name\": \"et in tempor occaecat\"\n },\n \"lastModifiedBy\": \"nulla id consequat cillum dolore\",\n \"lastModifiedDate\": \"1963-10-25T22:56:50.777Z\",\n \"lastName\": \"\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/BasicIdentificationInfoDTO\"}],\"definitions\":{\"BasicIdentificationInfoDTO\":{\"title\":\"BasicIdentificationInfoDTO\",\"description\":\"Temel kimlik bilgilerini barındırır. Tc kimlik numarası içerir. Tc kimlik bilgisi ile kimlik bilgilerinin uyuşması beklenir.\",\"type\":\"object\",\"properties\":{\"citizenNumber\":{\"description\":\"Vatandaşlık numarası\",\"type\":\"string\"},\"citizenshipId\":{\"format\":\"int64\",\"description\":\"Doğduğu Vatanı\",\"type\":\"integer\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adı\",\"type\":\"string\"},\"gender\":{\"$ref\":\"#/definitions/GenderLOV\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadı\",\"type\":\"string\"}}},\"GenderLOV\":{\"title\":\"GenderLOV\",\"description\":\"Cinsiyet tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Cinsiyet adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/BasicIdentificationInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"citizenNumber\": \"nisi\",\n \"citizenshipId\": -54102895,\n \"createdBy\": \"sed in\",\n \"createdDate\": \"1999-12-15T23:32:12.392Z\",\n \"firstName\": \"Excepteur ut aliquip Duis nulla\",\n \"gender\": {\n \"createdBy\": \"laborum Ut tempor ipsum\",\n \"createdDate\": \"1981-04-14T19:37:21.599Z\",\n \"id\": 80602971,\n \"name\": \"sunt mollit sint\"\n },\n \"lastModifiedBy\": \"adipisicing eiusmod nulla\",\n \"lastModifiedDate\": \"1984-02-13T07:03:10.106Z\",\n \"lastName\": \"officia\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/BasicIdentificationInfoDTO\"}],\"definitions\":{\"BasicIdentificationInfoDTO\":{\"title\":\"BasicIdentificationInfoDTO\",\"description\":\"Temel kimlik bilgilerini barındırır. Tc kimlik numarası içerir. Tc kimlik bilgisi ile kimlik bilgilerinin uyuşması beklenir.\",\"type\":\"object\",\"properties\":{\"citizenNumber\":{\"description\":\"Vatandaşlık numarası\",\"type\":\"string\"},\"citizenshipId\":{\"format\":\"int64\",\"description\":\"Doğduğu Vatanı\",\"type\":\"integer\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adı\",\"type\":\"string\"},\"gender\":{\"$ref\":\"#/definitions/GenderLOV\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadı\",\"type\":\"string\"}}},\"GenderLOV\":{\"title\":\"GenderLOV\",\"description\":\"Cinsiyet tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Cinsiyet adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/BasicIdentificationInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Business exception" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"citizenNumber\": \"dolor veniam\",\n \"citizenshipId\": -11275183,\n \"createdBy\": \"proident aliqua\",\n \"createdDate\": \"2020-02-06T11:02:29.238Z\",\n \"firstName\": \"cupidatat irure fugiat ad incididunt\",\n \"gender\": {\n \"createdBy\": \"aute\",\n \"createdDate\": \"2013-01-06T22:51:26.023Z\",\n \"id\": 35972893,\n \"name\": \"exercitation cupidatat reprehenderit\"\n },\n \"lastModifiedBy\": \"velit lab\",\n \"lastModifiedDate\": \"2019-01-05T07:57:17.130Z\",\n \"lastName\": \"veniam dolore sunt anim officia\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/BasicIdentificationInfoDTO\"}],\"definitions\":{\"BasicIdentificationInfoDTO\":{\"title\":\"BasicIdentificationInfoDTO\",\"description\":\"Temel kimlik bilgilerini barındırır. Tc kimlik numarası içerir. Tc kimlik bilgisi ile kimlik bilgilerinin uyuşması beklenir.\",\"type\":\"object\",\"properties\":{\"citizenNumber\":{\"description\":\"Vatandaşlık numarası\",\"type\":\"string\"},\"citizenshipId\":{\"format\":\"int64\",\"description\":\"Doğduğu Vatanı\",\"type\":\"integer\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adı\",\"type\":\"string\"},\"gender\":{\"$ref\":\"#/definitions/GenderLOV\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadı\",\"type\":\"string\"}}},\"GenderLOV\":{\"title\":\"GenderLOV\",\"description\":\"Cinsiyet tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Cinsiyet adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/BasicIdentificationInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "Sunucu hatası" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/students/{id}/picture" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Get a PersonPictureDTO" + }, + "id": { + "element": "string", + "content": "getStudentPicture" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "A unique identifier for a `PersonPictureDTO`." + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Gets the details of a single instance of a `PersonPictureDTO`." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "Successful response - returns a single `PersonPictureDTO`." + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"PersonPictureDTO\",\"description\":\"Öğrenci, veli, öğretmen, ihvan a ait vesikalık resimlerinin tutulduğu modeldir.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"url\":{\"description\":\"Picture url\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/PersonPictureDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz." + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Talebenin resim bilgisini günceller. Eğer daha önce eklenmiş bir resmi yoksa yenisini ekler ve eskisini siler." + }, + "id": { + "element": "string", + "content": "updateStudentPicture" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "A unique identifier for a `PersonPictureDTO`." + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Updates a PersonPictureDTO of a Student" + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + }, + "content": "--BOUNDARY\r\nContent-Disposition: form-data; name=\"picture\"\r\n\r\nofficia\r\n\r\n--BOUNDARY--\r\n" + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Profil Resmi" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "picture" + }, + "value": { + "element": "string" + } + } + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"PersonPictureDTO\",\"description\":\"Öğrenci, veli, öğretmen, ihvan a ait vesikalık resimlerinin tutulduğu modeldir.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"url\":{\"description\":\"Picture url\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/PersonPictureDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + }, + "content": "--BOUNDARY\r\nContent-Disposition: form-data; name=\"picture\"\r\n\r\nexercitation anim\r\n\r\n--BOUNDARY--\r\n" + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Profil Resmi" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "picture" + }, + "value": { + "element": "string" + } + } + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + }, + "content": "--BOUNDARY\r\nContent-Disposition: form-data; name=\"picture\"\r\n\r\ntempor\r\n\r\n--BOUNDARY--\r\n" + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Profil Resmi" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "picture" + }, + "value": { + "element": "string" + } + } + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "202" + } + }, + "content": [ + { + "element": "copy", + "content": "Student Profile Picture Updated" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"PersonPictureDTO\",\"description\":\"Öğrenci, veli, öğretmen, ihvan a ait vesikalık resimlerinin tutulduğu modeldir.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"url\":{\"description\":\"Picture url\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/PersonPictureDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + }, + "content": "--BOUNDARY\r\nContent-Disposition: form-data; name=\"picture\"\r\n\r\nadipisicing dolore\r\n\r\n--BOUNDARY--\r\n" + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Profil Resmi" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "picture" + }, + "value": { + "element": "string" + } + } + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + }, + "content": "--BOUNDARY\r\nContent-Disposition: form-data; name=\"picture\"\r\n\r\nconsectetur adipisicing\r\n\r\n--BOUNDARY--\r\n" + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Profil Resmi" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "picture" + }, + "value": { + "element": "string" + } + } + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + }, + "content": "--BOUNDARY\r\nContent-Disposition: form-data; name=\"picture\"\r\n\r\nest Duis Excepteur ipsum\r\n\r\n--BOUNDARY--\r\n" + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Profil Resmi" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "picture" + }, + "value": { + "element": "string" + } + } + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + }, + "content": "--BOUNDARY\r\nContent-Disposition: form-data; name=\"picture\"\r\n\r\ndolore consequat do\r\n\r\n--BOUNDARY--\r\n" + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Profil Resmi" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "picture" + }, + "value": { + "element": "string" + } + } + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + }, + "content": "--BOUNDARY\r\nContent-Disposition: form-data; name=\"picture\"\r\n\r\nipsum\r\n\r\n--BOUNDARY--\r\n" + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Profil Resmi" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "picture" + }, + "value": { + "element": "string" + } + } + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz. " + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/students/{id}/religious-info" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Students religious info" + }, + "id": { + "element": "string", + "content": "getStudentReligiousInfo" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Student ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Get `StudentReligiousInfoDTO` entity of `Student`." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "List of all `ReligiousInfo` entities of `Student`." + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/StudentReligiousInfoDTO\"}],\"definitions\":{\"StudentReligiousInfoDTO\":{\"title\":\"StudentReligiousInfoDTO\",\"description\":\"Talebenin dini bilgilerini tutar\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"mazhab\":{\"$ref\":\"#/definitions/MazhabLOV\"},\"rabita\":{\"$ref\":\"#/definitions/RabitaLOV\"},\"rabitaStartDate\":{\"format\":\"date-time\",\"description\":\"Rabita baslangic tarihi\",\"type\":\"string\"}}},\"RabitaLOV\":{\"title\":\"RabitaLOV\",\"description\":\"Vazife durumunu ifade eder. Örneğin : Ön vazifeli, Var, Yok gibi değerler alır. Bunlar şunu ifade eder rabıtası var, rabıtası yok, tesbihli.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Rabita adi\",\"type\":\"string\"}}},\"MazhabLOV\":{\"title\":\"MazhabLOV\",\"description\":\"Mezhep tanımını tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Mezhep adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/StudentReligiousInfoDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz." + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Update student's religious info" + }, + "id": { + "element": "string", + "content": "updateStudentReligiousInfo" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Student ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Talebeye ait dini bilgilerinin güncellendiği servistir." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"velit ipsum dolore id re\",\n \"createdDate\": \"2017-12-28T00:24:57.212Z\",\n \"id\": -23933644,\n \"lastModifiedBy\": \"aliqua\",\n \"lastModifiedDate\": \"2014-04-09T07:32:07.487Z\",\n \"mazhab\": {\n \"createdBy\": \"aliqua consequat reprehenderit id\",\n \"createdDate\": \"2010-04-18T03:47:42.254Z\",\n \"id\": 1811359,\n \"name\": \"anim cillum occaecat incididunt\"\n },\n \"rabita\": {\n \"createdBy\": \"ullamco ut dolore\",\n \"createdDate\": \"1942-07-17T15:46:11.023Z\",\n \"id\": -9272657,\n \"lastModifiedBy\": \"anim culpa labore voluptate aliquip\",\n \"lastModifiedDate\": \"1955-07-10T10:04:37.104Z\",\n \"name\": \"laboris velit\"\n },\n \"rabitaStartDate\": \"1955-05-04T22:46:16.613Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/StudentReligiousInfoDTO\"}],\"definitions\":{\"StudentReligiousInfoDTO\":{\"title\":\"StudentReligiousInfoDTO\",\"description\":\"Talebenin dini bilgilerini tutar\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"mazhab\":{\"$ref\":\"#/definitions/MazhabLOV\"},\"rabita\":{\"$ref\":\"#/definitions/RabitaLOV\"},\"rabitaStartDate\":{\"format\":\"date-time\",\"description\":\"Rabita baslangic tarihi\",\"type\":\"string\"}}},\"RabitaLOV\":{\"title\":\"RabitaLOV\",\"description\":\"Vazife durumunu ifade eder. Örneğin : Ön vazifeli, Var, Yok gibi değerler alır. Bunlar şunu ifade eder rabıtası var, rabıtası yok, tesbihli.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Rabita adi\",\"type\":\"string\"}}},\"MazhabLOV\":{\"title\":\"MazhabLOV\",\"description\":\"Mezhep tanımını tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Mezhep adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/StudentReligiousInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/StudentReligiousInfoDTO\"}],\"definitions\":{\"StudentReligiousInfoDTO\":{\"title\":\"StudentReligiousInfoDTO\",\"description\":\"Talebenin dini bilgilerini tutar\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"mazhab\":{\"$ref\":\"#/definitions/MazhabLOV\"},\"rabita\":{\"$ref\":\"#/definitions/RabitaLOV\"},\"rabitaStartDate\":{\"format\":\"date-time\",\"description\":\"Rabita baslangic tarihi\",\"type\":\"string\"}}},\"RabitaLOV\":{\"title\":\"RabitaLOV\",\"description\":\"Vazife durumunu ifade eder. Örneğin : Ön vazifeli, Var, Yok gibi değerler alır. Bunlar şunu ifade eder rabıtası var, rabıtası yok, tesbihli.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Rabita adi\",\"type\":\"string\"}}},\"MazhabLOV\":{\"title\":\"MazhabLOV\",\"description\":\"Mezhep tanımını tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Mezhep adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/StudentReligiousInfoDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"mollit nisi\",\n \"createdDate\": \"2018-03-06T21:46:51.048Z\",\n \"id\": 21622150,\n \"lastModifiedBy\": \"ad veniam incididunt minim\",\n \"lastModifiedDate\": \"1984-12-02T05:47:54.262Z\",\n \"mazhab\": {\n \"createdBy\": \"ex culpa enim fugiat\",\n \"createdDate\": \"2015-01-29T04:10:04.772Z\",\n \"id\": -27337326,\n \"name\": \"consequat do incididunt\"\n },\n \"rabita\": {\n \"createdBy\": \"in enim magna \",\n \"createdDate\": \"2009-01-19T03:54:15.352Z\",\n \"id\": -8751940,\n \"lastModifiedBy\": \"adipisicing\",\n \"lastModifiedDate\": \"2010-09-12T16:50:57.902Z\",\n \"name\": \"sit\"\n },\n \"rabitaStartDate\": \"1999-07-17T18:13:20.777Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/StudentReligiousInfoDTO\"}],\"definitions\":{\"StudentReligiousInfoDTO\":{\"title\":\"StudentReligiousInfoDTO\",\"description\":\"Talebenin dini bilgilerini tutar\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"mazhab\":{\"$ref\":\"#/definitions/MazhabLOV\"},\"rabita\":{\"$ref\":\"#/definitions/RabitaLOV\"},\"rabitaStartDate\":{\"format\":\"date-time\",\"description\":\"Rabita baslangic tarihi\",\"type\":\"string\"}}},\"RabitaLOV\":{\"title\":\"RabitaLOV\",\"description\":\"Vazife durumunu ifade eder. Örneğin : Ön vazifeli, Var, Yok gibi değerler alır. Bunlar şunu ifade eder rabıtası var, rabıtası yok, tesbihli.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Rabita adi\",\"type\":\"string\"}}},\"MazhabLOV\":{\"title\":\"MazhabLOV\",\"description\":\"Mezhep tanımını tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Mezhep adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/StudentReligiousInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"veniam magna cillum occaecat deserunt\",\n \"createdDate\": \"1968-11-19T14:49:03.048Z\",\n \"id\": -22743761,\n \"lastModifiedBy\": \"pariatur eu \",\n \"lastModifiedDate\": \"1958-04-27T20:22:34.300Z\",\n \"mazhab\": {\n \"createdBy\": \"sint elit ipsum officia reprehenderit\",\n \"createdDate\": \"1961-03-28T02:53:55.345Z\",\n \"id\": -14348255,\n \"name\": \"do esse aliqua ut amet\"\n },\n \"rabita\": {\n \"createdBy\": \"do ad dolor nostrud in\",\n \"createdDate\": \"1977-06-15T15:51:56.475Z\",\n \"id\": -38395833,\n \"lastModifiedBy\": \"sit Excepteur elit ut\",\n \"lastModifiedDate\": \"1989-09-29T06:07:49.917Z\",\n \"name\": \"in officia\"\n },\n \"rabitaStartDate\": \"2008-05-06T22:45:10.299Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/StudentReligiousInfoDTO\"}],\"definitions\":{\"StudentReligiousInfoDTO\":{\"title\":\"StudentReligiousInfoDTO\",\"description\":\"Talebenin dini bilgilerini tutar\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"mazhab\":{\"$ref\":\"#/definitions/MazhabLOV\"},\"rabita\":{\"$ref\":\"#/definitions/RabitaLOV\"},\"rabitaStartDate\":{\"format\":\"date-time\",\"description\":\"Rabita baslangic tarihi\",\"type\":\"string\"}}},\"RabitaLOV\":{\"title\":\"RabitaLOV\",\"description\":\"Vazife durumunu ifade eder. Örneğin : Ön vazifeli, Var, Yok gibi değerler alır. Bunlar şunu ifade eder rabıtası var, rabıtası yok, tesbihli.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Rabita adi\",\"type\":\"string\"}}},\"MazhabLOV\":{\"title\":\"MazhabLOV\",\"description\":\"Mezhep tanımını tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Mezhep adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/StudentReligiousInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "202" + } + }, + "content": [ + { + "element": "copy", + "content": "Student's religious info updated" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/StudentReligiousInfoDTO\"}],\"definitions\":{\"StudentReligiousInfoDTO\":{\"title\":\"StudentReligiousInfoDTO\",\"description\":\"Talebenin dini bilgilerini tutar\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"mazhab\":{\"$ref\":\"#/definitions/MazhabLOV\"},\"rabita\":{\"$ref\":\"#/definitions/RabitaLOV\"},\"rabitaStartDate\":{\"format\":\"date-time\",\"description\":\"Rabita baslangic tarihi\",\"type\":\"string\"}}},\"RabitaLOV\":{\"title\":\"RabitaLOV\",\"description\":\"Vazife durumunu ifade eder. Örneğin : Ön vazifeli, Var, Yok gibi değerler alır. Bunlar şunu ifade eder rabıtası var, rabıtası yok, tesbihli.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Rabita adi\",\"type\":\"string\"}}},\"MazhabLOV\":{\"title\":\"MazhabLOV\",\"description\":\"Mezhep tanımını tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Mezhep adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/StudentReligiousInfoDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"\",\n \"createdDate\": \"1960-10-30T06:44:31.363Z\",\n \"id\": 77333566,\n \"lastModifiedBy\": \"quis adipisicing nulla elit\",\n \"lastModifiedDate\": \"1999-08-25T08:17:38.878Z\",\n \"mazhab\": {\n \"createdBy\": \"minim ut\",\n \"createdDate\": \"1964-04-24T03:24:42.437Z\",\n \"id\": -37013159,\n \"name\": \"aute\"\n },\n \"rabita\": {\n \"createdBy\": \"Ut qui anim cillum\",\n \"createdDate\": \"1962-05-24T14:32:01.739Z\",\n \"id\": 80969356,\n \"lastModifiedBy\": \"adipisicing eu dolor\",\n \"lastModifiedDate\": \"1942-07-02T16:05:30.946Z\",\n \"name\": \"ex labore ut officia\"\n },\n \"rabitaStartDate\": \"1944-06-25T22:23:18.064Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/StudentReligiousInfoDTO\"}],\"definitions\":{\"StudentReligiousInfoDTO\":{\"title\":\"StudentReligiousInfoDTO\",\"description\":\"Talebenin dini bilgilerini tutar\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"mazhab\":{\"$ref\":\"#/definitions/MazhabLOV\"},\"rabita\":{\"$ref\":\"#/definitions/RabitaLOV\"},\"rabitaStartDate\":{\"format\":\"date-time\",\"description\":\"Rabita baslangic tarihi\",\"type\":\"string\"}}},\"RabitaLOV\":{\"title\":\"RabitaLOV\",\"description\":\"Vazife durumunu ifade eder. Örneğin : Ön vazifeli, Var, Yok gibi değerler alır. Bunlar şunu ifade eder rabıtası var, rabıtası yok, tesbihli.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Rabita adi\",\"type\":\"string\"}}},\"MazhabLOV\":{\"title\":\"MazhabLOV\",\"description\":\"Mezhep tanımını tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Mezhep adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/StudentReligiousInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"in Duis sunt dolor dolore\",\n \"createdDate\": \"2006-09-09T01:30:25.263Z\",\n \"id\": -71903257,\n \"lastModifiedBy\": \"nostrud velit\",\n \"lastModifiedDate\": \"1962-03-10T23:27:50.870Z\",\n \"mazhab\": {\n \"createdBy\": \"\",\n \"createdDate\": \"1993-04-16T20:37:26.770Z\",\n \"id\": 43666538,\n \"name\": \"ipsum sed enim mollit qui\"\n },\n \"rabita\": {\n \"createdBy\": \"nostrud enim\",\n \"createdDate\": \"1941-04-03T04:16:46.177Z\",\n \"id\": 27480738,\n \"lastModifiedBy\": \"nisi laboris Ut in\",\n \"lastModifiedDate\": \"1984-11-21T09:06:25.237Z\",\n \"name\": \"eiusmod\"\n },\n \"rabitaStartDate\": \"1982-08-07T03:01:04.508Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/StudentReligiousInfoDTO\"}],\"definitions\":{\"StudentReligiousInfoDTO\":{\"title\":\"StudentReligiousInfoDTO\",\"description\":\"Talebenin dini bilgilerini tutar\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"mazhab\":{\"$ref\":\"#/definitions/MazhabLOV\"},\"rabita\":{\"$ref\":\"#/definitions/RabitaLOV\"},\"rabitaStartDate\":{\"format\":\"date-time\",\"description\":\"Rabita baslangic tarihi\",\"type\":\"string\"}}},\"RabitaLOV\":{\"title\":\"RabitaLOV\",\"description\":\"Vazife durumunu ifade eder. Örneğin : Ön vazifeli, Var, Yok gibi değerler alır. Bunlar şunu ifade eder rabıtası var, rabıtası yok, tesbihli.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Rabita adi\",\"type\":\"string\"}}},\"MazhabLOV\":{\"title\":\"MazhabLOV\",\"description\":\"Mezhep tanımını tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Mezhep adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/StudentReligiousInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"reprehe\",\n \"createdDate\": \"1946-05-13T12:15:43.641Z\",\n \"id\": -25030284,\n \"lastModifiedBy\": \"nulla ullamco esse\",\n \"lastModifiedDate\": \"1948-09-05T20:32:26.641Z\",\n \"mazhab\": {\n \"createdBy\": \"dolore reprehenderit voluptate\",\n \"createdDate\": \"1968-01-24T04:53:18.500Z\",\n \"id\": 71712092,\n \"name\": \"ut non ut amet\"\n },\n \"rabita\": {\n \"createdBy\": \"cupidatat et esse \",\n \"createdDate\": \"2003-12-01T11:18:06.870Z\",\n \"id\": 53189484,\n \"lastModifiedBy\": \"incididunt\",\n \"lastModifiedDate\": \"1972-11-03T03:13:46.429Z\",\n \"name\": \"anim\"\n },\n \"rabitaStartDate\": \"1975-09-05T11:49:08.137Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/StudentReligiousInfoDTO\"}],\"definitions\":{\"StudentReligiousInfoDTO\":{\"title\":\"StudentReligiousInfoDTO\",\"description\":\"Talebenin dini bilgilerini tutar\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"mazhab\":{\"$ref\":\"#/definitions/MazhabLOV\"},\"rabita\":{\"$ref\":\"#/definitions/RabitaLOV\"},\"rabitaStartDate\":{\"format\":\"date-time\",\"description\":\"Rabita baslangic tarihi\",\"type\":\"string\"}}},\"RabitaLOV\":{\"title\":\"RabitaLOV\",\"description\":\"Vazife durumunu ifade eder. Örneğin : Ön vazifeli, Var, Yok gibi değerler alır. Bunlar şunu ifade eder rabıtası var, rabıtası yok, tesbihli.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Rabita adi\",\"type\":\"string\"}}},\"MazhabLOV\":{\"title\":\"MazhabLOV\",\"description\":\"Mezhep tanımını tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Mezhep adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/StudentReligiousInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"est cillum et\",\n \"createdDate\": \"1962-06-01T01:08:12.526Z\",\n \"id\": -88776605,\n \"lastModifiedBy\": \"ea ipsum anim in nulla\",\n \"lastModifiedDate\": \"1975-09-08T05:45:32.826Z\",\n \"mazhab\": {\n \"createdBy\": \"deserunt\",\n \"createdDate\": \"2007-07-04T12:19:52.954Z\",\n \"id\": 31118289,\n \"name\": \"non\"\n },\n \"rabita\": {\n \"createdBy\": \"aliquip pariatur laboris volupt\",\n \"createdDate\": \"2005-04-08T12:38:17.023Z\",\n \"id\": -27377565,\n \"lastModifiedBy\": \"et ut magna\",\n \"lastModifiedDate\": \"1998-02-23T02:31:36.279Z\",\n \"name\": \"irure cupidatat in in\"\n },\n \"rabitaStartDate\": \"1981-12-10T23:27:10.790Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/StudentReligiousInfoDTO\"}],\"definitions\":{\"StudentReligiousInfoDTO\":{\"title\":\"StudentReligiousInfoDTO\",\"description\":\"Talebenin dini bilgilerini tutar\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"mazhab\":{\"$ref\":\"#/definitions/MazhabLOV\"},\"rabita\":{\"$ref\":\"#/definitions/RabitaLOV\"},\"rabitaStartDate\":{\"format\":\"date-time\",\"description\":\"Rabita baslangic tarihi\",\"type\":\"string\"}}},\"RabitaLOV\":{\"title\":\"RabitaLOV\",\"description\":\"Vazife durumunu ifade eder. Örneğin : Ön vazifeli, Var, Yok gibi değerler alır. Bunlar şunu ifade eder rabıtası var, rabıtası yok, tesbihli.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Rabita adi\",\"type\":\"string\"}}},\"MazhabLOV\":{\"title\":\"MazhabLOV\",\"description\":\"Mezhep tanımını tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Mezhep adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/StudentReligiousInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"velit quis\",\n \"createdDate\": \"1972-05-17T16:38:53.980Z\",\n \"id\": 48977099,\n \"lastModifiedBy\": \"enim\",\n \"lastModifiedDate\": \"1977-09-12T17:50:32.410Z\",\n \"mazhab\": {\n \"createdBy\": \"do quis\",\n \"createdDate\": \"1978-07-23T22:17:56.504Z\",\n \"id\": -38250860,\n \"name\": \"eiusmod\"\n },\n \"rabita\": {\n \"createdBy\": \"aute adipisicing dolor aliqu\",\n \"createdDate\": \"1984-12-01T07:46:34.401Z\",\n \"id\": 28051296,\n \"lastModifiedBy\": \"et qui\",\n \"lastModifiedDate\": \"1967-01-03T21:15:10.581Z\",\n \"name\": \"velit ut cupidatat d\"\n },\n \"rabitaStartDate\": \"1945-09-01T08:59:19.710Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/StudentReligiousInfoDTO\"}],\"definitions\":{\"StudentReligiousInfoDTO\":{\"title\":\"StudentReligiousInfoDTO\",\"description\":\"Talebenin dini bilgilerini tutar\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"mazhab\":{\"$ref\":\"#/definitions/MazhabLOV\"},\"rabita\":{\"$ref\":\"#/definitions/RabitaLOV\"},\"rabitaStartDate\":{\"format\":\"date-time\",\"description\":\"Rabita baslangic tarihi\",\"type\":\"string\"}}},\"RabitaLOV\":{\"title\":\"RabitaLOV\",\"description\":\"Vazife durumunu ifade eder. Örneğin : Ön vazifeli, Var, Yok gibi değerler alır. Bunlar şunu ifade eder rabıtası var, rabıtası yok, tesbihli.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Rabita adi\",\"type\":\"string\"}}},\"MazhabLOV\":{\"title\":\"MazhabLOV\",\"description\":\"Mezhep tanımını tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Mezhep adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/StudentReligiousInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz. " + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/students/{id}/tel-numbers" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Students telephone number list" + }, + "id": { + "element": "string", + "content": "getAllStudentTelephoneNumbers" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Student ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Gets a list of all `ContactInfoDTO` entities of `Student`." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "List of all `ContactInfoDTO` entities of `Student`." + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactInfoDTO\"},\"definitions\":{\"ContactInfoDTO\":{\"title\":\"ContactInfoDTO\",\"description\":\"Iletisim bilgilerini sunmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Category of contact type. For example: Home address, Home telephone, Cell phone etc.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"contactInfo\":{\"description\":\"Telephone number or email address information depending on the type.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"ContactMediumCategoryLOV\":{\"title\":\"ContactMediumCategoryLOV\",\"description\":\"Contact medium kategorileri. Bir kategori tipine ait veriyi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Category Name\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/ContactInfoDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz." + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Telefon numarası kayıt servisi. Örn: ev telefonu, cep telefonu." + }, + "id": { + "element": "string", + "content": "createStudentTelephoneNumber" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Student ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Telefon numarası kayıt servisi. Örn: ev telefonu, cep telefonu." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"categories\": [],\n \"contactInfo\": \"Duis tempor\",\n \"createdBy\": \"irure velit Duis\",\n \"createdDate\": \"1996-08-30T20:51:43.130Z\",\n \"lastModifiedBy\": \"Excepteur sed ipsum\",\n \"lastModifiedDate\": \"2009-10-06T00:15:17.892Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/ContactInfoDTO\"}],\"definitions\":{\"ContactInfoDTO\":{\"title\":\"ContactInfoDTO\",\"description\":\"Iletisim bilgilerini sunmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Category of contact type. For example: Home address, Home telephone, Cell phone etc.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"contactInfo\":{\"description\":\"Telephone number or email address information depending on the type.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"ContactMediumCategoryLOV\":{\"title\":\"ContactMediumCategoryLOV\",\"description\":\"Contact medium kategorileri. Bir kategori tipine ait veriyi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Category Name\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"categories\": [],\n \"contactInfo\": \"aute eu quis incididunt nostrud\",\n \"createdBy\": \"dolore Duis cillum officia reprehenderit\",\n \"createdDate\": \"1969-07-18T08:19:54.906Z\",\n \"lastModifiedBy\": \"ipsum\",\n \"lastModifiedDate\": \"1972-05-30T22:13:20.346Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/ContactInfoDTO\"}],\"definitions\":{\"ContactInfoDTO\":{\"title\":\"ContactInfoDTO\",\"description\":\"Iletisim bilgilerini sunmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Category of contact type. For example: Home address, Home telephone, Cell phone etc.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"contactInfo\":{\"description\":\"Telephone number or email address information depending on the type.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"ContactMediumCategoryLOV\":{\"title\":\"ContactMediumCategoryLOV\",\"description\":\"Contact medium kategorileri. Bir kategori tipine ait veriyi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Category Name\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"categories\": [],\n \"contactInfo\": \"anim eiusmod ad pariatur officia\",\n \"createdBy\": \"cillum sit deserunt laborum\",\n \"createdDate\": \"1998-03-09T12:30:42.508Z\",\n \"lastModifiedBy\": \"ullamco eu aliqua vo\",\n \"lastModifiedDate\": \"1987-04-10T06:49:49.356Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"categories\": [],\n \"contactInfo\": \"minim esse officia cillum\",\n \"createdBy\": \"do amet ipsum aliqua\",\n \"createdDate\": \"2010-08-27T16:55:18.127Z\",\n \"lastModifiedBy\": \"ullamco commodo aute labore fugiat\",\n \"lastModifiedDate\": \"2008-11-19T12:08:35.411Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"categories\": [],\n \"contactInfo\": \"esse\",\n \"createdBy\": \"Lorem tempor ipsum\",\n \"createdDate\": \"1943-12-01T03:41:39.087Z\",\n \"lastModifiedBy\": \"reprehenderit nulla consectetur ut in\",\n \"lastModifiedDate\": \"1980-09-29T06:52:46.970Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"categories\": [],\n \"contactInfo\": \"in exercitation\",\n \"createdBy\": \"irure sit minim laboris\",\n \"createdDate\": \"1974-07-19T01:13:34.177Z\",\n \"lastModifiedBy\": \"in Duis magna eiusmod ullamco\",\n \"lastModifiedDate\": \"1962-10-23T21:11:02.367Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"categories\": [],\n \"contactInfo\": \"do deserunt labore est\",\n \"createdBy\": \"velit veniam qui\",\n \"createdDate\": \"1981-04-19T20:38:15.576Z\",\n \"lastModifiedBy\": \"laboris est eiusmod mollit\",\n \"lastModifiedDate\": \"1962-01-25T04:18:27.895Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz." + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/students/{id}/tel-numbers/{contactId}" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Talebenin telefon bilgisini günceller" + }, + "id": { + "element": "string", + "content": "updateStudentTelephoneNumber" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Telephone contact id" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "contactId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Student ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Talebenin telefon bilgisini günceller" + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"categories\": [],\n \"contactInfo\": \"reprehenderit\",\n \"createdBy\": \"officia\",\n \"createdDate\": \"1966-11-02T04:03:50.309Z\",\n \"lastModifiedBy\": \"voluptate sed minim et\",\n \"lastModifiedDate\": \"1983-06-27T00:31:15.314Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/ContactInfoDTO\"}],\"definitions\":{\"ContactInfoDTO\":{\"title\":\"ContactInfoDTO\",\"description\":\"Iletisim bilgilerini sunmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Category of contact type. For example: Home address, Home telephone, Cell phone etc.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"contactInfo\":{\"description\":\"Telephone number or email address information depending on the type.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"ContactMediumCategoryLOV\":{\"title\":\"ContactMediumCategoryLOV\",\"description\":\"Contact medium kategorileri. Bir kategori tipine ait veriyi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Category Name\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"categories\": [],\n \"contactInfo\": \"veniam fugiat occaecat in\",\n \"createdBy\": \"velit pariatur\",\n \"createdDate\": \"1975-10-10T05:08:32.010Z\",\n \"lastModifiedBy\": \"exercitation laborum\",\n \"lastModifiedDate\": \"1949-01-20T17:20:32.524Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"categories\": [],\n \"contactInfo\": \"enim\",\n \"createdBy\": \"adipisi\",\n \"createdDate\": \"1980-11-03T23:05:08.246Z\",\n \"lastModifiedBy\": \"ea\",\n \"lastModifiedDate\": \"1974-11-27T19:51:54.573Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "202" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/ContactInfoDTO\"}],\"definitions\":{\"ContactInfoDTO\":{\"title\":\"ContactInfoDTO\",\"description\":\"Iletisim bilgilerini sunmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Category of contact type. For example: Home address, Home telephone, Cell phone etc.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"contactInfo\":{\"description\":\"Telephone number or email address information depending on the type.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"ContactMediumCategoryLOV\":{\"title\":\"ContactMediumCategoryLOV\",\"description\":\"Contact medium kategorileri. Bir kategori tipine ait veriyi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Category Name\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"categories\": [],\n \"contactInfo\": \"cillum et\",\n \"createdBy\": \"magna dolore sed \",\n \"createdDate\": \"1964-06-05T05:49:50.870Z\",\n \"lastModifiedBy\": \"sint ipsum ut enim\",\n \"lastModifiedDate\": \"2012-12-12T19:32:34.211Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"categories\": [],\n \"contactInfo\": \"enim minim irure eu proident\",\n \"createdBy\": \"fugiat nisi deserunt\",\n \"createdDate\": \"1992-12-12T01:03:25.599Z\",\n \"lastModifiedBy\": \"sunt nostrud laboris ex voluptate\",\n \"lastModifiedDate\": \"1977-07-21T15:59:58.694Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"categories\": [],\n \"contactInfo\": \"nisi sint\",\n \"createdBy\": \"est eu culpa\",\n \"createdDate\": \"1993-06-23T08:35:12.001Z\",\n \"lastModifiedBy\": \"adipisicing minim esse mollit pariatur\",\n \"lastModifiedDate\": \"1967-01-23T00:13:29.327Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"categories\": [],\n \"contactInfo\": \"culpa officia dolor\",\n \"createdBy\": \"minim\",\n \"createdDate\": \"2005-02-18T17:59:15.456Z\",\n \"lastModifiedBy\": \"dolor anim eu quis\",\n \"lastModifiedDate\": \"2019-08-14T09:41:24.639Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"categories\": [],\n \"contactInfo\": \"et dolore irure do veniam\",\n \"createdBy\": \"adipisicing Ut eu nostrud\",\n \"createdDate\": \"1982-05-08T10:27:05.538Z\",\n \"lastModifiedBy\": \"qui\",\n \"lastModifiedDate\": \"1984-11-26T23:15:03.872Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz. " + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Delete a telephone number" + }, + "id": { + "element": "string", + "content": "deleteStudentTelephoneNumber" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Telephone contact id" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "contactId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Student ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Deletes a telephone number" + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "204" + } + }, + "content": [ + { + "element": "copy", + "content": "Telephone number deleted" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz." + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Student ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + }, + "href": { + "element": "string", + "content": "/api/sbt/students/{id}/documents" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Students StudentDocument list" + }, + "id": { + "element": "string", + "content": "getAllStudentDocuments" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Student ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Gets a list of all `DocumentDTO` entities of `Student`." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "List of all `DocumentDTO` entities of `Student`." + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/DocumentDTO\"},\"definitions\":{\"DocumentDTO\":{\"title\":\"DocumentDTO\",\"description\":\"Evrağın bilgilerini tutar. Kişi veya kuruma ait evrak bilgileridir.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Aciklama\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"type\":{\"$ref\":\"#/definitions/DocumentTypeLOV\"},\"validityEndDate\":{\"format\":\"date-time\",\"description\":\"Gecerlilik suresi bitis tarihi\",\"type\":\"string\"},\"validityStartDate\":{\"format\":\"date-time\",\"description\":\"Gecerlilik suresi baslangic tarihi\",\"type\":\"string\"}}},\"DocumentTypeLOV\":{\"title\":\"DocumentTypeLOV\",\"description\":\"Dökümanların tiplerinin tutulduğu yerdir. Örneğin : Transkript, öğrenci belgesi, ehliyet fotokopisi, İskan, KatPlanı, Ruhsat, Resim, Vergi levhası vs.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/DocumentDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz." + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Talebeye ait dokumanlari eklemek icin kullanilacak olan servistir." + }, + "id": { + "element": "string", + "content": "createStudentDocument" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Student ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Talebeye ait dokumanlari eklemek icin kullanilacak olan servistir. Döküman bilgileri ile beraber dökümanın kendisinide almaktadır. Dosya boyutu maksimum 50mb olabilir." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + }, + "content": "--BOUNDARY\r\nContent-Disposition: form-data; name=\"documentTypeId\"\r\n\r\n15604967\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"validityEndDate\"\r\n\r\nlabore\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"validityStartDate\"\r\n\r\nconsectetur laboris Lorem in ut\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"document\"\r\n\r\nut\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"description\"\r\n\r\naliqua laborum\r\n\r\n--BOUNDARY--\r\n" + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman açıklaması" + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman tipi. Ikametgah, öğrenci belgesi vb." + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "documentTypeId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman geçerlilik süresi bitişi" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityEndDate" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman geçerlilik süresi başlangıcı" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityStartDate" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Yeni eklenen döküman dosyası" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "document" + }, + "value": { + "element": "string" + } + } + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/DocumentDTO\"}],\"definitions\":{\"DocumentDTO\":{\"title\":\"DocumentDTO\",\"description\":\"Evrağın bilgilerini tutar. Kişi veya kuruma ait evrak bilgileridir.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Aciklama\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"type\":{\"$ref\":\"#/definitions/DocumentTypeLOV\"},\"validityEndDate\":{\"format\":\"date-time\",\"description\":\"Gecerlilik suresi bitis tarihi\",\"type\":\"string\"},\"validityStartDate\":{\"format\":\"date-time\",\"description\":\"Gecerlilik suresi baslangic tarihi\",\"type\":\"string\"}}},\"DocumentTypeLOV\":{\"title\":\"DocumentTypeLOV\",\"description\":\"Dökümanların tiplerinin tutulduğu yerdir. Örneğin : Transkript, öğrenci belgesi, ehliyet fotokopisi, İskan, KatPlanı, Ruhsat, Resim, Vergi levhası vs.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/DocumentDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + }, + "content": "--BOUNDARY\r\nContent-Disposition: form-data; name=\"documentTypeId\"\r\n\r\n-50970947\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"validityEndDate\"\r\n\r\nn\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"validityStartDate\"\r\n\r\ncommodo adipisicing quis exerc\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"document\"\r\n\r\nDuis irure ad Excepteur\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"description\"\r\n\r\nminim veniam nulla nisi\r\n\r\n--BOUNDARY--\r\n" + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman açıklaması" + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman tipi. Ikametgah, öğrenci belgesi vb." + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "documentTypeId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman geçerlilik süresi bitişi" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityEndDate" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman geçerlilik süresi başlangıcı" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityStartDate" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Yeni eklenen döküman dosyası" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "document" + }, + "value": { + "element": "string" + } + } + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + }, + "content": "--BOUNDARY\r\nContent-Disposition: form-data; name=\"documentTypeId\"\r\n\r\n-28457114\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"validityEndDate\"\r\n\r\nminim irure id cupidatat elit\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"validityStartDate\"\r\n\r\ne\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"document\"\r\n\r\nUt consequat\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"description\"\r\n\r\nvoluptate officia\r\n\r\n--BOUNDARY--\r\n" + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman açıklaması" + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman tipi. Ikametgah, öğrenci belgesi vb." + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "documentTypeId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman geçerlilik süresi bitişi" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityEndDate" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman geçerlilik süresi başlangıcı" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityStartDate" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Yeni eklenen döküman dosyası" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "document" + }, + "value": { + "element": "string" + } + } + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + }, + "content": "--BOUNDARY\r\nContent-Disposition: form-data; name=\"documentTypeId\"\r\n\r\n55216934\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"validityEndDate\"\r\n\r\nesse cillum\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"validityStartDate\"\r\n\r\nminim ex\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"document\"\r\n\r\ndolore\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"description\"\r\n\r\neiusmod elit occaecat\r\n\r\n--BOUNDARY--\r\n" + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman açıklaması" + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman tipi. Ikametgah, öğrenci belgesi vb." + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "documentTypeId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman geçerlilik süresi bitişi" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityEndDate" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman geçerlilik süresi başlangıcı" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityStartDate" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Yeni eklenen döküman dosyası" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "document" + }, + "value": { + "element": "string" + } + } + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + }, + "content": "--BOUNDARY\r\nContent-Disposition: form-data; name=\"documentTypeId\"\r\n\r\n52943668\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"validityEndDate\"\r\n\r\nest laboris quis adipisicing dolore\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"validityStartDate\"\r\n\r\nipsum exercitation in\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"document\"\r\n\r\nanim in\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"description\"\r\n\r\net dolore magna\r\n\r\n--BOUNDARY--\r\n" + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman açıklaması" + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman tipi. Ikametgah, öğrenci belgesi vb." + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "documentTypeId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman geçerlilik süresi bitişi" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityEndDate" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman geçerlilik süresi başlangıcı" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityStartDate" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Yeni eklenen döküman dosyası" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "document" + }, + "value": { + "element": "string" + } + } + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + }, + "content": "--BOUNDARY\r\nContent-Disposition: form-data; name=\"documentTypeId\"\r\n\r\n69511584\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"validityEndDate\"\r\n\r\nveniam\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"validityStartDate\"\r\n\r\nut ipsum magna\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"document\"\r\n\r\ndeserunt anim ullamco aute\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"description\"\r\n\r\noccaecat\r\n\r\n--BOUNDARY--\r\n" + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman açıklaması" + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman tipi. Ikametgah, öğrenci belgesi vb." + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "documentTypeId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman geçerlilik süresi bitişi" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityEndDate" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman geçerlilik süresi başlangıcı" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityStartDate" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Yeni eklenen döküman dosyası" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "document" + }, + "value": { + "element": "string" + } + } + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz. " + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Student ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Document ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "documentId" + }, + "value": { + "element": "number" + } + } + } + ] + }, + "href": { + "element": "string", + "content": "/api/sbt/students/{id}/documents/{documentId}" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Talebeye ait dokümanları güncellemek için kullanılır." + }, + "id": { + "element": "string", + "content": "getStudentDocument" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Document ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "documentId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Student ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Talebeye ait dokümanları güncellemek için kullanılır. Dokümana ait, açıklama ve tarih bilgileri vb. güncellenebilir. Döküman dosyasını günceller. Dosya güncellendiğinde eski dosya silinmiş olur." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + }, + "content": "--BOUNDARY\r\nContent-Disposition: form-data; name=\"documentTypeId\"\r\n\r\n-36185230\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"validityEndDate\"\r\n\r\nex nisi\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"validityStartDate\"\r\n\r\nin deserunt aliqua magna\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"document\"\r\n\r\nlabore eiusmod Duis\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"description\"\r\n\r\ne\r\n\r\n--BOUNDARY--\r\n" + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman açıklaması" + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman tipi. Ikametgah, öğrenci belgesi vb." + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "documentTypeId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman geçerlilik süresi bitişi" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityEndDate" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman geçerlilik süresi başlangıcı" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityStartDate" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Yeni eklenen döküman dosyası" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "document" + }, + "value": { + "element": "string" + } + } + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/DocumentDTO\"}],\"definitions\":{\"DocumentDTO\":{\"title\":\"DocumentDTO\",\"description\":\"Evrağın bilgilerini tutar. Kişi veya kuruma ait evrak bilgileridir.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Aciklama\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"type\":{\"$ref\":\"#/definitions/DocumentTypeLOV\"},\"validityEndDate\":{\"format\":\"date-time\",\"description\":\"Gecerlilik suresi bitis tarihi\",\"type\":\"string\"},\"validityStartDate\":{\"format\":\"date-time\",\"description\":\"Gecerlilik suresi baslangic tarihi\",\"type\":\"string\"}}},\"DocumentTypeLOV\":{\"title\":\"DocumentTypeLOV\",\"description\":\"Dökümanların tiplerinin tutulduğu yerdir. Örneğin : Transkript, öğrenci belgesi, ehliyet fotokopisi, İskan, KatPlanı, Ruhsat, Resim, Vergi levhası vs.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/DocumentDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + }, + "content": "--BOUNDARY\r\nContent-Disposition: form-data; name=\"documentTypeId\"\r\n\r\n58127235\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"validityEndDate\"\r\n\r\naliqua\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"validityStartDate\"\r\n\r\nlaborum elit do\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"document\"\r\n\r\nelit ad esse\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"description\"\r\n\r\ncillum dolor dolore aute nostrud\r\n\r\n--BOUNDARY--\r\n" + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman açıklaması" + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman tipi. Ikametgah, öğrenci belgesi vb." + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "documentTypeId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman geçerlilik süresi bitişi" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityEndDate" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman geçerlilik süresi başlangıcı" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityStartDate" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Yeni eklenen döküman dosyası" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "document" + }, + "value": { + "element": "string" + } + } + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + }, + "content": "--BOUNDARY\r\nContent-Disposition: form-data; name=\"documentTypeId\"\r\n\r\n88151649\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"validityEndDate\"\r\n\r\ndolor\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"validityStartDate\"\r\n\r\nvelit anim\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"document\"\r\n\r\nelit occaecat\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"description\"\r\n\r\nfugiat elit Duis occaecat\r\n\r\n--BOUNDARY--\r\n" + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman açıklaması" + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman tipi. Ikametgah, öğrenci belgesi vb." + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "documentTypeId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman geçerlilik süresi bitişi" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityEndDate" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman geçerlilik süresi başlangıcı" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityStartDate" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Yeni eklenen döküman dosyası" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "document" + }, + "value": { + "element": "string" + } + } + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "202" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/DocumentDTO\"}],\"definitions\":{\"DocumentDTO\":{\"title\":\"DocumentDTO\",\"description\":\"Evrağın bilgilerini tutar. Kişi veya kuruma ait evrak bilgileridir.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Aciklama\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"type\":{\"$ref\":\"#/definitions/DocumentTypeLOV\"},\"validityEndDate\":{\"format\":\"date-time\",\"description\":\"Gecerlilik suresi bitis tarihi\",\"type\":\"string\"},\"validityStartDate\":{\"format\":\"date-time\",\"description\":\"Gecerlilik suresi baslangic tarihi\",\"type\":\"string\"}}},\"DocumentTypeLOV\":{\"title\":\"DocumentTypeLOV\",\"description\":\"Dökümanların tiplerinin tutulduğu yerdir. Örneğin : Transkript, öğrenci belgesi, ehliyet fotokopisi, İskan, KatPlanı, Ruhsat, Resim, Vergi levhası vs.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/DocumentDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + }, + "content": "--BOUNDARY\r\nContent-Disposition: form-data; name=\"documentTypeId\"\r\n\r\n91742024\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"validityEndDate\"\r\n\r\nin aute\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"validityStartDate\"\r\n\r\nlaboris consectetur eius\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"document\"\r\n\r\nexercitation\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"description\"\r\n\r\nculpa\r\n\r\n--BOUNDARY--\r\n" + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman açıklaması" + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman tipi. Ikametgah, öğrenci belgesi vb." + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "documentTypeId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman geçerlilik süresi bitişi" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityEndDate" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman geçerlilik süresi başlangıcı" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityStartDate" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Yeni eklenen döküman dosyası" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "document" + }, + "value": { + "element": "string" + } + } + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + }, + "content": "--BOUNDARY\r\nContent-Disposition: form-data; name=\"documentTypeId\"\r\n\r\n-77521911\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"validityEndDate\"\r\n\r\nea dolor magna\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"validityStartDate\"\r\n\r\ntempor ut Excepteur eiusmod nostrud\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"document\"\r\n\r\nDuis in Excepteur\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"description\"\r\n\r\ndo amet laboris\r\n\r\n--BOUNDARY--\r\n" + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman açıklaması" + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman tipi. Ikametgah, öğrenci belgesi vb." + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "documentTypeId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman geçerlilik süresi bitişi" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityEndDate" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman geçerlilik süresi başlangıcı" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityStartDate" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Yeni eklenen döküman dosyası" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "document" + }, + "value": { + "element": "string" + } + } + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + }, + "content": "--BOUNDARY\r\nContent-Disposition: form-data; name=\"documentTypeId\"\r\n\r\n-5410167\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"validityEndDate\"\r\n\r\naute ipsum dolor non\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"validityStartDate\"\r\n\r\naute labore nostrud sin\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"document\"\r\n\r\nest aute\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"description\"\r\n\r\naliquip\r\n\r\n--BOUNDARY--\r\n" + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman açıklaması" + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman tipi. Ikametgah, öğrenci belgesi vb." + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "documentTypeId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman geçerlilik süresi bitişi" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityEndDate" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman geçerlilik süresi başlangıcı" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityStartDate" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Yeni eklenen döküman dosyası" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "document" + }, + "value": { + "element": "string" + } + } + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + }, + "content": "--BOUNDARY\r\nContent-Disposition: form-data; name=\"documentTypeId\"\r\n\r\n16438610\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"validityEndDate\"\r\n\r\nincididunt et non tempor\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"validityStartDate\"\r\n\r\naliqua\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"document\"\r\n\r\nut consequat ut\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"description\"\r\n\r\nvelit in\r\n\r\n--BOUNDARY--\r\n" + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman açıklaması" + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman tipi. Ikametgah, öğrenci belgesi vb." + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "documentTypeId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman geçerlilik süresi bitişi" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityEndDate" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman geçerlilik süresi başlangıcı" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityStartDate" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Yeni eklenen döküman dosyası" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "document" + }, + "value": { + "element": "string" + } + } + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + }, + "content": "--BOUNDARY\r\nContent-Disposition: form-data; name=\"documentTypeId\"\r\n\r\n62805013\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"validityEndDate\"\r\n\r\nex do irure qui minim\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"validityStartDate\"\r\n\r\nin in in dolor\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"document\"\r\n\r\nsint\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"description\"\r\n\r\nin culpa irure\r\n\r\n--BOUNDARY--\r\n" + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman açıklaması" + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman tipi. Ikametgah, öğrenci belgesi vb." + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "documentTypeId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman geçerlilik süresi bitişi" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityEndDate" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman geçerlilik süresi başlangıcı" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityStartDate" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Yeni eklenen döküman dosyası" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "document" + }, + "value": { + "element": "string" + } + } + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz. " + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Talebeye ait belgeyi silmek icin kullanılacak olan servistir." + }, + "id": { + "element": "string", + "content": "deleteStudentDocument" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Document ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "documentId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Student ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Talebeye ait belgeyi silmek icin kullanılacak olan servistir." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "204" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz." + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Student ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Document ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "documentId" + }, + "value": { + "element": "number" + } + } + } + ] + }, + "href": { + "element": "string", + "content": "/api/sbt/students/{id}/documents/{documentId}/content" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Talebeye ait döküman içeriğini görüntüleme" + }, + "id": { + "element": "string", + "content": "getStudentDocumentContent" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Document ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "documentId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Student ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Talebeye ait belgenin içeriğini göstermek için kullanılacak olan servistir." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/Resource\"}],\"definitions\":{\"Resource\":{\"title\":\"Resource\",\"type\":\"object\",\"properties\":{\"description\":{\"type\":\"string\"},\"file\":{\"$ref\":\"#/definitions/File\"},\"filename\":{\"type\":\"string\"},\"inputStream\":{\"$ref\":\"#/definitions/InputStream\"},\"open\":{\"type\":\"boolean\"},\"readable\":{\"type\":\"boolean\"},\"uri\":{\"$ref\":\"#/definitions/URI\"},\"url\":{\"$ref\":\"#/definitions/URL\"}}},\"URL\":{\"title\":\"URL\",\"type\":\"object\",\"properties\":{\"authority\":{\"type\":\"string\"},\"content\":{\"type\":\"object\"},\"defaultPort\":{\"format\":\"int32\",\"type\":\"integer\"},\"file\":{\"type\":\"string\"},\"host\":{\"type\":\"string\"},\"path\":{\"type\":\"string\"},\"port\":{\"format\":\"int32\",\"type\":\"integer\"},\"protocol\":{\"type\":\"string\"},\"query\":{\"type\":\"string\"},\"ref\":{\"type\":\"string\"},\"userInfo\":{\"type\":\"string\"}}},\"URI\":{\"title\":\"URI\",\"type\":\"object\",\"properties\":{\"absolute\":{\"type\":\"boolean\"},\"authority\":{\"type\":\"string\"},\"fragment\":{\"type\":\"string\"},\"host\":{\"type\":\"string\"},\"opaque\":{\"type\":\"boolean\"},\"path\":{\"type\":\"string\"},\"port\":{\"format\":\"int32\",\"type\":\"integer\"},\"query\":{\"type\":\"string\"},\"rawAuthority\":{\"type\":\"string\"},\"rawFragment\":{\"type\":\"string\"},\"rawPath\":{\"type\":\"string\"},\"rawQuery\":{\"type\":\"string\"},\"rawSchemeSpecificPart\":{\"type\":\"string\"},\"rawUserInfo\":{\"type\":\"string\"},\"scheme\":{\"type\":\"string\"},\"schemeSpecificPart\":{\"type\":\"string\"},\"userInfo\":{\"type\":\"string\"}}},\"InputStream\":{\"title\":\"InputStream\",\"type\":\"object\"},\"File\":{\"title\":\"File\",\"type\":\"object\",\"properties\":{\"absolute\":{\"type\":\"boolean\"},\"absoluteFile\":{\"$ref\":\"#/definitions/File\"},\"absolutePath\":{\"type\":\"string\"},\"canonicalFile\":{\"$ref\":\"#/definitions/File\"},\"canonicalPath\":{\"type\":\"string\"},\"directory\":{\"type\":\"boolean\"},\"file\":{\"type\":\"boolean\"},\"freeSpace\":{\"format\":\"int64\",\"type\":\"integer\"},\"hidden\":{\"type\":\"boolean\"},\"name\":{\"type\":\"string\"},\"parent\":{\"type\":\"string\"},\"parentFile\":{\"$ref\":\"#/definitions/File\"},\"path\":{\"type\":\"string\"},\"totalSpace\":{\"format\":\"int64\",\"type\":\"integer\"},\"usableSpace\":{\"format\":\"int64\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/Resource" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "202" + } + }, + "content": [ + { + "element": "copy", + "content": "Document Content. //TODO : response type belirlenmeli." + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/Resource\"}],\"definitions\":{\"Resource\":{\"title\":\"Resource\",\"type\":\"object\",\"properties\":{\"description\":{\"type\":\"string\"},\"file\":{\"$ref\":\"#/definitions/File\"},\"filename\":{\"type\":\"string\"},\"inputStream\":{\"$ref\":\"#/definitions/InputStream\"},\"open\":{\"type\":\"boolean\"},\"readable\":{\"type\":\"boolean\"},\"uri\":{\"$ref\":\"#/definitions/URI\"},\"url\":{\"$ref\":\"#/definitions/URL\"}}},\"URL\":{\"title\":\"URL\",\"type\":\"object\",\"properties\":{\"authority\":{\"type\":\"string\"},\"content\":{\"type\":\"object\"},\"defaultPort\":{\"format\":\"int32\",\"type\":\"integer\"},\"file\":{\"type\":\"string\"},\"host\":{\"type\":\"string\"},\"path\":{\"type\":\"string\"},\"port\":{\"format\":\"int32\",\"type\":\"integer\"},\"protocol\":{\"type\":\"string\"},\"query\":{\"type\":\"string\"},\"ref\":{\"type\":\"string\"},\"userInfo\":{\"type\":\"string\"}}},\"URI\":{\"title\":\"URI\",\"type\":\"object\",\"properties\":{\"absolute\":{\"type\":\"boolean\"},\"authority\":{\"type\":\"string\"},\"fragment\":{\"type\":\"string\"},\"host\":{\"type\":\"string\"},\"opaque\":{\"type\":\"boolean\"},\"path\":{\"type\":\"string\"},\"port\":{\"format\":\"int32\",\"type\":\"integer\"},\"query\":{\"type\":\"string\"},\"rawAuthority\":{\"type\":\"string\"},\"rawFragment\":{\"type\":\"string\"},\"rawPath\":{\"type\":\"string\"},\"rawQuery\":{\"type\":\"string\"},\"rawSchemeSpecificPart\":{\"type\":\"string\"},\"rawUserInfo\":{\"type\":\"string\"},\"scheme\":{\"type\":\"string\"},\"schemeSpecificPart\":{\"type\":\"string\"},\"userInfo\":{\"type\":\"string\"}}},\"InputStream\":{\"title\":\"InputStream\",\"type\":\"object\"},\"File\":{\"title\":\"File\",\"type\":\"object\",\"properties\":{\"absolute\":{\"type\":\"boolean\"},\"absoluteFile\":{\"$ref\":\"#/definitions/File\"},\"absolutePath\":{\"type\":\"string\"},\"canonicalFile\":{\"$ref\":\"#/definitions/File\"},\"canonicalPath\":{\"type\":\"string\"},\"directory\":{\"type\":\"boolean\"},\"file\":{\"type\":\"boolean\"},\"freeSpace\":{\"format\":\"int64\",\"type\":\"integer\"},\"hidden\":{\"type\":\"boolean\"},\"name\":{\"type\":\"string\"},\"parent\":{\"type\":\"string\"},\"parentFile\":{\"$ref\":\"#/definitions/File\"},\"path\":{\"type\":\"string\"},\"totalSpace\":{\"format\":\"int64\",\"type\":\"integer\"},\"usableSpace\":{\"format\":\"int64\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/Resource" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz. " + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + }, + "href": { + "element": "string", + "content": "/api/sbt/students/{id}/education/formal/old" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Geçmiş Kayıtları... Talebenin örgün eğitim dönem listesini verir. Bir örgün eğitim döneminde dönem tarihi, okulu, bölümü, eğitim sınıfı, eğitim kategorisi, eğitim dili gibi bilgiler bulunur." + }, + "id": { + "element": "string", + "content": "getAllStudentFormalEducationOldInfos" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Student ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Gets a list of all `FormalEducationInfo` entities of `Student`." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#produces-accept" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Accept" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + } + }, + { + "element": "httpResponse", + "attributes": { + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#produces-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + }, + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "List of all `FormalEducationInfo` entities of `Student`." + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "[\n {\n \"createdBy\": \"culpa\",\n \"createdDate\": \"1946-04-02T22:56:44.949Z\",\n \"department\": \"ad\",\n \"educationLangName\": \"culpa nisi dolor\",\n \"educationStageName\": \"proident ex in ipsum ut\",\n \"educationalGradeName\": \"sunt\",\n \"id\": -27618223,\n \"lastModifiedBy\": \"non do in\",\n \"lastModifiedDate\": \"1941-11-18T20:57:30.078Z\",\n \"school\": {\n \"address\": [],\n \"contacts\": [],\n \"createdBy\": \"Lorem in\",\n \"createdDate\": \"1993-06-27T13:54:56.240Z\",\n \"id\": -36940486,\n \"lastModifiedBy\": \"cupidatat enim sint magna in\",\n \"lastModifiedDate\": \"2017-08-08T10:18:45.323Z\",\n \"name\": \"irure sit\",\n \"type\": {\n \"createdBy\": \"fugiat ea in\",\n \"createdDate\": \"2003-08-19T20:19:49.727Z\",\n \"id\": -63642185,\n \"name\": \"eiusmod laborum minim\"\n }\n },\n \"term\": {\n \"createdBy\": \"cupidatat\",\n \"createdDate\": \"1997-11-30T01:34:49.420Z\",\n \"endDate\": \"2005-02-10T16:57:29.310Z\",\n \"id\": -3320550,\n \"lastModifiedBy\": \"Ut commodo exerc\",\n \"lastModifiedDate\": \"1949-11-16T16:57:44.761Z\",\n \"name\": \"pariatur minim\",\n \"startDate\": \"1944-02-16T14:26:13.680Z\"\n }\n }\n]" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/FormalEducationGradeInfoDTO\"},\"definitions\":{\"FormalEducationGradeInfoDTO\":{\"title\":\"FormalEducationGradeInfoDTO\",\"description\":\"Bir kişinin aldığı eğitimin bir dönemine ait bilgileri tutmaktadır.\\n Örneğin 4 yıllık bilgisayar mühendisliği bölümünden mezun olan bir kişi için bu dto dan 4 instance tutulmalı ve şu verileri barındırmalı.\\n\\n 1 - Formal Education - Iğdır üniversitesi - Mühendislik fakültesi - Bilgisayar mühendisliği - 2010.10.01(dönem başlangıcı) - 2011.05.02( dönem bitişi )\\n 2 - Formal Education - Iğdır üniversitesi - Mühendislik fakültesi - Bilgisayar mühendisliği - 2011.10.01(dönem başlangıcı) - 2012.05.02( dönem bitişi )\\n 3 - Formal Education - Abant Izzet Baysal üniversitesi - Mühendislik ve mimarlık fakültesi - Bilgisayar mühendisliği - 2012.10.01(dönem başlangıcı) - 2013.05.02( dönem bitişi )\\n 4 - Formal Education - Abant Izzet Baysal üniversitesi - Mühendislik ve mimarlık fakültesi - Bilgisayar mühendisliği - 2013.10.01(dönem başlangıcı) - 2014.05.02( dönem bitişi )\\n\\n Yukarıdaki örnekteki tek bir satırı bu dto tutmaktadır.\\n Kişi sonuç olarak Abant izzet baysal üniversitesi bilgisayar mühendisliği diplomasına sahip olsada dönemsel olarak eğitim verileri bu şekildedir.\\n\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"department\":{\"description\":\"Fakulte ve Bölüm bilgileri yer alır. Örneğin : Sosyal bilimler MYO - Pazarlama bölümü\",\"type\":\"string\"},\"educationLangName\":{\"description\":\"The language name used while learning\",\"type\":\"string\"},\"educationStageName\":{\"description\":\"Education stage. For example : Associate degree, Licanse degree etc.. \",\"type\":\"string\"},\"educationalGradeName\":{\"description\":\"Sınıf seviye adi\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"school\":{\"$ref\":\"#/definitions/SchoolProfileDTO\"},\"term\":{\"$ref\":\"#/definitions/EducationalTermDTO\"}}},\"EducationalTermDTO\":{\"title\":\"EducationalTermDTO\",\"description\":\"Bir eğitim döneminin tanımını tutar. Örneğin 2018-2019 Eğitim öğretim dönemi gibi.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"endDate\":{\"format\":\"date-time\",\"description\":\"Donem bitis tarihi\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Dönem adı\",\"type\":\"string\"},\"startDate\":{\"format\":\"date-time\",\"description\":\"Donem baslangic tarihi\",\"type\":\"string\"}}},\"SchoolProfileDTO\":{\"title\":\"SchoolProfileDTO\",\"description\":\"Bir okula ait bilgileri tutar. İlk okul - orta okul - lise - üniversite tipinde okulların tanımlarının yapıldığı modeldir.\",\"type\":\"object\",\"properties\":{\"address\":{\"description\":\"Okul adresi\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/AddressCardDTO\"}},\"contacts\":{\"description\":\"Iletisim bilgileri. Telefon mail vb.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactInfoDTO\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Okul adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"},\"type\":{\"$ref\":\"#/definitions/EducationalStageLOV\"}}},\"EducationalStageLOV\":{\"title\":\"EducationalStageLOV\",\"description\":\"Eğitim kategorilerini tutar. Örneğin; Ön lisans, Lisans vb.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Name information\",\"type\":\"string\"}}},\"ContactInfoDTO\":{\"title\":\"ContactInfoDTO\",\"description\":\"Iletisim bilgilerini sunmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Category of contact type. For example: Home address, Home telephone, Cell phone etc.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"contactInfo\":{\"description\":\"Telephone number or email address information depending on the type.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"ContactMediumCategoryLOV\":{\"title\":\"ContactMediumCategoryLOV\",\"description\":\"Contact medium kategorileri. Bir kategori tipine ait veriyi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Category Name\",\"type\":\"string\"}}},\"AddressCardDTO\":{\"title\":\"AddressCardDTO\",\"description\":\"Address bilgisini sunar. Sadece full address bilgisini ve kategorisini verir.\\n Adres kategorisine ait kategori adı bilgisi “ContactMediumType” dır.\\n Yani contact medium type \\\"iletişimde bulunulacak adresler\\\" bilgisini ifade eder.\",\"type\":\"object\",\"properties\":{\"addressCategory\":{\"description\":\"Address kategorisi\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Full address. İl ilçe mahalle sokak gibi bütün bilgileri içerir.\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/FormalEducationGradeInfoDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#produces-accept" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Accept" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + } + }, + { + "element": "httpResponse", + "attributes": { + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#produces-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + }, + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#produces-accept" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Accept" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + } + }, + { + "element": "httpResponse", + "attributes": { + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#produces-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + }, + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#produces-accept" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Accept" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + } + }, + { + "element": "httpResponse", + "attributes": { + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#produces-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + }, + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#produces-accept" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Accept" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + } + }, + { + "element": "httpResponse", + "attributes": { + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#produces-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + }, + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#produces-accept" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Accept" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + } + }, + { + "element": "httpResponse", + "attributes": { + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#produces-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + }, + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz." + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Geçmiş Kayıtları... Talebeye yeni bir örgün eğitim dönemi bilgisi ekler." + }, + "id": { + "element": "string", + "content": "createStudentFormalEducationOldInfo" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Student ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Talebeye yeni bir örgün eğitim dönemi ekler. Talebenin eğitim bilgileri dönem dönem tutulmaktadır. Bu servis talebenin okuduğu bir okulda geçirdiği bir dönem bilgilerini almaktadır." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"qui\",\n \"createdDate\": \"2015-08-15T13:40:27.895Z\",\n \"departmentName\": \"ad minim sunt\",\n \"educationLangId\": -69315925,\n \"educationStageId\": 56428402,\n \"educationalGradeId\": -53848291,\n \"lastModifiedBy\": \"ex quis nostrud incididunt amet\",\n \"lastModifiedDate\": \"2011-07-30T09:38:41.134Z\",\n \"schoolId\": 92867224,\n \"termId\": 28844479\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"FormalEducationalGradeInfoCreateDTO\",\"description\":\"Bir kisiye ait yeni bir örgün eğitim dönemi tanımlarken kullanılır. Kişinin eğitim bilgisi ( hangi okulda hangi bölümü ne zaman okumuş vb. ) eğitim dönemlerine bölünerek tutulmaktadır. Bu dto tek bir eğitim dönemi oluşturmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"departmentName\":{\"description\":\"Eğitim gördüğü fakülte ve bölüm bilgisi\",\"type\":\"string\"},\"educationLangId\":{\"format\":\"int64\",\"description\":\"Döneme ait eğitim dili bilgisi.\",\"type\":\"integer\"},\"educationStageId\":{\"format\":\"int64\",\"description\":\"Eğitim görülen kademe. Lisans, yüksek lisans, lise vb.\",\"type\":\"integer\"},\"educationalGradeId\":{\"format\":\"int64\",\"description\":\"Eğitim sınıfı bilgisi. \",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"schoolId\":{\"format\":\"int64\",\"description\":\"Eğitim görülen okul bilgisi\",\"type\":\"integer\"},\"termId\":{\"format\":\"int64\",\"description\":\"Eğitim dönemi bilgisi.\",\"type\":\"integer\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/FormalEducationalGradeInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/FormalEducationGradeInfoDTO\"}],\"definitions\":{\"FormalEducationGradeInfoDTO\":{\"title\":\"FormalEducationGradeInfoDTO\",\"description\":\"Bir kişinin aldığı eğitimin bir dönemine ait bilgileri tutmaktadır.\\n Örneğin 4 yıllık bilgisayar mühendisliği bölümünden mezun olan bir kişi için bu dto dan 4 instance tutulmalı ve şu verileri barındırmalı.\\n\\n 1 - Formal Education - Iğdır üniversitesi - Mühendislik fakültesi - Bilgisayar mühendisliği - 2010.10.01(dönem başlangıcı) - 2011.05.02( dönem bitişi )\\n 2 - Formal Education - Iğdır üniversitesi - Mühendislik fakültesi - Bilgisayar mühendisliği - 2011.10.01(dönem başlangıcı) - 2012.05.02( dönem bitişi )\\n 3 - Formal Education - Abant Izzet Baysal üniversitesi - Mühendislik ve mimarlık fakültesi - Bilgisayar mühendisliği - 2012.10.01(dönem başlangıcı) - 2013.05.02( dönem bitişi )\\n 4 - Formal Education - Abant Izzet Baysal üniversitesi - Mühendislik ve mimarlık fakültesi - Bilgisayar mühendisliği - 2013.10.01(dönem başlangıcı) - 2014.05.02( dönem bitişi )\\n\\n Yukarıdaki örnekteki tek bir satırı bu dto tutmaktadır.\\n Kişi sonuç olarak Abant izzet baysal üniversitesi bilgisayar mühendisliği diplomasına sahip olsada dönemsel olarak eğitim verileri bu şekildedir.\\n\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"department\":{\"description\":\"Fakulte ve Bölüm bilgileri yer alır. Örneğin : Sosyal bilimler MYO - Pazarlama bölümü\",\"type\":\"string\"},\"educationLangName\":{\"description\":\"The language name used while learning\",\"type\":\"string\"},\"educationStageName\":{\"description\":\"Education stage. For example : Associate degree, Licanse degree etc.. \",\"type\":\"string\"},\"educationalGradeName\":{\"description\":\"Sınıf seviye adi\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"school\":{\"$ref\":\"#/definitions/SchoolProfileDTO\"},\"term\":{\"$ref\":\"#/definitions/EducationalTermDTO\"}}},\"EducationalTermDTO\":{\"title\":\"EducationalTermDTO\",\"description\":\"Bir eğitim döneminin tanımını tutar. Örneğin 2018-2019 Eğitim öğretim dönemi gibi.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"endDate\":{\"format\":\"date-time\",\"description\":\"Donem bitis tarihi\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Dönem adı\",\"type\":\"string\"},\"startDate\":{\"format\":\"date-time\",\"description\":\"Donem baslangic tarihi\",\"type\":\"string\"}}},\"SchoolProfileDTO\":{\"title\":\"SchoolProfileDTO\",\"description\":\"Bir okula ait bilgileri tutar. İlk okul - orta okul - lise - üniversite tipinde okulların tanımlarının yapıldığı modeldir.\",\"type\":\"object\",\"properties\":{\"address\":{\"description\":\"Okul adresi\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/AddressCardDTO\"}},\"contacts\":{\"description\":\"Iletisim bilgileri. Telefon mail vb.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactInfoDTO\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Okul adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"},\"type\":{\"$ref\":\"#/definitions/EducationalStageLOV\"}}},\"EducationalStageLOV\":{\"title\":\"EducationalStageLOV\",\"description\":\"Eğitim kategorilerini tutar. Örneğin; Ön lisans, Lisans vb.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Name information\",\"type\":\"string\"}}},\"ContactInfoDTO\":{\"title\":\"ContactInfoDTO\",\"description\":\"Iletisim bilgilerini sunmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Category of contact type. For example: Home address, Home telephone, Cell phone etc.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"contactInfo\":{\"description\":\"Telephone number or email address information depending on the type.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"ContactMediumCategoryLOV\":{\"title\":\"ContactMediumCategoryLOV\",\"description\":\"Contact medium kategorileri. Bir kategori tipine ait veriyi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Category Name\",\"type\":\"string\"}}},\"AddressCardDTO\":{\"title\":\"AddressCardDTO\",\"description\":\"Address bilgisini sunar. Sadece full address bilgisini ve kategorisini verir.\\n Adres kategorisine ait kategori adı bilgisi “ContactMediumType” dır.\\n Yani contact medium type \\\"iletişimde bulunulacak adresler\\\" bilgisini ifade eder.\",\"type\":\"object\",\"properties\":{\"addressCategory\":{\"description\":\"Address kategorisi\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Full address. İl ilçe mahalle sokak gibi bütün bilgileri içerir.\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/FormalEducationGradeInfoDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"velit qui in\",\n \"createdDate\": \"1981-06-09T07:01:46.440Z\",\n \"departmentName\": \"tempor incididunt magna ad in\",\n \"educationLangId\": -8795817,\n \"educationStageId\": 2593238,\n \"educationalGradeId\": 46843903,\n \"lastModifiedBy\": \"laboris sit\",\n \"lastModifiedDate\": \"2016-09-29T19:14:25.076Z\",\n \"schoolId\": 99061527,\n \"termId\": 29479465\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"FormalEducationalGradeInfoCreateDTO\",\"description\":\"Bir kisiye ait yeni bir örgün eğitim dönemi tanımlarken kullanılır. Kişinin eğitim bilgisi ( hangi okulda hangi bölümü ne zaman okumuş vb. ) eğitim dönemlerine bölünerek tutulmaktadır. Bu dto tek bir eğitim dönemi oluşturmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"departmentName\":{\"description\":\"Eğitim gördüğü fakülte ve bölüm bilgisi\",\"type\":\"string\"},\"educationLangId\":{\"format\":\"int64\",\"description\":\"Döneme ait eğitim dili bilgisi.\",\"type\":\"integer\"},\"educationStageId\":{\"format\":\"int64\",\"description\":\"Eğitim görülen kademe. Lisans, yüksek lisans, lise vb.\",\"type\":\"integer\"},\"educationalGradeId\":{\"format\":\"int64\",\"description\":\"Eğitim sınıfı bilgisi. \",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"schoolId\":{\"format\":\"int64\",\"description\":\"Eğitim görülen okul bilgisi\",\"type\":\"integer\"},\"termId\":{\"format\":\"int64\",\"description\":\"Eğitim dönemi bilgisi.\",\"type\":\"integer\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/FormalEducationalGradeInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/FormalEducationGradeInfoDTO\"}],\"definitions\":{\"FormalEducationGradeInfoDTO\":{\"title\":\"FormalEducationGradeInfoDTO\",\"description\":\"Bir kişinin aldığı eğitimin bir dönemine ait bilgileri tutmaktadır.\\n Örneğin 4 yıllık bilgisayar mühendisliği bölümünden mezun olan bir kişi için bu dto dan 4 instance tutulmalı ve şu verileri barındırmalı.\\n\\n 1 - Formal Education - Iğdır üniversitesi - Mühendislik fakültesi - Bilgisayar mühendisliği - 2010.10.01(dönem başlangıcı) - 2011.05.02( dönem bitişi )\\n 2 - Formal Education - Iğdır üniversitesi - Mühendislik fakültesi - Bilgisayar mühendisliği - 2011.10.01(dönem başlangıcı) - 2012.05.02( dönem bitişi )\\n 3 - Formal Education - Abant Izzet Baysal üniversitesi - Mühendislik ve mimarlık fakültesi - Bilgisayar mühendisliği - 2012.10.01(dönem başlangıcı) - 2013.05.02( dönem bitişi )\\n 4 - Formal Education - Abant Izzet Baysal üniversitesi - Mühendislik ve mimarlık fakültesi - Bilgisayar mühendisliği - 2013.10.01(dönem başlangıcı) - 2014.05.02( dönem bitişi )\\n\\n Yukarıdaki örnekteki tek bir satırı bu dto tutmaktadır.\\n Kişi sonuç olarak Abant izzet baysal üniversitesi bilgisayar mühendisliği diplomasına sahip olsada dönemsel olarak eğitim verileri bu şekildedir.\\n\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"department\":{\"description\":\"Fakulte ve Bölüm bilgileri yer alır. Örneğin : Sosyal bilimler MYO - Pazarlama bölümü\",\"type\":\"string\"},\"educationLangName\":{\"description\":\"The language name used while learning\",\"type\":\"string\"},\"educationStageName\":{\"description\":\"Education stage. For example : Associate degree, Licanse degree etc.. \",\"type\":\"string\"},\"educationalGradeName\":{\"description\":\"Sınıf seviye adi\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"school\":{\"$ref\":\"#/definitions/SchoolProfileDTO\"},\"term\":{\"$ref\":\"#/definitions/EducationalTermDTO\"}}},\"EducationalTermDTO\":{\"title\":\"EducationalTermDTO\",\"description\":\"Bir eğitim döneminin tanımını tutar. Örneğin 2018-2019 Eğitim öğretim dönemi gibi.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"endDate\":{\"format\":\"date-time\",\"description\":\"Donem bitis tarihi\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Dönem adı\",\"type\":\"string\"},\"startDate\":{\"format\":\"date-time\",\"description\":\"Donem baslangic tarihi\",\"type\":\"string\"}}},\"SchoolProfileDTO\":{\"title\":\"SchoolProfileDTO\",\"description\":\"Bir okula ait bilgileri tutar. İlk okul - orta okul - lise - üniversite tipinde okulların tanımlarının yapıldığı modeldir.\",\"type\":\"object\",\"properties\":{\"address\":{\"description\":\"Okul adresi\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/AddressCardDTO\"}},\"contacts\":{\"description\":\"Iletisim bilgileri. Telefon mail vb.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactInfoDTO\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Okul adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"},\"type\":{\"$ref\":\"#/definitions/EducationalStageLOV\"}}},\"EducationalStageLOV\":{\"title\":\"EducationalStageLOV\",\"description\":\"Eğitim kategorilerini tutar. Örneğin; Ön lisans, Lisans vb.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Name information\",\"type\":\"string\"}}},\"ContactInfoDTO\":{\"title\":\"ContactInfoDTO\",\"description\":\"Iletisim bilgilerini sunmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Category of contact type. For example: Home address, Home telephone, Cell phone etc.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"contactInfo\":{\"description\":\"Telephone number or email address information depending on the type.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"ContactMediumCategoryLOV\":{\"title\":\"ContactMediumCategoryLOV\",\"description\":\"Contact medium kategorileri. Bir kategori tipine ait veriyi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Category Name\",\"type\":\"string\"}}},\"AddressCardDTO\":{\"title\":\"AddressCardDTO\",\"description\":\"Address bilgisini sunar. Sadece full address bilgisini ve kategorisini verir.\\n Adres kategorisine ait kategori adı bilgisi “ContactMediumType” dır.\\n Yani contact medium type \\\"iletişimde bulunulacak adresler\\\" bilgisini ifade eder.\",\"type\":\"object\",\"properties\":{\"addressCategory\":{\"description\":\"Address kategorisi\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Full address. İl ilçe mahalle sokak gibi bütün bilgileri içerir.\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/FormalEducationGradeInfoDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"elit occaecat amet velit consequat\",\n \"createdDate\": \"1985-12-17T05:54:06.784Z\",\n \"departmentName\": \"commodo cillum est nostrud\",\n \"educationLangId\": -1807683,\n \"educationStageId\": 27885288,\n \"educationalGradeId\": -44628890,\n \"lastModifiedBy\": \"pariatur\",\n \"lastModifiedDate\": \"1973-07-14T17:30:50.395Z\",\n \"schoolId\": -46425445,\n \"termId\": 82740087\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"FormalEducationalGradeInfoCreateDTO\",\"description\":\"Bir kisiye ait yeni bir örgün eğitim dönemi tanımlarken kullanılır. Kişinin eğitim bilgisi ( hangi okulda hangi bölümü ne zaman okumuş vb. ) eğitim dönemlerine bölünerek tutulmaktadır. Bu dto tek bir eğitim dönemi oluşturmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"departmentName\":{\"description\":\"Eğitim gördüğü fakülte ve bölüm bilgisi\",\"type\":\"string\"},\"educationLangId\":{\"format\":\"int64\",\"description\":\"Döneme ait eğitim dili bilgisi.\",\"type\":\"integer\"},\"educationStageId\":{\"format\":\"int64\",\"description\":\"Eğitim görülen kademe. Lisans, yüksek lisans, lise vb.\",\"type\":\"integer\"},\"educationalGradeId\":{\"format\":\"int64\",\"description\":\"Eğitim sınıfı bilgisi. \",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"schoolId\":{\"format\":\"int64\",\"description\":\"Eğitim görülen okul bilgisi\",\"type\":\"integer\"},\"termId\":{\"format\":\"int64\",\"description\":\"Eğitim dönemi bilgisi.\",\"type\":\"integer\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/FormalEducationalGradeInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"nulla cupidatat est\",\n \"createdDate\": \"1976-04-26T15:14:50.686Z\",\n \"departmentName\": \"sint labore\",\n \"educationLangId\": 67683401,\n \"educationStageId\": 68982172,\n \"educationalGradeId\": 54677873,\n \"lastModifiedBy\": \"consectetur irure mollit\",\n \"lastModifiedDate\": \"1962-08-24T00:31:08.884Z\",\n \"schoolId\": -3778838,\n \"termId\": 39169585\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"FormalEducationalGradeInfoCreateDTO\",\"description\":\"Bir kisiye ait yeni bir örgün eğitim dönemi tanımlarken kullanılır. Kişinin eğitim bilgisi ( hangi okulda hangi bölümü ne zaman okumuş vb. ) eğitim dönemlerine bölünerek tutulmaktadır. Bu dto tek bir eğitim dönemi oluşturmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"departmentName\":{\"description\":\"Eğitim gördüğü fakülte ve bölüm bilgisi\",\"type\":\"string\"},\"educationLangId\":{\"format\":\"int64\",\"description\":\"Döneme ait eğitim dili bilgisi.\",\"type\":\"integer\"},\"educationStageId\":{\"format\":\"int64\",\"description\":\"Eğitim görülen kademe. Lisans, yüksek lisans, lise vb.\",\"type\":\"integer\"},\"educationalGradeId\":{\"format\":\"int64\",\"description\":\"Eğitim sınıfı bilgisi. \",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"schoolId\":{\"format\":\"int64\",\"description\":\"Eğitim görülen okul bilgisi\",\"type\":\"integer\"},\"termId\":{\"format\":\"int64\",\"description\":\"Eğitim dönemi bilgisi.\",\"type\":\"integer\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/FormalEducationalGradeInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"pariatur laboris cillum occaecat aliqua\",\n \"createdDate\": \"1997-12-17T02:53:35.316Z\",\n \"departmentName\": \"ut\",\n \"educationLangId\": -51789252,\n \"educationStageId\": -41408690,\n \"educationalGradeId\": -92697557,\n \"lastModifiedBy\": \"nulla tempor et sint\",\n \"lastModifiedDate\": \"1948-02-27T22:30:20.283Z\",\n \"schoolId\": -62301351,\n \"termId\": 47710158\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"FormalEducationalGradeInfoCreateDTO\",\"description\":\"Bir kisiye ait yeni bir örgün eğitim dönemi tanımlarken kullanılır. Kişinin eğitim bilgisi ( hangi okulda hangi bölümü ne zaman okumuş vb. ) eğitim dönemlerine bölünerek tutulmaktadır. Bu dto tek bir eğitim dönemi oluşturmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"departmentName\":{\"description\":\"Eğitim gördüğü fakülte ve bölüm bilgisi\",\"type\":\"string\"},\"educationLangId\":{\"format\":\"int64\",\"description\":\"Döneme ait eğitim dili bilgisi.\",\"type\":\"integer\"},\"educationStageId\":{\"format\":\"int64\",\"description\":\"Eğitim görülen kademe. Lisans, yüksek lisans, lise vb.\",\"type\":\"integer\"},\"educationalGradeId\":{\"format\":\"int64\",\"description\":\"Eğitim sınıfı bilgisi. \",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"schoolId\":{\"format\":\"int64\",\"description\":\"Eğitim görülen okul bilgisi\",\"type\":\"integer\"},\"termId\":{\"format\":\"int64\",\"description\":\"Eğitim dönemi bilgisi.\",\"type\":\"integer\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/FormalEducationalGradeInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"volup\",\n \"createdDate\": \"1973-01-27T19:21:53.065Z\",\n \"departmentName\": \"deserunt nulla voluptate aute pari\",\n \"educationLangId\": -38717386,\n \"educationStageId\": 71665489,\n \"educationalGradeId\": 86272689,\n \"lastModifiedBy\": \"sit Ut reprehenderit\",\n \"lastModifiedDate\": \"1997-06-27T18:05:20.488Z\",\n \"schoolId\": -42346964,\n \"termId\": 12859961\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"FormalEducationalGradeInfoCreateDTO\",\"description\":\"Bir kisiye ait yeni bir örgün eğitim dönemi tanımlarken kullanılır. Kişinin eğitim bilgisi ( hangi okulda hangi bölümü ne zaman okumuş vb. ) eğitim dönemlerine bölünerek tutulmaktadır. Bu dto tek bir eğitim dönemi oluşturmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"departmentName\":{\"description\":\"Eğitim gördüğü fakülte ve bölüm bilgisi\",\"type\":\"string\"},\"educationLangId\":{\"format\":\"int64\",\"description\":\"Döneme ait eğitim dili bilgisi.\",\"type\":\"integer\"},\"educationStageId\":{\"format\":\"int64\",\"description\":\"Eğitim görülen kademe. Lisans, yüksek lisans, lise vb.\",\"type\":\"integer\"},\"educationalGradeId\":{\"format\":\"int64\",\"description\":\"Eğitim sınıfı bilgisi. \",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"schoolId\":{\"format\":\"int64\",\"description\":\"Eğitim görülen okul bilgisi\",\"type\":\"integer\"},\"termId\":{\"format\":\"int64\",\"description\":\"Eğitim dönemi bilgisi.\",\"type\":\"integer\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/FormalEducationalGradeInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"Lorem Excepteur ex eiusmod elit\",\n \"createdDate\": \"1954-07-23T22:03:11.094Z\",\n \"departmentName\": \"mollit co\",\n \"educationLangId\": -59583996,\n \"educationStageId\": -46823639,\n \"educationalGradeId\": 88764784,\n \"lastModifiedBy\": \"in occaecat Duis ipsum amet\",\n \"lastModifiedDate\": \"1986-09-22T09:56:30.056Z\",\n \"schoolId\": 19209812,\n \"termId\": -88105507\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"FormalEducationalGradeInfoCreateDTO\",\"description\":\"Bir kisiye ait yeni bir örgün eğitim dönemi tanımlarken kullanılır. Kişinin eğitim bilgisi ( hangi okulda hangi bölümü ne zaman okumuş vb. ) eğitim dönemlerine bölünerek tutulmaktadır. Bu dto tek bir eğitim dönemi oluşturmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"departmentName\":{\"description\":\"Eğitim gördüğü fakülte ve bölüm bilgisi\",\"type\":\"string\"},\"educationLangId\":{\"format\":\"int64\",\"description\":\"Döneme ait eğitim dili bilgisi.\",\"type\":\"integer\"},\"educationStageId\":{\"format\":\"int64\",\"description\":\"Eğitim görülen kademe. Lisans, yüksek lisans, lise vb.\",\"type\":\"integer\"},\"educationalGradeId\":{\"format\":\"int64\",\"description\":\"Eğitim sınıfı bilgisi. \",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"schoolId\":{\"format\":\"int64\",\"description\":\"Eğitim görülen okul bilgisi\",\"type\":\"integer\"},\"termId\":{\"format\":\"int64\",\"description\":\"Eğitim dönemi bilgisi.\",\"type\":\"integer\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/FormalEducationalGradeInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz." + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "formalEducationId" + }, + "value": { + "element": "number" + } + } + } + ] + }, + "href": { + "element": "string", + "content": "/api/sbt/students/{id}/education/formal/old/{formalEducationId}" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Talebenin geçmiş dönem eğitim kayıtlarından tekini görüntülemek için kullanılır." + }, + "id": { + "element": "string", + "content": "getStudentEducationFormalOld" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "formalEducationId" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Talebenin geçmiş dönem eğitim kayıtlarından tekini görüntülemek için kullanılır." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "Görüntülenmek istenen geçmiş dönem eğitim bilgisi\n" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/FormalEducationGradeInfoDTO\"}],\"definitions\":{\"FormalEducationGradeInfoDTO\":{\"title\":\"FormalEducationGradeInfoDTO\",\"description\":\"Bir kişinin aldığı eğitimin bir dönemine ait bilgileri tutmaktadır.\\n Örneğin 4 yıllık bilgisayar mühendisliği bölümünden mezun olan bir kişi için bu dto dan 4 instance tutulmalı ve şu verileri barındırmalı.\\n\\n 1 - Formal Education - Iğdır üniversitesi - Mühendislik fakültesi - Bilgisayar mühendisliği - 2010.10.01(dönem başlangıcı) - 2011.05.02( dönem bitişi )\\n 2 - Formal Education - Iğdır üniversitesi - Mühendislik fakültesi - Bilgisayar mühendisliği - 2011.10.01(dönem başlangıcı) - 2012.05.02( dönem bitişi )\\n 3 - Formal Education - Abant Izzet Baysal üniversitesi - Mühendislik ve mimarlık fakültesi - Bilgisayar mühendisliği - 2012.10.01(dönem başlangıcı) - 2013.05.02( dönem bitişi )\\n 4 - Formal Education - Abant Izzet Baysal üniversitesi - Mühendislik ve mimarlık fakültesi - Bilgisayar mühendisliği - 2013.10.01(dönem başlangıcı) - 2014.05.02( dönem bitişi )\\n\\n Yukarıdaki örnekteki tek bir satırı bu dto tutmaktadır.\\n Kişi sonuç olarak Abant izzet baysal üniversitesi bilgisayar mühendisliği diplomasına sahip olsada dönemsel olarak eğitim verileri bu şekildedir.\\n\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"department\":{\"description\":\"Fakulte ve Bölüm bilgileri yer alır. Örneğin : Sosyal bilimler MYO - Pazarlama bölümü\",\"type\":\"string\"},\"educationLangName\":{\"description\":\"The language name used while learning\",\"type\":\"string\"},\"educationStageName\":{\"description\":\"Education stage. For example : Associate degree, Licanse degree etc.. \",\"type\":\"string\"},\"educationalGradeName\":{\"description\":\"Sınıf seviye adi\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"school\":{\"$ref\":\"#/definitions/SchoolProfileDTO\"},\"term\":{\"$ref\":\"#/definitions/EducationalTermDTO\"}}},\"EducationalTermDTO\":{\"title\":\"EducationalTermDTO\",\"description\":\"Bir eğitim döneminin tanımını tutar. Örneğin 2018-2019 Eğitim öğretim dönemi gibi.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"endDate\":{\"format\":\"date-time\",\"description\":\"Donem bitis tarihi\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Dönem adı\",\"type\":\"string\"},\"startDate\":{\"format\":\"date-time\",\"description\":\"Donem baslangic tarihi\",\"type\":\"string\"}}},\"SchoolProfileDTO\":{\"title\":\"SchoolProfileDTO\",\"description\":\"Bir okula ait bilgileri tutar. İlk okul - orta okul - lise - üniversite tipinde okulların tanımlarının yapıldığı modeldir.\",\"type\":\"object\",\"properties\":{\"address\":{\"description\":\"Okul adresi\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/AddressCardDTO\"}},\"contacts\":{\"description\":\"Iletisim bilgileri. Telefon mail vb.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactInfoDTO\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Okul adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"},\"type\":{\"$ref\":\"#/definitions/EducationalStageLOV\"}}},\"EducationalStageLOV\":{\"title\":\"EducationalStageLOV\",\"description\":\"Eğitim kategorilerini tutar. Örneğin; Ön lisans, Lisans vb.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Name information\",\"type\":\"string\"}}},\"ContactInfoDTO\":{\"title\":\"ContactInfoDTO\",\"description\":\"Iletisim bilgilerini sunmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Category of contact type. For example: Home address, Home telephone, Cell phone etc.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"contactInfo\":{\"description\":\"Telephone number or email address information depending on the type.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"ContactMediumCategoryLOV\":{\"title\":\"ContactMediumCategoryLOV\",\"description\":\"Contact medium kategorileri. Bir kategori tipine ait veriyi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Category Name\",\"type\":\"string\"}}},\"AddressCardDTO\":{\"title\":\"AddressCardDTO\",\"description\":\"Address bilgisini sunar. Sadece full address bilgisini ve kategorisini verir.\\n Adres kategorisine ait kategori adı bilgisi “ContactMediumType” dır.\\n Yani contact medium type \\\"iletişimde bulunulacak adresler\\\" bilgisini ifade eder.\",\"type\":\"object\",\"properties\":{\"addressCategory\":{\"description\":\"Address kategorisi\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Full address. İl ilçe mahalle sokak gibi bütün bilgileri içerir.\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/FormalEducationGradeInfoDTO" + } + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Geçmiş Kayıtları... Talebenin bir örgün eğitim dönemini günceller. Geçmiş dönem örgün eğitim dönemini günceller. Aktif dönemi güncellemeye çalıştığında hata vermelidir." + }, + "id": { + "element": "string", + "content": "updateStudentFormalEducationOldInfo" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Students Formal education id" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "formalEducationId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Student ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Talebenin örgün eğitim bilgilerini günceller" + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"sint proident\",\n \"createdDate\": \"2010-05-24T20:06:53.343Z\",\n \"departmentName\": \"in\",\n \"educationLangId\": 52742750,\n \"educationStageId\": 36194872,\n \"educationalGradeId\": -99113690,\n \"lastModifiedBy\": \"el\",\n \"lastModifiedDate\": \"1984-07-19T22:20:43.447Z\",\n \"schoolId\": 72006815,\n \"termId\": 17317206\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"FormalEducationalGradeInfoCreateDTO\",\"description\":\"Bir kisiye ait yeni bir örgün eğitim dönemi tanımlarken kullanılır. Kişinin eğitim bilgisi ( hangi okulda hangi bölümü ne zaman okumuş vb. ) eğitim dönemlerine bölünerek tutulmaktadır. Bu dto tek bir eğitim dönemi oluşturmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"departmentName\":{\"description\":\"Eğitim gördüğü fakülte ve bölüm bilgisi\",\"type\":\"string\"},\"educationLangId\":{\"format\":\"int64\",\"description\":\"Döneme ait eğitim dili bilgisi.\",\"type\":\"integer\"},\"educationStageId\":{\"format\":\"int64\",\"description\":\"Eğitim görülen kademe. Lisans, yüksek lisans, lise vb.\",\"type\":\"integer\"},\"educationalGradeId\":{\"format\":\"int64\",\"description\":\"Eğitim sınıfı bilgisi. \",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"schoolId\":{\"format\":\"int64\",\"description\":\"Eğitim görülen okul bilgisi\",\"type\":\"integer\"},\"termId\":{\"format\":\"int64\",\"description\":\"Eğitim dönemi bilgisi.\",\"type\":\"integer\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/FormalEducationalGradeInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/FormalEducationGradeInfoDTO\"}],\"definitions\":{\"FormalEducationGradeInfoDTO\":{\"title\":\"FormalEducationGradeInfoDTO\",\"description\":\"Bir kişinin aldığı eğitimin bir dönemine ait bilgileri tutmaktadır.\\n Örneğin 4 yıllık bilgisayar mühendisliği bölümünden mezun olan bir kişi için bu dto dan 4 instance tutulmalı ve şu verileri barındırmalı.\\n\\n 1 - Formal Education - Iğdır üniversitesi - Mühendislik fakültesi - Bilgisayar mühendisliği - 2010.10.01(dönem başlangıcı) - 2011.05.02( dönem bitişi )\\n 2 - Formal Education - Iğdır üniversitesi - Mühendislik fakültesi - Bilgisayar mühendisliği - 2011.10.01(dönem başlangıcı) - 2012.05.02( dönem bitişi )\\n 3 - Formal Education - Abant Izzet Baysal üniversitesi - Mühendislik ve mimarlık fakültesi - Bilgisayar mühendisliği - 2012.10.01(dönem başlangıcı) - 2013.05.02( dönem bitişi )\\n 4 - Formal Education - Abant Izzet Baysal üniversitesi - Mühendislik ve mimarlık fakültesi - Bilgisayar mühendisliği - 2013.10.01(dönem başlangıcı) - 2014.05.02( dönem bitişi )\\n\\n Yukarıdaki örnekteki tek bir satırı bu dto tutmaktadır.\\n Kişi sonuç olarak Abant izzet baysal üniversitesi bilgisayar mühendisliği diplomasına sahip olsada dönemsel olarak eğitim verileri bu şekildedir.\\n\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"department\":{\"description\":\"Fakulte ve Bölüm bilgileri yer alır. Örneğin : Sosyal bilimler MYO - Pazarlama bölümü\",\"type\":\"string\"},\"educationLangName\":{\"description\":\"The language name used while learning\",\"type\":\"string\"},\"educationStageName\":{\"description\":\"Education stage. For example : Associate degree, Licanse degree etc.. \",\"type\":\"string\"},\"educationalGradeName\":{\"description\":\"Sınıf seviye adi\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"school\":{\"$ref\":\"#/definitions/SchoolProfileDTO\"},\"term\":{\"$ref\":\"#/definitions/EducationalTermDTO\"}}},\"EducationalTermDTO\":{\"title\":\"EducationalTermDTO\",\"description\":\"Bir eğitim döneminin tanımını tutar. Örneğin 2018-2019 Eğitim öğretim dönemi gibi.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"endDate\":{\"format\":\"date-time\",\"description\":\"Donem bitis tarihi\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Dönem adı\",\"type\":\"string\"},\"startDate\":{\"format\":\"date-time\",\"description\":\"Donem baslangic tarihi\",\"type\":\"string\"}}},\"SchoolProfileDTO\":{\"title\":\"SchoolProfileDTO\",\"description\":\"Bir okula ait bilgileri tutar. İlk okul - orta okul - lise - üniversite tipinde okulların tanımlarının yapıldığı modeldir.\",\"type\":\"object\",\"properties\":{\"address\":{\"description\":\"Okul adresi\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/AddressCardDTO\"}},\"contacts\":{\"description\":\"Iletisim bilgileri. Telefon mail vb.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactInfoDTO\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Okul adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"},\"type\":{\"$ref\":\"#/definitions/EducationalStageLOV\"}}},\"EducationalStageLOV\":{\"title\":\"EducationalStageLOV\",\"description\":\"Eğitim kategorilerini tutar. Örneğin; Ön lisans, Lisans vb.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Name information\",\"type\":\"string\"}}},\"ContactInfoDTO\":{\"title\":\"ContactInfoDTO\",\"description\":\"Iletisim bilgilerini sunmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Category of contact type. For example: Home address, Home telephone, Cell phone etc.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"contactInfo\":{\"description\":\"Telephone number or email address information depending on the type.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"ContactMediumCategoryLOV\":{\"title\":\"ContactMediumCategoryLOV\",\"description\":\"Contact medium kategorileri. Bir kategori tipine ait veriyi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Category Name\",\"type\":\"string\"}}},\"AddressCardDTO\":{\"title\":\"AddressCardDTO\",\"description\":\"Address bilgisini sunar. Sadece full address bilgisini ve kategorisini verir.\\n Adres kategorisine ait kategori adı bilgisi “ContactMediumType” dır.\\n Yani contact medium type \\\"iletişimde bulunulacak adresler\\\" bilgisini ifade eder.\",\"type\":\"object\",\"properties\":{\"addressCategory\":{\"description\":\"Address kategorisi\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Full address. İl ilçe mahalle sokak gibi bütün bilgileri içerir.\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/FormalEducationGradeInfoDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"fugiat eu laboris irure\",\n \"createdDate\": \"1942-03-24T08:09:18.161Z\",\n \"departmentName\": \"occaecat ad laborum\",\n \"educationLangId\": 51175032,\n \"educationStageId\": -58651324,\n \"educationalGradeId\": 59279594,\n \"lastModifiedBy\": \"incididunt\",\n \"lastModifiedDate\": \"1989-06-07T05:45:04.826Z\",\n \"schoolId\": -14955476,\n \"termId\": -90209851\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"FormalEducationalGradeInfoCreateDTO\",\"description\":\"Bir kisiye ait yeni bir örgün eğitim dönemi tanımlarken kullanılır. Kişinin eğitim bilgisi ( hangi okulda hangi bölümü ne zaman okumuş vb. ) eğitim dönemlerine bölünerek tutulmaktadır. Bu dto tek bir eğitim dönemi oluşturmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"departmentName\":{\"description\":\"Eğitim gördüğü fakülte ve bölüm bilgisi\",\"type\":\"string\"},\"educationLangId\":{\"format\":\"int64\",\"description\":\"Döneme ait eğitim dili bilgisi.\",\"type\":\"integer\"},\"educationStageId\":{\"format\":\"int64\",\"description\":\"Eğitim görülen kademe. Lisans, yüksek lisans, lise vb.\",\"type\":\"integer\"},\"educationalGradeId\":{\"format\":\"int64\",\"description\":\"Eğitim sınıfı bilgisi. \",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"schoolId\":{\"format\":\"int64\",\"description\":\"Eğitim görülen okul bilgisi\",\"type\":\"integer\"},\"termId\":{\"format\":\"int64\",\"description\":\"Eğitim dönemi bilgisi.\",\"type\":\"integer\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/FormalEducationalGradeInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"consequat dolor do q\",\n \"createdDate\": \"1954-05-17T21:53:14.466Z\",\n \"departmentName\": \"culpa magna\",\n \"educationLangId\": 26570751,\n \"educationStageId\": -25452632,\n \"educationalGradeId\": -99813709,\n \"lastModifiedBy\": \"id dolore Lorem proident\",\n \"lastModifiedDate\": \"1965-05-24T02:15:58.612Z\",\n \"schoolId\": 6994131,\n \"termId\": 66550392\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"FormalEducationalGradeInfoCreateDTO\",\"description\":\"Bir kisiye ait yeni bir örgün eğitim dönemi tanımlarken kullanılır. Kişinin eğitim bilgisi ( hangi okulda hangi bölümü ne zaman okumuş vb. ) eğitim dönemlerine bölünerek tutulmaktadır. Bu dto tek bir eğitim dönemi oluşturmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"departmentName\":{\"description\":\"Eğitim gördüğü fakülte ve bölüm bilgisi\",\"type\":\"string\"},\"educationLangId\":{\"format\":\"int64\",\"description\":\"Döneme ait eğitim dili bilgisi.\",\"type\":\"integer\"},\"educationStageId\":{\"format\":\"int64\",\"description\":\"Eğitim görülen kademe. Lisans, yüksek lisans, lise vb.\",\"type\":\"integer\"},\"educationalGradeId\":{\"format\":\"int64\",\"description\":\"Eğitim sınıfı bilgisi. \",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"schoolId\":{\"format\":\"int64\",\"description\":\"Eğitim görülen okul bilgisi\",\"type\":\"integer\"},\"termId\":{\"format\":\"int64\",\"description\":\"Eğitim dönemi bilgisi.\",\"type\":\"integer\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/FormalEducationalGradeInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "202" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/FormalEducationGradeInfoDTO\"}],\"definitions\":{\"FormalEducationGradeInfoDTO\":{\"title\":\"FormalEducationGradeInfoDTO\",\"description\":\"Bir kişinin aldığı eğitimin bir dönemine ait bilgileri tutmaktadır.\\n Örneğin 4 yıllık bilgisayar mühendisliği bölümünden mezun olan bir kişi için bu dto dan 4 instance tutulmalı ve şu verileri barındırmalı.\\n\\n 1 - Formal Education - Iğdır üniversitesi - Mühendislik fakültesi - Bilgisayar mühendisliği - 2010.10.01(dönem başlangıcı) - 2011.05.02( dönem bitişi )\\n 2 - Formal Education - Iğdır üniversitesi - Mühendislik fakültesi - Bilgisayar mühendisliği - 2011.10.01(dönem başlangıcı) - 2012.05.02( dönem bitişi )\\n 3 - Formal Education - Abant Izzet Baysal üniversitesi - Mühendislik ve mimarlık fakültesi - Bilgisayar mühendisliği - 2012.10.01(dönem başlangıcı) - 2013.05.02( dönem bitişi )\\n 4 - Formal Education - Abant Izzet Baysal üniversitesi - Mühendislik ve mimarlık fakültesi - Bilgisayar mühendisliği - 2013.10.01(dönem başlangıcı) - 2014.05.02( dönem bitişi )\\n\\n Yukarıdaki örnekteki tek bir satırı bu dto tutmaktadır.\\n Kişi sonuç olarak Abant izzet baysal üniversitesi bilgisayar mühendisliği diplomasına sahip olsada dönemsel olarak eğitim verileri bu şekildedir.\\n\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"department\":{\"description\":\"Fakulte ve Bölüm bilgileri yer alır. Örneğin : Sosyal bilimler MYO - Pazarlama bölümü\",\"type\":\"string\"},\"educationLangName\":{\"description\":\"The language name used while learning\",\"type\":\"string\"},\"educationStageName\":{\"description\":\"Education stage. For example : Associate degree, Licanse degree etc.. \",\"type\":\"string\"},\"educationalGradeName\":{\"description\":\"Sınıf seviye adi\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"school\":{\"$ref\":\"#/definitions/SchoolProfileDTO\"},\"term\":{\"$ref\":\"#/definitions/EducationalTermDTO\"}}},\"EducationalTermDTO\":{\"title\":\"EducationalTermDTO\",\"description\":\"Bir eğitim döneminin tanımını tutar. Örneğin 2018-2019 Eğitim öğretim dönemi gibi.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"endDate\":{\"format\":\"date-time\",\"description\":\"Donem bitis tarihi\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Dönem adı\",\"type\":\"string\"},\"startDate\":{\"format\":\"date-time\",\"description\":\"Donem baslangic tarihi\",\"type\":\"string\"}}},\"SchoolProfileDTO\":{\"title\":\"SchoolProfileDTO\",\"description\":\"Bir okula ait bilgileri tutar. İlk okul - orta okul - lise - üniversite tipinde okulların tanımlarının yapıldığı modeldir.\",\"type\":\"object\",\"properties\":{\"address\":{\"description\":\"Okul adresi\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/AddressCardDTO\"}},\"contacts\":{\"description\":\"Iletisim bilgileri. Telefon mail vb.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactInfoDTO\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Okul adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"},\"type\":{\"$ref\":\"#/definitions/EducationalStageLOV\"}}},\"EducationalStageLOV\":{\"title\":\"EducationalStageLOV\",\"description\":\"Eğitim kategorilerini tutar. Örneğin; Ön lisans, Lisans vb.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Name information\",\"type\":\"string\"}}},\"ContactInfoDTO\":{\"title\":\"ContactInfoDTO\",\"description\":\"Iletisim bilgilerini sunmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Category of contact type. For example: Home address, Home telephone, Cell phone etc.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"contactInfo\":{\"description\":\"Telephone number or email address information depending on the type.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"ContactMediumCategoryLOV\":{\"title\":\"ContactMediumCategoryLOV\",\"description\":\"Contact medium kategorileri. Bir kategori tipine ait veriyi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Category Name\",\"type\":\"string\"}}},\"AddressCardDTO\":{\"title\":\"AddressCardDTO\",\"description\":\"Address bilgisini sunar. Sadece full address bilgisini ve kategorisini verir.\\n Adres kategorisine ait kategori adı bilgisi “ContactMediumType” dır.\\n Yani contact medium type \\\"iletişimde bulunulacak adresler\\\" bilgisini ifade eder.\",\"type\":\"object\",\"properties\":{\"addressCategory\":{\"description\":\"Address kategorisi\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Full address. İl ilçe mahalle sokak gibi bütün bilgileri içerir.\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/FormalEducationGradeInfoDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"veniam minim\",\n \"createdDate\": \"1969-01-15T12:01:35.609Z\",\n \"departmentName\": \"do veniam\",\n \"educationLangId\": -77540722,\n \"educationStageId\": -4266433,\n \"educationalGradeId\": 83158250,\n \"lastModifiedBy\": \"in sit qui dolore\",\n \"lastModifiedDate\": \"1956-06-26T21:37:10.254Z\",\n \"schoolId\": -32375444,\n \"termId\": 82703889\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"FormalEducationalGradeInfoCreateDTO\",\"description\":\"Bir kisiye ait yeni bir örgün eğitim dönemi tanımlarken kullanılır. Kişinin eğitim bilgisi ( hangi okulda hangi bölümü ne zaman okumuş vb. ) eğitim dönemlerine bölünerek tutulmaktadır. Bu dto tek bir eğitim dönemi oluşturmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"departmentName\":{\"description\":\"Eğitim gördüğü fakülte ve bölüm bilgisi\",\"type\":\"string\"},\"educationLangId\":{\"format\":\"int64\",\"description\":\"Döneme ait eğitim dili bilgisi.\",\"type\":\"integer\"},\"educationStageId\":{\"format\":\"int64\",\"description\":\"Eğitim görülen kademe. Lisans, yüksek lisans, lise vb.\",\"type\":\"integer\"},\"educationalGradeId\":{\"format\":\"int64\",\"description\":\"Eğitim sınıfı bilgisi. \",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"schoolId\":{\"format\":\"int64\",\"description\":\"Eğitim görülen okul bilgisi\",\"type\":\"integer\"},\"termId\":{\"format\":\"int64\",\"description\":\"Eğitim dönemi bilgisi.\",\"type\":\"integer\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/FormalEducationalGradeInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"ad ex\",\n \"createdDate\": \"1988-12-15T21:04:52.237Z\",\n \"departmentName\": \"qui aute\",\n \"educationLangId\": -43570342,\n \"educationStageId\": 90191108,\n \"educationalGradeId\": 22322692,\n \"lastModifiedBy\": \"Lorem consequat pariatur\",\n \"lastModifiedDate\": \"2015-05-08T08:47:55.221Z\",\n \"schoolId\": 29952111,\n \"termId\": -82094096\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"FormalEducationalGradeInfoCreateDTO\",\"description\":\"Bir kisiye ait yeni bir örgün eğitim dönemi tanımlarken kullanılır. Kişinin eğitim bilgisi ( hangi okulda hangi bölümü ne zaman okumuş vb. ) eğitim dönemlerine bölünerek tutulmaktadır. Bu dto tek bir eğitim dönemi oluşturmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"departmentName\":{\"description\":\"Eğitim gördüğü fakülte ve bölüm bilgisi\",\"type\":\"string\"},\"educationLangId\":{\"format\":\"int64\",\"description\":\"Döneme ait eğitim dili bilgisi.\",\"type\":\"integer\"},\"educationStageId\":{\"format\":\"int64\",\"description\":\"Eğitim görülen kademe. Lisans, yüksek lisans, lise vb.\",\"type\":\"integer\"},\"educationalGradeId\":{\"format\":\"int64\",\"description\":\"Eğitim sınıfı bilgisi. \",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"schoolId\":{\"format\":\"int64\",\"description\":\"Eğitim görülen okul bilgisi\",\"type\":\"integer\"},\"termId\":{\"format\":\"int64\",\"description\":\"Eğitim dönemi bilgisi.\",\"type\":\"integer\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/FormalEducationalGradeInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"ullamco \",\n \"createdDate\": \"2017-08-16T20:20:57.670Z\",\n \"departmentName\": \"non sit ullamco sunt adipisicing\",\n \"educationLangId\": -11678717,\n \"educationStageId\": -47076688,\n \"educationalGradeId\": 44639757,\n \"lastModifiedBy\": \"Lorem anim dolore voluptate\",\n \"lastModifiedDate\": \"1957-09-06T19:16:53.750Z\",\n \"schoolId\": 40536425,\n \"termId\": 70721925\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"FormalEducationalGradeInfoCreateDTO\",\"description\":\"Bir kisiye ait yeni bir örgün eğitim dönemi tanımlarken kullanılır. Kişinin eğitim bilgisi ( hangi okulda hangi bölümü ne zaman okumuş vb. ) eğitim dönemlerine bölünerek tutulmaktadır. Bu dto tek bir eğitim dönemi oluşturmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"departmentName\":{\"description\":\"Eğitim gördüğü fakülte ve bölüm bilgisi\",\"type\":\"string\"},\"educationLangId\":{\"format\":\"int64\",\"description\":\"Döneme ait eğitim dili bilgisi.\",\"type\":\"integer\"},\"educationStageId\":{\"format\":\"int64\",\"description\":\"Eğitim görülen kademe. Lisans, yüksek lisans, lise vb.\",\"type\":\"integer\"},\"educationalGradeId\":{\"format\":\"int64\",\"description\":\"Eğitim sınıfı bilgisi. \",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"schoolId\":{\"format\":\"int64\",\"description\":\"Eğitim görülen okul bilgisi\",\"type\":\"integer\"},\"termId\":{\"format\":\"int64\",\"description\":\"Eğitim dönemi bilgisi.\",\"type\":\"integer\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/FormalEducationalGradeInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"esse aute aliquip\",\n \"createdDate\": \"1944-09-30T05:58:04.561Z\",\n \"departmentName\": \"aute amet est\",\n \"educationLangId\": -72258817,\n \"educationStageId\": 32374499,\n \"educationalGradeId\": -36638141,\n \"lastModifiedBy\": \"Ut esse ea \",\n \"lastModifiedDate\": \"1951-09-02T05:01:18.517Z\",\n \"schoolId\": 34130055,\n \"termId\": -57290521\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"FormalEducationalGradeInfoCreateDTO\",\"description\":\"Bir kisiye ait yeni bir örgün eğitim dönemi tanımlarken kullanılır. Kişinin eğitim bilgisi ( hangi okulda hangi bölümü ne zaman okumuş vb. ) eğitim dönemlerine bölünerek tutulmaktadır. Bu dto tek bir eğitim dönemi oluşturmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"departmentName\":{\"description\":\"Eğitim gördüğü fakülte ve bölüm bilgisi\",\"type\":\"string\"},\"educationLangId\":{\"format\":\"int64\",\"description\":\"Döneme ait eğitim dili bilgisi.\",\"type\":\"integer\"},\"educationStageId\":{\"format\":\"int64\",\"description\":\"Eğitim görülen kademe. Lisans, yüksek lisans, lise vb.\",\"type\":\"integer\"},\"educationalGradeId\":{\"format\":\"int64\",\"description\":\"Eğitim sınıfı bilgisi. \",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"schoolId\":{\"format\":\"int64\",\"description\":\"Eğitim görülen okul bilgisi\",\"type\":\"integer\"},\"termId\":{\"format\":\"int64\",\"description\":\"Eğitim dönemi bilgisi.\",\"type\":\"integer\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/FormalEducationalGradeInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"mollit\",\n \"createdDate\": \"1996-05-11T11:37:46.369Z\",\n \"departmentName\": \"aliquip do\",\n \"educationLangId\": 7746819,\n \"educationStageId\": -47659150,\n \"educationalGradeId\": -85219291,\n \"lastModifiedBy\": \"tempor eiusmod occaecat exercitation magna\",\n \"lastModifiedDate\": \"2016-01-17T17:51:11.678Z\",\n \"schoolId\": 10421946,\n \"termId\": -87612969\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"FormalEducationalGradeInfoCreateDTO\",\"description\":\"Bir kisiye ait yeni bir örgün eğitim dönemi tanımlarken kullanılır. Kişinin eğitim bilgisi ( hangi okulda hangi bölümü ne zaman okumuş vb. ) eğitim dönemlerine bölünerek tutulmaktadır. Bu dto tek bir eğitim dönemi oluşturmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"departmentName\":{\"description\":\"Eğitim gördüğü fakülte ve bölüm bilgisi\",\"type\":\"string\"},\"educationLangId\":{\"format\":\"int64\",\"description\":\"Döneme ait eğitim dili bilgisi.\",\"type\":\"integer\"},\"educationStageId\":{\"format\":\"int64\",\"description\":\"Eğitim görülen kademe. Lisans, yüksek lisans, lise vb.\",\"type\":\"integer\"},\"educationalGradeId\":{\"format\":\"int64\",\"description\":\"Eğitim sınıfı bilgisi. \",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"schoolId\":{\"format\":\"int64\",\"description\":\"Eğitim görülen okul bilgisi\",\"type\":\"integer\"},\"termId\":{\"format\":\"int64\",\"description\":\"Eğitim dönemi bilgisi.\",\"type\":\"integer\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/FormalEducationalGradeInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz. " + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Geçmiş Kayıtları... Talebenin bir örgün eğitim bilgisini siler" + }, + "id": { + "element": "string", + "content": "deleteStudentFormalEducationOldInfo" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Students Formal education id" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "formalEducationId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Student ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Talebenin örgün eğitim dönemini silmek için kullanılır." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "204" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz. " + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + }, + "href": { + "element": "string", + "content": "/api/sbt/students/{id}/education/formal/active" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Atkif Kayıtları... Talebenin örgün eğitim dönem listesini verir. Bir örgün eğitim döneminde dönem tarihi, okulu, bölümü, eğitim sınıfı, eğitim kategorisi, eğitim dili gibi bilgiler bulunur." + }, + "id": { + "element": "string", + "content": "getAllStudentFormalEducationActiveInfos" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Student ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Gets a list of all `FormalEducationInfo` entities of `Student`." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#produces-accept" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Accept" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + } + }, + { + "element": "httpResponse", + "attributes": { + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#produces-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + }, + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "List of all `FormalEducationInfo` entities of `Student`." + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "[\n {\n \"createdBy\": \"ullamco laborum labore ut\",\n \"createdDate\": \"1953-02-17T00:53:26.088Z\",\n \"department\": \"Exce\",\n \"educationLangName\": \"dolor exercitation\",\n \"educationStageName\": \"incididunt dolor voluptate magna fugiat\",\n \"educationalGradeName\": \"mollit\",\n \"id\": -45352468,\n \"lastModifiedBy\": \"cillum\",\n \"lastModifiedDate\": \"2018-09-08T07:04:03.202Z\",\n \"school\": {\n \"address\": [],\n \"contacts\": [],\n \"createdBy\": \"laboris Excepteur voluptate\",\n \"createdDate\": \"1981-11-02T16:44:49.024Z\",\n \"id\": 37620285,\n \"lastModifiedBy\": \"aliquip et\",\n \"lastModifiedDate\": \"1959-03-25T17:54:05.470Z\",\n \"name\": \"culpa dolore laborum non ad\",\n \"type\": {\n \"createdBy\": \"ipsum deserunt esse reprehenderit \",\n \"createdDate\": \"1976-10-19T05:15:57.617Z\",\n \"id\": 1632605,\n \"name\": \"qui sint\"\n }\n },\n \"term\": {\n \"createdBy\": \"quis esse veniam nulla\",\n \"createdDate\": \"1970-08-23T01:22:18.235Z\",\n \"endDate\": \"2001-11-07T23:25:09.409Z\",\n \"id\": -59547049,\n \"lastModifiedBy\": \"dolore\",\n \"lastModifiedDate\": \"1966-10-06T01:00:24.301Z\",\n \"name\": \"su\",\n \"startDate\": \"1963-07-20T07:17:14.306Z\"\n }\n }\n]" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/FormalEducationGradeInfoDTO\"},\"definitions\":{\"FormalEducationGradeInfoDTO\":{\"title\":\"FormalEducationGradeInfoDTO\",\"description\":\"Bir kişinin aldığı eğitimin bir dönemine ait bilgileri tutmaktadır.\\n Örneğin 4 yıllık bilgisayar mühendisliği bölümünden mezun olan bir kişi için bu dto dan 4 instance tutulmalı ve şu verileri barındırmalı.\\n\\n 1 - Formal Education - Iğdır üniversitesi - Mühendislik fakültesi - Bilgisayar mühendisliği - 2010.10.01(dönem başlangıcı) - 2011.05.02( dönem bitişi )\\n 2 - Formal Education - Iğdır üniversitesi - Mühendislik fakültesi - Bilgisayar mühendisliği - 2011.10.01(dönem başlangıcı) - 2012.05.02( dönem bitişi )\\n 3 - Formal Education - Abant Izzet Baysal üniversitesi - Mühendislik ve mimarlık fakültesi - Bilgisayar mühendisliği - 2012.10.01(dönem başlangıcı) - 2013.05.02( dönem bitişi )\\n 4 - Formal Education - Abant Izzet Baysal üniversitesi - Mühendislik ve mimarlık fakültesi - Bilgisayar mühendisliği - 2013.10.01(dönem başlangıcı) - 2014.05.02( dönem bitişi )\\n\\n Yukarıdaki örnekteki tek bir satırı bu dto tutmaktadır.\\n Kişi sonuç olarak Abant izzet baysal üniversitesi bilgisayar mühendisliği diplomasına sahip olsada dönemsel olarak eğitim verileri bu şekildedir.\\n\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"department\":{\"description\":\"Fakulte ve Bölüm bilgileri yer alır. Örneğin : Sosyal bilimler MYO - Pazarlama bölümü\",\"type\":\"string\"},\"educationLangName\":{\"description\":\"The language name used while learning\",\"type\":\"string\"},\"educationStageName\":{\"description\":\"Education stage. For example : Associate degree, Licanse degree etc.. \",\"type\":\"string\"},\"educationalGradeName\":{\"description\":\"Sınıf seviye adi\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"school\":{\"$ref\":\"#/definitions/SchoolProfileDTO\"},\"term\":{\"$ref\":\"#/definitions/EducationalTermDTO\"}}},\"EducationalTermDTO\":{\"title\":\"EducationalTermDTO\",\"description\":\"Bir eğitim döneminin tanımını tutar. Örneğin 2018-2019 Eğitim öğretim dönemi gibi.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"endDate\":{\"format\":\"date-time\",\"description\":\"Donem bitis tarihi\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Dönem adı\",\"type\":\"string\"},\"startDate\":{\"format\":\"date-time\",\"description\":\"Donem baslangic tarihi\",\"type\":\"string\"}}},\"SchoolProfileDTO\":{\"title\":\"SchoolProfileDTO\",\"description\":\"Bir okula ait bilgileri tutar. İlk okul - orta okul - lise - üniversite tipinde okulların tanımlarının yapıldığı modeldir.\",\"type\":\"object\",\"properties\":{\"address\":{\"description\":\"Okul adresi\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/AddressCardDTO\"}},\"contacts\":{\"description\":\"Iletisim bilgileri. Telefon mail vb.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactInfoDTO\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Okul adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"},\"type\":{\"$ref\":\"#/definitions/EducationalStageLOV\"}}},\"EducationalStageLOV\":{\"title\":\"EducationalStageLOV\",\"description\":\"Eğitim kategorilerini tutar. Örneğin; Ön lisans, Lisans vb.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Name information\",\"type\":\"string\"}}},\"ContactInfoDTO\":{\"title\":\"ContactInfoDTO\",\"description\":\"Iletisim bilgilerini sunmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Category of contact type. For example: Home address, Home telephone, Cell phone etc.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"contactInfo\":{\"description\":\"Telephone number or email address information depending on the type.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"ContactMediumCategoryLOV\":{\"title\":\"ContactMediumCategoryLOV\",\"description\":\"Contact medium kategorileri. Bir kategori tipine ait veriyi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Category Name\",\"type\":\"string\"}}},\"AddressCardDTO\":{\"title\":\"AddressCardDTO\",\"description\":\"Address bilgisini sunar. Sadece full address bilgisini ve kategorisini verir.\\n Adres kategorisine ait kategori adı bilgisi “ContactMediumType” dır.\\n Yani contact medium type \\\"iletişimde bulunulacak adresler\\\" bilgisini ifade eder.\",\"type\":\"object\",\"properties\":{\"addressCategory\":{\"description\":\"Address kategorisi\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Full address. İl ilçe mahalle sokak gibi bütün bilgileri içerir.\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/FormalEducationGradeInfoDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#produces-accept" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Accept" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + } + }, + { + "element": "httpResponse", + "attributes": { + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#produces-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + }, + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#produces-accept" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Accept" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + } + }, + { + "element": "httpResponse", + "attributes": { + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#produces-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + }, + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#produces-accept" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Accept" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + } + }, + { + "element": "httpResponse", + "attributes": { + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#produces-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + }, + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#produces-accept" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Accept" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + } + }, + { + "element": "httpResponse", + "attributes": { + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#produces-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + }, + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#produces-accept" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Accept" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + } + }, + { + "element": "httpResponse", + "attributes": { + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#produces-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + }, + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz." + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Attif Kayıtları... Talebeye yeni bir örgün eğitim dönemi bilgisi ekler." + }, + "id": { + "element": "string", + "content": "createStudentFormalEducationActiveInfo" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Student ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Talebeye yeni bir örgün eğitim dönemi ekler. Talebenin eğitim bilgileri dönem dönem tutulmaktadır. Bu servis talebenin okuduğu bir okulda geçirdiği bir dönem bilgilerini almaktadır." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"proident deserunt Lorem nulla mollit\",\n \"createdDate\": \"1979-12-29T18:57:00.022Z\",\n \"departmentName\": \"temp\",\n \"educationLangId\": -94045797,\n \"educationStageId\": 96012845,\n \"educationalGradeId\": 11505847,\n \"lastModifiedBy\": \"cillum elit est\",\n \"lastModifiedDate\": \"1957-12-03T20:38:22.219Z\",\n \"schoolId\": -65114176,\n \"termId\": 19826547\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"FormalEducationalGradeInfoCreateDTO\",\"description\":\"Bir kisiye ait yeni bir örgün eğitim dönemi tanımlarken kullanılır. Kişinin eğitim bilgisi ( hangi okulda hangi bölümü ne zaman okumuş vb. ) eğitim dönemlerine bölünerek tutulmaktadır. Bu dto tek bir eğitim dönemi oluşturmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"departmentName\":{\"description\":\"Eğitim gördüğü fakülte ve bölüm bilgisi\",\"type\":\"string\"},\"educationLangId\":{\"format\":\"int64\",\"description\":\"Döneme ait eğitim dili bilgisi.\",\"type\":\"integer\"},\"educationStageId\":{\"format\":\"int64\",\"description\":\"Eğitim görülen kademe. Lisans, yüksek lisans, lise vb.\",\"type\":\"integer\"},\"educationalGradeId\":{\"format\":\"int64\",\"description\":\"Eğitim sınıfı bilgisi. \",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"schoolId\":{\"format\":\"int64\",\"description\":\"Eğitim görülen okul bilgisi\",\"type\":\"integer\"},\"termId\":{\"format\":\"int64\",\"description\":\"Eğitim dönemi bilgisi.\",\"type\":\"integer\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/FormalEducationalGradeInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/FormalEducationGradeInfoDTO\"}],\"definitions\":{\"FormalEducationGradeInfoDTO\":{\"title\":\"FormalEducationGradeInfoDTO\",\"description\":\"Bir kişinin aldığı eğitimin bir dönemine ait bilgileri tutmaktadır.\\n Örneğin 4 yıllık bilgisayar mühendisliği bölümünden mezun olan bir kişi için bu dto dan 4 instance tutulmalı ve şu verileri barındırmalı.\\n\\n 1 - Formal Education - Iğdır üniversitesi - Mühendislik fakültesi - Bilgisayar mühendisliği - 2010.10.01(dönem başlangıcı) - 2011.05.02( dönem bitişi )\\n 2 - Formal Education - Iğdır üniversitesi - Mühendislik fakültesi - Bilgisayar mühendisliği - 2011.10.01(dönem başlangıcı) - 2012.05.02( dönem bitişi )\\n 3 - Formal Education - Abant Izzet Baysal üniversitesi - Mühendislik ve mimarlık fakültesi - Bilgisayar mühendisliği - 2012.10.01(dönem başlangıcı) - 2013.05.02( dönem bitişi )\\n 4 - Formal Education - Abant Izzet Baysal üniversitesi - Mühendislik ve mimarlık fakültesi - Bilgisayar mühendisliği - 2013.10.01(dönem başlangıcı) - 2014.05.02( dönem bitişi )\\n\\n Yukarıdaki örnekteki tek bir satırı bu dto tutmaktadır.\\n Kişi sonuç olarak Abant izzet baysal üniversitesi bilgisayar mühendisliği diplomasına sahip olsada dönemsel olarak eğitim verileri bu şekildedir.\\n\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"department\":{\"description\":\"Fakulte ve Bölüm bilgileri yer alır. Örneğin : Sosyal bilimler MYO - Pazarlama bölümü\",\"type\":\"string\"},\"educationLangName\":{\"description\":\"The language name used while learning\",\"type\":\"string\"},\"educationStageName\":{\"description\":\"Education stage. For example : Associate degree, Licanse degree etc.. \",\"type\":\"string\"},\"educationalGradeName\":{\"description\":\"Sınıf seviye adi\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"school\":{\"$ref\":\"#/definitions/SchoolProfileDTO\"},\"term\":{\"$ref\":\"#/definitions/EducationalTermDTO\"}}},\"EducationalTermDTO\":{\"title\":\"EducationalTermDTO\",\"description\":\"Bir eğitim döneminin tanımını tutar. Örneğin 2018-2019 Eğitim öğretim dönemi gibi.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"endDate\":{\"format\":\"date-time\",\"description\":\"Donem bitis tarihi\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Dönem adı\",\"type\":\"string\"},\"startDate\":{\"format\":\"date-time\",\"description\":\"Donem baslangic tarihi\",\"type\":\"string\"}}},\"SchoolProfileDTO\":{\"title\":\"SchoolProfileDTO\",\"description\":\"Bir okula ait bilgileri tutar. İlk okul - orta okul - lise - üniversite tipinde okulların tanımlarının yapıldığı modeldir.\",\"type\":\"object\",\"properties\":{\"address\":{\"description\":\"Okul adresi\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/AddressCardDTO\"}},\"contacts\":{\"description\":\"Iletisim bilgileri. Telefon mail vb.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactInfoDTO\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Okul adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"},\"type\":{\"$ref\":\"#/definitions/EducationalStageLOV\"}}},\"EducationalStageLOV\":{\"title\":\"EducationalStageLOV\",\"description\":\"Eğitim kategorilerini tutar. Örneğin; Ön lisans, Lisans vb.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Name information\",\"type\":\"string\"}}},\"ContactInfoDTO\":{\"title\":\"ContactInfoDTO\",\"description\":\"Iletisim bilgilerini sunmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Category of contact type. For example: Home address, Home telephone, Cell phone etc.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"contactInfo\":{\"description\":\"Telephone number or email address information depending on the type.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"ContactMediumCategoryLOV\":{\"title\":\"ContactMediumCategoryLOV\",\"description\":\"Contact medium kategorileri. Bir kategori tipine ait veriyi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Category Name\",\"type\":\"string\"}}},\"AddressCardDTO\":{\"title\":\"AddressCardDTO\",\"description\":\"Address bilgisini sunar. Sadece full address bilgisini ve kategorisini verir.\\n Adres kategorisine ait kategori adı bilgisi “ContactMediumType” dır.\\n Yani contact medium type \\\"iletişimde bulunulacak adresler\\\" bilgisini ifade eder.\",\"type\":\"object\",\"properties\":{\"addressCategory\":{\"description\":\"Address kategorisi\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Full address. İl ilçe mahalle sokak gibi bütün bilgileri içerir.\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/FormalEducationGradeInfoDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"ipsum dolor\",\n \"createdDate\": \"1973-12-07T04:38:53.624Z\",\n \"departmentName\": \"in eiusmod\",\n \"educationLangId\": -67568819,\n \"educationStageId\": 9075604,\n \"educationalGradeId\": 37128609,\n \"lastModifiedBy\": \"nostrud officia eu\",\n \"lastModifiedDate\": \"1986-10-27T16:25:29.005Z\",\n \"schoolId\": 93921194,\n \"termId\": -62608164\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"FormalEducationalGradeInfoCreateDTO\",\"description\":\"Bir kisiye ait yeni bir örgün eğitim dönemi tanımlarken kullanılır. Kişinin eğitim bilgisi ( hangi okulda hangi bölümü ne zaman okumuş vb. ) eğitim dönemlerine bölünerek tutulmaktadır. Bu dto tek bir eğitim dönemi oluşturmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"departmentName\":{\"description\":\"Eğitim gördüğü fakülte ve bölüm bilgisi\",\"type\":\"string\"},\"educationLangId\":{\"format\":\"int64\",\"description\":\"Döneme ait eğitim dili bilgisi.\",\"type\":\"integer\"},\"educationStageId\":{\"format\":\"int64\",\"description\":\"Eğitim görülen kademe. Lisans, yüksek lisans, lise vb.\",\"type\":\"integer\"},\"educationalGradeId\":{\"format\":\"int64\",\"description\":\"Eğitim sınıfı bilgisi. \",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"schoolId\":{\"format\":\"int64\",\"description\":\"Eğitim görülen okul bilgisi\",\"type\":\"integer\"},\"termId\":{\"format\":\"int64\",\"description\":\"Eğitim dönemi bilgisi.\",\"type\":\"integer\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/FormalEducationalGradeInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/FormalEducationGradeInfoDTO\"}],\"definitions\":{\"FormalEducationGradeInfoDTO\":{\"title\":\"FormalEducationGradeInfoDTO\",\"description\":\"Bir kişinin aldığı eğitimin bir dönemine ait bilgileri tutmaktadır.\\n Örneğin 4 yıllık bilgisayar mühendisliği bölümünden mezun olan bir kişi için bu dto dan 4 instance tutulmalı ve şu verileri barındırmalı.\\n\\n 1 - Formal Education - Iğdır üniversitesi - Mühendislik fakültesi - Bilgisayar mühendisliği - 2010.10.01(dönem başlangıcı) - 2011.05.02( dönem bitişi )\\n 2 - Formal Education - Iğdır üniversitesi - Mühendislik fakültesi - Bilgisayar mühendisliği - 2011.10.01(dönem başlangıcı) - 2012.05.02( dönem bitişi )\\n 3 - Formal Education - Abant Izzet Baysal üniversitesi - Mühendislik ve mimarlık fakültesi - Bilgisayar mühendisliği - 2012.10.01(dönem başlangıcı) - 2013.05.02( dönem bitişi )\\n 4 - Formal Education - Abant Izzet Baysal üniversitesi - Mühendislik ve mimarlık fakültesi - Bilgisayar mühendisliği - 2013.10.01(dönem başlangıcı) - 2014.05.02( dönem bitişi )\\n\\n Yukarıdaki örnekteki tek bir satırı bu dto tutmaktadır.\\n Kişi sonuç olarak Abant izzet baysal üniversitesi bilgisayar mühendisliği diplomasına sahip olsada dönemsel olarak eğitim verileri bu şekildedir.\\n\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"department\":{\"description\":\"Fakulte ve Bölüm bilgileri yer alır. Örneğin : Sosyal bilimler MYO - Pazarlama bölümü\",\"type\":\"string\"},\"educationLangName\":{\"description\":\"The language name used while learning\",\"type\":\"string\"},\"educationStageName\":{\"description\":\"Education stage. For example : Associate degree, Licanse degree etc.. \",\"type\":\"string\"},\"educationalGradeName\":{\"description\":\"Sınıf seviye adi\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"school\":{\"$ref\":\"#/definitions/SchoolProfileDTO\"},\"term\":{\"$ref\":\"#/definitions/EducationalTermDTO\"}}},\"EducationalTermDTO\":{\"title\":\"EducationalTermDTO\",\"description\":\"Bir eğitim döneminin tanımını tutar. Örneğin 2018-2019 Eğitim öğretim dönemi gibi.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"endDate\":{\"format\":\"date-time\",\"description\":\"Donem bitis tarihi\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Dönem adı\",\"type\":\"string\"},\"startDate\":{\"format\":\"date-time\",\"description\":\"Donem baslangic tarihi\",\"type\":\"string\"}}},\"SchoolProfileDTO\":{\"title\":\"SchoolProfileDTO\",\"description\":\"Bir okula ait bilgileri tutar. İlk okul - orta okul - lise - üniversite tipinde okulların tanımlarının yapıldığı modeldir.\",\"type\":\"object\",\"properties\":{\"address\":{\"description\":\"Okul adresi\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/AddressCardDTO\"}},\"contacts\":{\"description\":\"Iletisim bilgileri. Telefon mail vb.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactInfoDTO\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Okul adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"},\"type\":{\"$ref\":\"#/definitions/EducationalStageLOV\"}}},\"EducationalStageLOV\":{\"title\":\"EducationalStageLOV\",\"description\":\"Eğitim kategorilerini tutar. Örneğin; Ön lisans, Lisans vb.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Name information\",\"type\":\"string\"}}},\"ContactInfoDTO\":{\"title\":\"ContactInfoDTO\",\"description\":\"Iletisim bilgilerini sunmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Category of contact type. For example: Home address, Home telephone, Cell phone etc.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"contactInfo\":{\"description\":\"Telephone number or email address information depending on the type.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"ContactMediumCategoryLOV\":{\"title\":\"ContactMediumCategoryLOV\",\"description\":\"Contact medium kategorileri. Bir kategori tipine ait veriyi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Category Name\",\"type\":\"string\"}}},\"AddressCardDTO\":{\"title\":\"AddressCardDTO\",\"description\":\"Address bilgisini sunar. Sadece full address bilgisini ve kategorisini verir.\\n Adres kategorisine ait kategori adı bilgisi “ContactMediumType” dır.\\n Yani contact medium type \\\"iletişimde bulunulacak adresler\\\" bilgisini ifade eder.\",\"type\":\"object\",\"properties\":{\"addressCategory\":{\"description\":\"Address kategorisi\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Full address. İl ilçe mahalle sokak gibi bütün bilgileri içerir.\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/FormalEducationGradeInfoDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"nisi in consequat enim\",\n \"createdDate\": \"1973-06-01T11:35:50.992Z\",\n \"departmentName\": \"sint\",\n \"educationLangId\": -65377742,\n \"educationStageId\": -40710419,\n \"educationalGradeId\": -83590805,\n \"lastModifiedBy\": \"\",\n \"lastModifiedDate\": \"1971-09-13T14:49:50.384Z\",\n \"schoolId\": 7870233,\n \"termId\": -13597898\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"FormalEducationalGradeInfoCreateDTO\",\"description\":\"Bir kisiye ait yeni bir örgün eğitim dönemi tanımlarken kullanılır. Kişinin eğitim bilgisi ( hangi okulda hangi bölümü ne zaman okumuş vb. ) eğitim dönemlerine bölünerek tutulmaktadır. Bu dto tek bir eğitim dönemi oluşturmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"departmentName\":{\"description\":\"Eğitim gördüğü fakülte ve bölüm bilgisi\",\"type\":\"string\"},\"educationLangId\":{\"format\":\"int64\",\"description\":\"Döneme ait eğitim dili bilgisi.\",\"type\":\"integer\"},\"educationStageId\":{\"format\":\"int64\",\"description\":\"Eğitim görülen kademe. Lisans, yüksek lisans, lise vb.\",\"type\":\"integer\"},\"educationalGradeId\":{\"format\":\"int64\",\"description\":\"Eğitim sınıfı bilgisi. \",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"schoolId\":{\"format\":\"int64\",\"description\":\"Eğitim görülen okul bilgisi\",\"type\":\"integer\"},\"termId\":{\"format\":\"int64\",\"description\":\"Eğitim dönemi bilgisi.\",\"type\":\"integer\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/FormalEducationalGradeInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"enim ipsum ad minim\",\n \"createdDate\": \"1957-01-22T14:47:49.762Z\",\n \"departmentName\": \"dolor occaecat\",\n \"educationLangId\": -6685555,\n \"educationStageId\": 6463649,\n \"educationalGradeId\": 55301093,\n \"lastModifiedBy\": \"sunt laborum minim\",\n \"lastModifiedDate\": \"1961-10-27T14:19:04.038Z\",\n \"schoolId\": -80602295,\n \"termId\": -2417158\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"FormalEducationalGradeInfoCreateDTO\",\"description\":\"Bir kisiye ait yeni bir örgün eğitim dönemi tanımlarken kullanılır. Kişinin eğitim bilgisi ( hangi okulda hangi bölümü ne zaman okumuş vb. ) eğitim dönemlerine bölünerek tutulmaktadır. Bu dto tek bir eğitim dönemi oluşturmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"departmentName\":{\"description\":\"Eğitim gördüğü fakülte ve bölüm bilgisi\",\"type\":\"string\"},\"educationLangId\":{\"format\":\"int64\",\"description\":\"Döneme ait eğitim dili bilgisi.\",\"type\":\"integer\"},\"educationStageId\":{\"format\":\"int64\",\"description\":\"Eğitim görülen kademe. Lisans, yüksek lisans, lise vb.\",\"type\":\"integer\"},\"educationalGradeId\":{\"format\":\"int64\",\"description\":\"Eğitim sınıfı bilgisi. \",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"schoolId\":{\"format\":\"int64\",\"description\":\"Eğitim görülen okul bilgisi\",\"type\":\"integer\"},\"termId\":{\"format\":\"int64\",\"description\":\"Eğitim dönemi bilgisi.\",\"type\":\"integer\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/FormalEducationalGradeInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"proident officia anim sunt\",\n \"createdDate\": \"1994-12-09T17:24:19.148Z\",\n \"departmentName\": \"voluptate laborum veniam velit mi\",\n \"educationLangId\": -20924714,\n \"educationStageId\": -12895867,\n \"educationalGradeId\": 12773080,\n \"lastModifiedBy\": \"commodo aliquip exercitation\",\n \"lastModifiedDate\": \"1976-07-04T19:53:38.418Z\",\n \"schoolId\": -55909340,\n \"termId\": 94530835\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"FormalEducationalGradeInfoCreateDTO\",\"description\":\"Bir kisiye ait yeni bir örgün eğitim dönemi tanımlarken kullanılır. Kişinin eğitim bilgisi ( hangi okulda hangi bölümü ne zaman okumuş vb. ) eğitim dönemlerine bölünerek tutulmaktadır. Bu dto tek bir eğitim dönemi oluşturmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"departmentName\":{\"description\":\"Eğitim gördüğü fakülte ve bölüm bilgisi\",\"type\":\"string\"},\"educationLangId\":{\"format\":\"int64\",\"description\":\"Döneme ait eğitim dili bilgisi.\",\"type\":\"integer\"},\"educationStageId\":{\"format\":\"int64\",\"description\":\"Eğitim görülen kademe. Lisans, yüksek lisans, lise vb.\",\"type\":\"integer\"},\"educationalGradeId\":{\"format\":\"int64\",\"description\":\"Eğitim sınıfı bilgisi. \",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"schoolId\":{\"format\":\"int64\",\"description\":\"Eğitim görülen okul bilgisi\",\"type\":\"integer\"},\"termId\":{\"format\":\"int64\",\"description\":\"Eğitim dönemi bilgisi.\",\"type\":\"integer\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/FormalEducationalGradeInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"et\",\n \"createdDate\": \"1960-10-09T05:48:49.252Z\",\n \"departmentName\": \"cupidatat ut sit elit\",\n \"educationLangId\": -38129685,\n \"educationStageId\": 74776299,\n \"educationalGradeId\": -529519,\n \"lastModifiedBy\": \"eiusmod\",\n \"lastModifiedDate\": \"1984-04-06T13:23:08.760Z\",\n \"schoolId\": -63920603,\n \"termId\": 20871928\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"FormalEducationalGradeInfoCreateDTO\",\"description\":\"Bir kisiye ait yeni bir örgün eğitim dönemi tanımlarken kullanılır. Kişinin eğitim bilgisi ( hangi okulda hangi bölümü ne zaman okumuş vb. ) eğitim dönemlerine bölünerek tutulmaktadır. Bu dto tek bir eğitim dönemi oluşturmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"departmentName\":{\"description\":\"Eğitim gördüğü fakülte ve bölüm bilgisi\",\"type\":\"string\"},\"educationLangId\":{\"format\":\"int64\",\"description\":\"Döneme ait eğitim dili bilgisi.\",\"type\":\"integer\"},\"educationStageId\":{\"format\":\"int64\",\"description\":\"Eğitim görülen kademe. Lisans, yüksek lisans, lise vb.\",\"type\":\"integer\"},\"educationalGradeId\":{\"format\":\"int64\",\"description\":\"Eğitim sınıfı bilgisi. \",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"schoolId\":{\"format\":\"int64\",\"description\":\"Eğitim görülen okul bilgisi\",\"type\":\"integer\"},\"termId\":{\"format\":\"int64\",\"description\":\"Eğitim dönemi bilgisi.\",\"type\":\"integer\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/FormalEducationalGradeInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"magna aliquip\",\n \"createdDate\": \"1956-02-04T21:24:58.030Z\",\n \"departmentName\": \"pariatur eiusmod enim\",\n \"educationLangId\": 88341215,\n \"educationStageId\": 66775709,\n \"educationalGradeId\": 29440224,\n \"lastModifiedBy\": \"do nulla qui commodo\",\n \"lastModifiedDate\": \"1972-08-21T10:03:09.641Z\",\n \"schoolId\": 16853282,\n \"termId\": 55307611\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"FormalEducationalGradeInfoCreateDTO\",\"description\":\"Bir kisiye ait yeni bir örgün eğitim dönemi tanımlarken kullanılır. Kişinin eğitim bilgisi ( hangi okulda hangi bölümü ne zaman okumuş vb. ) eğitim dönemlerine bölünerek tutulmaktadır. Bu dto tek bir eğitim dönemi oluşturmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"departmentName\":{\"description\":\"Eğitim gördüğü fakülte ve bölüm bilgisi\",\"type\":\"string\"},\"educationLangId\":{\"format\":\"int64\",\"description\":\"Döneme ait eğitim dili bilgisi.\",\"type\":\"integer\"},\"educationStageId\":{\"format\":\"int64\",\"description\":\"Eğitim görülen kademe. Lisans, yüksek lisans, lise vb.\",\"type\":\"integer\"},\"educationalGradeId\":{\"format\":\"int64\",\"description\":\"Eğitim sınıfı bilgisi. \",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"schoolId\":{\"format\":\"int64\",\"description\":\"Eğitim görülen okul bilgisi\",\"type\":\"integer\"},\"termId\":{\"format\":\"int64\",\"description\":\"Eğitim dönemi bilgisi.\",\"type\":\"integer\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/FormalEducationalGradeInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz." + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "formalEducationId" + }, + "value": { + "element": "number" + } + } + } + ] + }, + "href": { + "element": "string", + "content": "/api/sbt/students/{id}/education/formal/active/{formalEducationId}" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Aktif Kayıtlar... Talebenin geçmiş dönem eğitim kayıtlarından tekini görüntülemek için kullanılır." + }, + "id": { + "element": "string", + "content": "getStudentEducationFormalActive" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "formalEducationId" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Talebenin geçmiş dönem eğitim kayıtlarından tekini görüntülemek için kullanılır." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "Görüntülenmek istenen geçmiş dönem eğitim bilgisi\n" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/FormalEducationGradeInfoDTO\"}],\"definitions\":{\"FormalEducationGradeInfoDTO\":{\"title\":\"FormalEducationGradeInfoDTO\",\"description\":\"Bir kişinin aldığı eğitimin bir dönemine ait bilgileri tutmaktadır.\\n Örneğin 4 yıllık bilgisayar mühendisliği bölümünden mezun olan bir kişi için bu dto dan 4 instance tutulmalı ve şu verileri barındırmalı.\\n\\n 1 - Formal Education - Iğdır üniversitesi - Mühendislik fakültesi - Bilgisayar mühendisliği - 2010.10.01(dönem başlangıcı) - 2011.05.02( dönem bitişi )\\n 2 - Formal Education - Iğdır üniversitesi - Mühendislik fakültesi - Bilgisayar mühendisliği - 2011.10.01(dönem başlangıcı) - 2012.05.02( dönem bitişi )\\n 3 - Formal Education - Abant Izzet Baysal üniversitesi - Mühendislik ve mimarlık fakültesi - Bilgisayar mühendisliği - 2012.10.01(dönem başlangıcı) - 2013.05.02( dönem bitişi )\\n 4 - Formal Education - Abant Izzet Baysal üniversitesi - Mühendislik ve mimarlık fakültesi - Bilgisayar mühendisliği - 2013.10.01(dönem başlangıcı) - 2014.05.02( dönem bitişi )\\n\\n Yukarıdaki örnekteki tek bir satırı bu dto tutmaktadır.\\n Kişi sonuç olarak Abant izzet baysal üniversitesi bilgisayar mühendisliği diplomasına sahip olsada dönemsel olarak eğitim verileri bu şekildedir.\\n\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"department\":{\"description\":\"Fakulte ve Bölüm bilgileri yer alır. Örneğin : Sosyal bilimler MYO - Pazarlama bölümü\",\"type\":\"string\"},\"educationLangName\":{\"description\":\"The language name used while learning\",\"type\":\"string\"},\"educationStageName\":{\"description\":\"Education stage. For example : Associate degree, Licanse degree etc.. \",\"type\":\"string\"},\"educationalGradeName\":{\"description\":\"Sınıf seviye adi\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"school\":{\"$ref\":\"#/definitions/SchoolProfileDTO\"},\"term\":{\"$ref\":\"#/definitions/EducationalTermDTO\"}}},\"EducationalTermDTO\":{\"title\":\"EducationalTermDTO\",\"description\":\"Bir eğitim döneminin tanımını tutar. Örneğin 2018-2019 Eğitim öğretim dönemi gibi.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"endDate\":{\"format\":\"date-time\",\"description\":\"Donem bitis tarihi\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Dönem adı\",\"type\":\"string\"},\"startDate\":{\"format\":\"date-time\",\"description\":\"Donem baslangic tarihi\",\"type\":\"string\"}}},\"SchoolProfileDTO\":{\"title\":\"SchoolProfileDTO\",\"description\":\"Bir okula ait bilgileri tutar. İlk okul - orta okul - lise - üniversite tipinde okulların tanımlarının yapıldığı modeldir.\",\"type\":\"object\",\"properties\":{\"address\":{\"description\":\"Okul adresi\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/AddressCardDTO\"}},\"contacts\":{\"description\":\"Iletisim bilgileri. Telefon mail vb.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactInfoDTO\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Okul adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"},\"type\":{\"$ref\":\"#/definitions/EducationalStageLOV\"}}},\"EducationalStageLOV\":{\"title\":\"EducationalStageLOV\",\"description\":\"Eğitim kategorilerini tutar. Örneğin; Ön lisans, Lisans vb.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Name information\",\"type\":\"string\"}}},\"ContactInfoDTO\":{\"title\":\"ContactInfoDTO\",\"description\":\"Iletisim bilgilerini sunmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Category of contact type. For example: Home address, Home telephone, Cell phone etc.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"contactInfo\":{\"description\":\"Telephone number or email address information depending on the type.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"ContactMediumCategoryLOV\":{\"title\":\"ContactMediumCategoryLOV\",\"description\":\"Contact medium kategorileri. Bir kategori tipine ait veriyi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Category Name\",\"type\":\"string\"}}},\"AddressCardDTO\":{\"title\":\"AddressCardDTO\",\"description\":\"Address bilgisini sunar. Sadece full address bilgisini ve kategorisini verir.\\n Adres kategorisine ait kategori adı bilgisi “ContactMediumType” dır.\\n Yani contact medium type \\\"iletişimde bulunulacak adresler\\\" bilgisini ifade eder.\",\"type\":\"object\",\"properties\":{\"addressCategory\":{\"description\":\"Address kategorisi\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Full address. İl ilçe mahalle sokak gibi bütün bilgileri içerir.\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/FormalEducationGradeInfoDTO" + } + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Geçmiş Kayıtları... Talebenin bir örgün eğitim dönemini günceller. Geçmiş dönem örgün eğitim dönemini günceller. Aktif dönemi güncellemeye çalıştığında hata vermelidir." + }, + "id": { + "element": "string", + "content": "updateStudentFormalEducationActiveInfo" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Students Formal education id" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "formalEducationId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Student ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Talebenin örgün eğitim bilgilerini günceller" + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"aliquip deseru\",\n \"createdDate\": \"1989-03-25T02:07:24.430Z\",\n \"departmentName\": \"pariatur irure\",\n \"educationLangId\": 2298792,\n \"educationStageId\": 87177384,\n \"educationalGradeId\": -61054843,\n \"lastModifiedBy\": \"fugiat ea nulla qui\",\n \"lastModifiedDate\": \"2015-03-02T09:47:30.393Z\",\n \"schoolId\": -38636755,\n \"termId\": 74196145\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"FormalEducationalGradeInfoCreateDTO\",\"description\":\"Bir kisiye ait yeni bir örgün eğitim dönemi tanımlarken kullanılır. Kişinin eğitim bilgisi ( hangi okulda hangi bölümü ne zaman okumuş vb. ) eğitim dönemlerine bölünerek tutulmaktadır. Bu dto tek bir eğitim dönemi oluşturmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"departmentName\":{\"description\":\"Eğitim gördüğü fakülte ve bölüm bilgisi\",\"type\":\"string\"},\"educationLangId\":{\"format\":\"int64\",\"description\":\"Döneme ait eğitim dili bilgisi.\",\"type\":\"integer\"},\"educationStageId\":{\"format\":\"int64\",\"description\":\"Eğitim görülen kademe. Lisans, yüksek lisans, lise vb.\",\"type\":\"integer\"},\"educationalGradeId\":{\"format\":\"int64\",\"description\":\"Eğitim sınıfı bilgisi. \",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"schoolId\":{\"format\":\"int64\",\"description\":\"Eğitim görülen okul bilgisi\",\"type\":\"integer\"},\"termId\":{\"format\":\"int64\",\"description\":\"Eğitim dönemi bilgisi.\",\"type\":\"integer\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/FormalEducationalGradeInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/FormalEducationGradeInfoDTO\"}],\"definitions\":{\"FormalEducationGradeInfoDTO\":{\"title\":\"FormalEducationGradeInfoDTO\",\"description\":\"Bir kişinin aldığı eğitimin bir dönemine ait bilgileri tutmaktadır.\\n Örneğin 4 yıllık bilgisayar mühendisliği bölümünden mezun olan bir kişi için bu dto dan 4 instance tutulmalı ve şu verileri barındırmalı.\\n\\n 1 - Formal Education - Iğdır üniversitesi - Mühendislik fakültesi - Bilgisayar mühendisliği - 2010.10.01(dönem başlangıcı) - 2011.05.02( dönem bitişi )\\n 2 - Formal Education - Iğdır üniversitesi - Mühendislik fakültesi - Bilgisayar mühendisliği - 2011.10.01(dönem başlangıcı) - 2012.05.02( dönem bitişi )\\n 3 - Formal Education - Abant Izzet Baysal üniversitesi - Mühendislik ve mimarlık fakültesi - Bilgisayar mühendisliği - 2012.10.01(dönem başlangıcı) - 2013.05.02( dönem bitişi )\\n 4 - Formal Education - Abant Izzet Baysal üniversitesi - Mühendislik ve mimarlık fakültesi - Bilgisayar mühendisliği - 2013.10.01(dönem başlangıcı) - 2014.05.02( dönem bitişi )\\n\\n Yukarıdaki örnekteki tek bir satırı bu dto tutmaktadır.\\n Kişi sonuç olarak Abant izzet baysal üniversitesi bilgisayar mühendisliği diplomasına sahip olsada dönemsel olarak eğitim verileri bu şekildedir.\\n\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"department\":{\"description\":\"Fakulte ve Bölüm bilgileri yer alır. Örneğin : Sosyal bilimler MYO - Pazarlama bölümü\",\"type\":\"string\"},\"educationLangName\":{\"description\":\"The language name used while learning\",\"type\":\"string\"},\"educationStageName\":{\"description\":\"Education stage. For example : Associate degree, Licanse degree etc.. \",\"type\":\"string\"},\"educationalGradeName\":{\"description\":\"Sınıf seviye adi\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"school\":{\"$ref\":\"#/definitions/SchoolProfileDTO\"},\"term\":{\"$ref\":\"#/definitions/EducationalTermDTO\"}}},\"EducationalTermDTO\":{\"title\":\"EducationalTermDTO\",\"description\":\"Bir eğitim döneminin tanımını tutar. Örneğin 2018-2019 Eğitim öğretim dönemi gibi.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"endDate\":{\"format\":\"date-time\",\"description\":\"Donem bitis tarihi\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Dönem adı\",\"type\":\"string\"},\"startDate\":{\"format\":\"date-time\",\"description\":\"Donem baslangic tarihi\",\"type\":\"string\"}}},\"SchoolProfileDTO\":{\"title\":\"SchoolProfileDTO\",\"description\":\"Bir okula ait bilgileri tutar. İlk okul - orta okul - lise - üniversite tipinde okulların tanımlarının yapıldığı modeldir.\",\"type\":\"object\",\"properties\":{\"address\":{\"description\":\"Okul adresi\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/AddressCardDTO\"}},\"contacts\":{\"description\":\"Iletisim bilgileri. Telefon mail vb.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactInfoDTO\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Okul adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"},\"type\":{\"$ref\":\"#/definitions/EducationalStageLOV\"}}},\"EducationalStageLOV\":{\"title\":\"EducationalStageLOV\",\"description\":\"Eğitim kategorilerini tutar. Örneğin; Ön lisans, Lisans vb.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Name information\",\"type\":\"string\"}}},\"ContactInfoDTO\":{\"title\":\"ContactInfoDTO\",\"description\":\"Iletisim bilgilerini sunmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Category of contact type. For example: Home address, Home telephone, Cell phone etc.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"contactInfo\":{\"description\":\"Telephone number or email address information depending on the type.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"ContactMediumCategoryLOV\":{\"title\":\"ContactMediumCategoryLOV\",\"description\":\"Contact medium kategorileri. Bir kategori tipine ait veriyi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Category Name\",\"type\":\"string\"}}},\"AddressCardDTO\":{\"title\":\"AddressCardDTO\",\"description\":\"Address bilgisini sunar. Sadece full address bilgisini ve kategorisini verir.\\n Adres kategorisine ait kategori adı bilgisi “ContactMediumType” dır.\\n Yani contact medium type \\\"iletişimde bulunulacak adresler\\\" bilgisini ifade eder.\",\"type\":\"object\",\"properties\":{\"addressCategory\":{\"description\":\"Address kategorisi\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Full address. İl ilçe mahalle sokak gibi bütün bilgileri içerir.\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/FormalEducationGradeInfoDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"mollit\",\n \"createdDate\": \"1974-10-26T06:55:39.690Z\",\n \"departmentName\": \"ut magna in\",\n \"educationLangId\": -74812990,\n \"educationStageId\": -7289056,\n \"educationalGradeId\": -23634243,\n \"lastModifiedBy\": \"sunt\",\n \"lastModifiedDate\": \"1978-03-04T02:04:27.515Z\",\n \"schoolId\": -83167382,\n \"termId\": 42732386\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"FormalEducationalGradeInfoCreateDTO\",\"description\":\"Bir kisiye ait yeni bir örgün eğitim dönemi tanımlarken kullanılır. Kişinin eğitim bilgisi ( hangi okulda hangi bölümü ne zaman okumuş vb. ) eğitim dönemlerine bölünerek tutulmaktadır. Bu dto tek bir eğitim dönemi oluşturmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"departmentName\":{\"description\":\"Eğitim gördüğü fakülte ve bölüm bilgisi\",\"type\":\"string\"},\"educationLangId\":{\"format\":\"int64\",\"description\":\"Döneme ait eğitim dili bilgisi.\",\"type\":\"integer\"},\"educationStageId\":{\"format\":\"int64\",\"description\":\"Eğitim görülen kademe. Lisans, yüksek lisans, lise vb.\",\"type\":\"integer\"},\"educationalGradeId\":{\"format\":\"int64\",\"description\":\"Eğitim sınıfı bilgisi. \",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"schoolId\":{\"format\":\"int64\",\"description\":\"Eğitim görülen okul bilgisi\",\"type\":\"integer\"},\"termId\":{\"format\":\"int64\",\"description\":\"Eğitim dönemi bilgisi.\",\"type\":\"integer\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/FormalEducationalGradeInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"aliquip elit enim velit cupidatat\",\n \"createdDate\": \"1963-12-20T18:55:07.485Z\",\n \"departmentName\": \"laboris voluptate elit esse sed\",\n \"educationLangId\": -60291719,\n \"educationStageId\": 41309696,\n \"educationalGradeId\": -10486642,\n \"lastModifiedBy\": \"consectetur sed\",\n \"lastModifiedDate\": \"1974-12-19T10:21:50.666Z\",\n \"schoolId\": 86562124,\n \"termId\": -13085186\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"FormalEducationalGradeInfoCreateDTO\",\"description\":\"Bir kisiye ait yeni bir örgün eğitim dönemi tanımlarken kullanılır. Kişinin eğitim bilgisi ( hangi okulda hangi bölümü ne zaman okumuş vb. ) eğitim dönemlerine bölünerek tutulmaktadır. Bu dto tek bir eğitim dönemi oluşturmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"departmentName\":{\"description\":\"Eğitim gördüğü fakülte ve bölüm bilgisi\",\"type\":\"string\"},\"educationLangId\":{\"format\":\"int64\",\"description\":\"Döneme ait eğitim dili bilgisi.\",\"type\":\"integer\"},\"educationStageId\":{\"format\":\"int64\",\"description\":\"Eğitim görülen kademe. Lisans, yüksek lisans, lise vb.\",\"type\":\"integer\"},\"educationalGradeId\":{\"format\":\"int64\",\"description\":\"Eğitim sınıfı bilgisi. \",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"schoolId\":{\"format\":\"int64\",\"description\":\"Eğitim görülen okul bilgisi\",\"type\":\"integer\"},\"termId\":{\"format\":\"int64\",\"description\":\"Eğitim dönemi bilgisi.\",\"type\":\"integer\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/FormalEducationalGradeInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "202" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/FormalEducationGradeInfoDTO\"}],\"definitions\":{\"FormalEducationGradeInfoDTO\":{\"title\":\"FormalEducationGradeInfoDTO\",\"description\":\"Bir kişinin aldığı eğitimin bir dönemine ait bilgileri tutmaktadır.\\n Örneğin 4 yıllık bilgisayar mühendisliği bölümünden mezun olan bir kişi için bu dto dan 4 instance tutulmalı ve şu verileri barındırmalı.\\n\\n 1 - Formal Education - Iğdır üniversitesi - Mühendislik fakültesi - Bilgisayar mühendisliği - 2010.10.01(dönem başlangıcı) - 2011.05.02( dönem bitişi )\\n 2 - Formal Education - Iğdır üniversitesi - Mühendislik fakültesi - Bilgisayar mühendisliği - 2011.10.01(dönem başlangıcı) - 2012.05.02( dönem bitişi )\\n 3 - Formal Education - Abant Izzet Baysal üniversitesi - Mühendislik ve mimarlık fakültesi - Bilgisayar mühendisliği - 2012.10.01(dönem başlangıcı) - 2013.05.02( dönem bitişi )\\n 4 - Formal Education - Abant Izzet Baysal üniversitesi - Mühendislik ve mimarlık fakültesi - Bilgisayar mühendisliği - 2013.10.01(dönem başlangıcı) - 2014.05.02( dönem bitişi )\\n\\n Yukarıdaki örnekteki tek bir satırı bu dto tutmaktadır.\\n Kişi sonuç olarak Abant izzet baysal üniversitesi bilgisayar mühendisliği diplomasına sahip olsada dönemsel olarak eğitim verileri bu şekildedir.\\n\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"department\":{\"description\":\"Fakulte ve Bölüm bilgileri yer alır. Örneğin : Sosyal bilimler MYO - Pazarlama bölümü\",\"type\":\"string\"},\"educationLangName\":{\"description\":\"The language name used while learning\",\"type\":\"string\"},\"educationStageName\":{\"description\":\"Education stage. For example : Associate degree, Licanse degree etc.. \",\"type\":\"string\"},\"educationalGradeName\":{\"description\":\"Sınıf seviye adi\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"school\":{\"$ref\":\"#/definitions/SchoolProfileDTO\"},\"term\":{\"$ref\":\"#/definitions/EducationalTermDTO\"}}},\"EducationalTermDTO\":{\"title\":\"EducationalTermDTO\",\"description\":\"Bir eğitim döneminin tanımını tutar. Örneğin 2018-2019 Eğitim öğretim dönemi gibi.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"endDate\":{\"format\":\"date-time\",\"description\":\"Donem bitis tarihi\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Dönem adı\",\"type\":\"string\"},\"startDate\":{\"format\":\"date-time\",\"description\":\"Donem baslangic tarihi\",\"type\":\"string\"}}},\"SchoolProfileDTO\":{\"title\":\"SchoolProfileDTO\",\"description\":\"Bir okula ait bilgileri tutar. İlk okul - orta okul - lise - üniversite tipinde okulların tanımlarının yapıldığı modeldir.\",\"type\":\"object\",\"properties\":{\"address\":{\"description\":\"Okul adresi\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/AddressCardDTO\"}},\"contacts\":{\"description\":\"Iletisim bilgileri. Telefon mail vb.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactInfoDTO\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Okul adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"},\"type\":{\"$ref\":\"#/definitions/EducationalStageLOV\"}}},\"EducationalStageLOV\":{\"title\":\"EducationalStageLOV\",\"description\":\"Eğitim kategorilerini tutar. Örneğin; Ön lisans, Lisans vb.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Name information\",\"type\":\"string\"}}},\"ContactInfoDTO\":{\"title\":\"ContactInfoDTO\",\"description\":\"Iletisim bilgilerini sunmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Category of contact type. For example: Home address, Home telephone, Cell phone etc.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"contactInfo\":{\"description\":\"Telephone number or email address information depending on the type.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"ContactMediumCategoryLOV\":{\"title\":\"ContactMediumCategoryLOV\",\"description\":\"Contact medium kategorileri. Bir kategori tipine ait veriyi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Category Name\",\"type\":\"string\"}}},\"AddressCardDTO\":{\"title\":\"AddressCardDTO\",\"description\":\"Address bilgisini sunar. Sadece full address bilgisini ve kategorisini verir.\\n Adres kategorisine ait kategori adı bilgisi “ContactMediumType” dır.\\n Yani contact medium type \\\"iletişimde bulunulacak adresler\\\" bilgisini ifade eder.\",\"type\":\"object\",\"properties\":{\"addressCategory\":{\"description\":\"Address kategorisi\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Full address. İl ilçe mahalle sokak gibi bütün bilgileri içerir.\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/FormalEducationGradeInfoDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"proident consectetur cupidatat Excepteur deserunt\",\n \"createdDate\": \"1978-01-07T09:04:09.171Z\",\n \"departmentName\": \"enim velit\",\n \"educationLangId\": 99790995,\n \"educationStageId\": 31644288,\n \"educationalGradeId\": 11043831,\n \"lastModifiedBy\": \"esse incididunt irure qui\",\n \"lastModifiedDate\": \"2009-12-25T20:27:35.794Z\",\n \"schoolId\": 82776922,\n \"termId\": -91072149\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"FormalEducationalGradeInfoCreateDTO\",\"description\":\"Bir kisiye ait yeni bir örgün eğitim dönemi tanımlarken kullanılır. Kişinin eğitim bilgisi ( hangi okulda hangi bölümü ne zaman okumuş vb. ) eğitim dönemlerine bölünerek tutulmaktadır. Bu dto tek bir eğitim dönemi oluşturmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"departmentName\":{\"description\":\"Eğitim gördüğü fakülte ve bölüm bilgisi\",\"type\":\"string\"},\"educationLangId\":{\"format\":\"int64\",\"description\":\"Döneme ait eğitim dili bilgisi.\",\"type\":\"integer\"},\"educationStageId\":{\"format\":\"int64\",\"description\":\"Eğitim görülen kademe. Lisans, yüksek lisans, lise vb.\",\"type\":\"integer\"},\"educationalGradeId\":{\"format\":\"int64\",\"description\":\"Eğitim sınıfı bilgisi. \",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"schoolId\":{\"format\":\"int64\",\"description\":\"Eğitim görülen okul bilgisi\",\"type\":\"integer\"},\"termId\":{\"format\":\"int64\",\"description\":\"Eğitim dönemi bilgisi.\",\"type\":\"integer\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/FormalEducationalGradeInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"deserunt esse\",\n \"createdDate\": \"1941-08-31T12:13:35.357Z\",\n \"departmentName\": \"cupidatat elit au\",\n \"educationLangId\": 22633797,\n \"educationStageId\": -82075270,\n \"educationalGradeId\": 58648816,\n \"lastModifiedBy\": \"aute voluptate Lorem cillum\",\n \"lastModifiedDate\": \"2019-04-15T09:24:08.206Z\",\n \"schoolId\": -57000580,\n \"termId\": 81376861\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"FormalEducationalGradeInfoCreateDTO\",\"description\":\"Bir kisiye ait yeni bir örgün eğitim dönemi tanımlarken kullanılır. Kişinin eğitim bilgisi ( hangi okulda hangi bölümü ne zaman okumuş vb. ) eğitim dönemlerine bölünerek tutulmaktadır. Bu dto tek bir eğitim dönemi oluşturmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"departmentName\":{\"description\":\"Eğitim gördüğü fakülte ve bölüm bilgisi\",\"type\":\"string\"},\"educationLangId\":{\"format\":\"int64\",\"description\":\"Döneme ait eğitim dili bilgisi.\",\"type\":\"integer\"},\"educationStageId\":{\"format\":\"int64\",\"description\":\"Eğitim görülen kademe. Lisans, yüksek lisans, lise vb.\",\"type\":\"integer\"},\"educationalGradeId\":{\"format\":\"int64\",\"description\":\"Eğitim sınıfı bilgisi. \",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"schoolId\":{\"format\":\"int64\",\"description\":\"Eğitim görülen okul bilgisi\",\"type\":\"integer\"},\"termId\":{\"format\":\"int64\",\"description\":\"Eğitim dönemi bilgisi.\",\"type\":\"integer\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/FormalEducationalGradeInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"ut fugiat velit in nostrud\",\n \"createdDate\": \"1975-12-27T11:56:10.308Z\",\n \"departmentName\": \"magna sit deserunt\",\n \"educationLangId\": -88907077,\n \"educationStageId\": 79473492,\n \"educationalGradeId\": 85597402,\n \"lastModifiedBy\": \"proident\",\n \"lastModifiedDate\": \"1968-09-25T22:47:48.438Z\",\n \"schoolId\": 59479981,\n \"termId\": 15429619\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"FormalEducationalGradeInfoCreateDTO\",\"description\":\"Bir kisiye ait yeni bir örgün eğitim dönemi tanımlarken kullanılır. Kişinin eğitim bilgisi ( hangi okulda hangi bölümü ne zaman okumuş vb. ) eğitim dönemlerine bölünerek tutulmaktadır. Bu dto tek bir eğitim dönemi oluşturmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"departmentName\":{\"description\":\"Eğitim gördüğü fakülte ve bölüm bilgisi\",\"type\":\"string\"},\"educationLangId\":{\"format\":\"int64\",\"description\":\"Döneme ait eğitim dili bilgisi.\",\"type\":\"integer\"},\"educationStageId\":{\"format\":\"int64\",\"description\":\"Eğitim görülen kademe. Lisans, yüksek lisans, lise vb.\",\"type\":\"integer\"},\"educationalGradeId\":{\"format\":\"int64\",\"description\":\"Eğitim sınıfı bilgisi. \",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"schoolId\":{\"format\":\"int64\",\"description\":\"Eğitim görülen okul bilgisi\",\"type\":\"integer\"},\"termId\":{\"format\":\"int64\",\"description\":\"Eğitim dönemi bilgisi.\",\"type\":\"integer\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/FormalEducationalGradeInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"deserunt ex voluptate\",\n \"createdDate\": \"1945-03-07T07:16:01.969Z\",\n \"departmentName\": \"ullamco non cupidatat fugiat in\",\n \"educationLangId\": -84946097,\n \"educationStageId\": 7386891,\n \"educationalGradeId\": 92155635,\n \"lastModifiedBy\": \"nulla esse sit amet enim\",\n \"lastModifiedDate\": \"1950-06-25T23:22:03.042Z\",\n \"schoolId\": -8470517,\n \"termId\": -12748161\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"FormalEducationalGradeInfoCreateDTO\",\"description\":\"Bir kisiye ait yeni bir örgün eğitim dönemi tanımlarken kullanılır. Kişinin eğitim bilgisi ( hangi okulda hangi bölümü ne zaman okumuş vb. ) eğitim dönemlerine bölünerek tutulmaktadır. Bu dto tek bir eğitim dönemi oluşturmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"departmentName\":{\"description\":\"Eğitim gördüğü fakülte ve bölüm bilgisi\",\"type\":\"string\"},\"educationLangId\":{\"format\":\"int64\",\"description\":\"Döneme ait eğitim dili bilgisi.\",\"type\":\"integer\"},\"educationStageId\":{\"format\":\"int64\",\"description\":\"Eğitim görülen kademe. Lisans, yüksek lisans, lise vb.\",\"type\":\"integer\"},\"educationalGradeId\":{\"format\":\"int64\",\"description\":\"Eğitim sınıfı bilgisi. \",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"schoolId\":{\"format\":\"int64\",\"description\":\"Eğitim görülen okul bilgisi\",\"type\":\"integer\"},\"termId\":{\"format\":\"int64\",\"description\":\"Eğitim dönemi bilgisi.\",\"type\":\"integer\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/FormalEducationalGradeInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"anim ut id exercitation dolor\",\n \"createdDate\": \"2009-02-19T15:05:24.933Z\",\n \"departmentName\": \"quis velit deserunt laboris pariatur\",\n \"educationLangId\": -27815688,\n \"educationStageId\": 96973539,\n \"educationalGradeId\": -32215412,\n \"lastModifiedBy\": \"ex\",\n \"lastModifiedDate\": \"1974-09-06T23:42:11.013Z\",\n \"schoolId\": 65020802,\n \"termId\": 55111080\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"FormalEducationalGradeInfoCreateDTO\",\"description\":\"Bir kisiye ait yeni bir örgün eğitim dönemi tanımlarken kullanılır. Kişinin eğitim bilgisi ( hangi okulda hangi bölümü ne zaman okumuş vb. ) eğitim dönemlerine bölünerek tutulmaktadır. Bu dto tek bir eğitim dönemi oluşturmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"departmentName\":{\"description\":\"Eğitim gördüğü fakülte ve bölüm bilgisi\",\"type\":\"string\"},\"educationLangId\":{\"format\":\"int64\",\"description\":\"Döneme ait eğitim dili bilgisi.\",\"type\":\"integer\"},\"educationStageId\":{\"format\":\"int64\",\"description\":\"Eğitim görülen kademe. Lisans, yüksek lisans, lise vb.\",\"type\":\"integer\"},\"educationalGradeId\":{\"format\":\"int64\",\"description\":\"Eğitim sınıfı bilgisi. \",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"schoolId\":{\"format\":\"int64\",\"description\":\"Eğitim görülen okul bilgisi\",\"type\":\"integer\"},\"termId\":{\"format\":\"int64\",\"description\":\"Eğitim dönemi bilgisi.\",\"type\":\"integer\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/FormalEducationalGradeInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz. " + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Geçmiş Kayıtları... Talebenin bir örgün eğitim bilgisini siler" + }, + "id": { + "element": "string", + "content": "deleteStudentFormalEducationActiveInfo" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Students Formal education id" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "formalEducationId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Student ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Talebenin örgün eğitim dönemini silmek için kullanılır." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "204" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz. " + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/students/list/excel" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Kurum Listesini excel'e almak için kullanılır." + }, + "id": { + "element": "string", + "content": "getAllCorporationListExcel" + } + }, + "content": [ + { + "element": "copy", + "content": "Kurum Listesini excel'e almak için kullanılır." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "İndirilecek Data" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"string\"}" + }, + { + "element": "dataStructure", + "content": { + "element": "string" + } + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + }, + "href": { + "element": "string", + "content": "/api/sbt/students/{id}/classifications" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Talebeye ait nevi listesini doner" + }, + "id": { + "element": "string", + "content": "getAllStudentClassification" + } + }, + "content": [ + { + "element": "copy", + "content": "Talebeye ait nevi listesini doner" + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "Talebeye ait nevi listesi" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"Root Type for InternalEducationGradeDTO\",\"description\":\"Talebe nevileridir. Örneğin; Orta okul, lise, üniversite, daimi, tekamul, daimi ortaokul, üniversite hazırlık\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Oluşturan Kullanıcı\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Oluşturulma Tarihi\",\"type\":\"string\"},\"description\":{\"description\":\"Açıklama\",\"type\":\"string\"},\"id\":{\"format\":\"int32\",\"description\":\"ID unique alan\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son Güncelleyen\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son Güncellenme Zamanı\",\"type\":\"string\"},\"name\":{\"description\":\"İsmi\",\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Sıralama Öncelik Bilgisi\",\"type\":\"integer\"},\"status\":{\"description\":\"Aktiflik Pasiflik Bilgisi\",\"type\":\"boolean\"}},\"examples\":[{\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"description\":\"some text\",\"id\":79,\"lastModifiedBy\":\"some text\",\"lastModifiedDate\":\"2018-02-10T09:30Z\",\"name\":\"some text\",\"orderPriority\":31,\"status\":true}]}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/StudentClassificationDTO" + } + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Talebeye nevi eklemek için kullanılır." + }, + "id": { + "element": "string", + "content": "createStudentClassification" + } + }, + "content": [ + { + "element": "copy", + "content": "Talebeye nevi eklemek için kullanılır." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"Root Type for InternalEducationGradeDTO\",\"description\":\"Talebe nevileridir. Örneğin; Orta okul, lise, üniversite, daimi, tekamul, daimi ortaokul, üniversite hazırlık\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Oluşturan Kullanıcı\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Oluşturulma Tarihi\",\"type\":\"string\"},\"description\":{\"description\":\"Açıklama\",\"type\":\"string\"},\"id\":{\"format\":\"int32\",\"description\":\"ID unique alan\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son Güncelleyen\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son Güncellenme Zamanı\",\"type\":\"string\"},\"name\":{\"description\":\"İsmi\",\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Sıralama Öncelik Bilgisi\",\"type\":\"integer\"},\"status\":{\"description\":\"Aktiflik Pasiflik Bilgisi\",\"type\":\"boolean\"}},\"examples\":[{\"createdBy\":\"some text\",\"createdDate\":\"2018-02-10T09:30Z\",\"description\":\"some text\",\"id\":79,\"lastModifiedBy\":\"some text\",\"lastModifiedDate\":\"2018-02-10T09:30Z\",\"name\":\"some text\",\"orderPriority\":31,\"status\":true}]}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/StudentClassificationDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem Başarılı" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "classificationId" + }, + "value": { + "element": "number" + } + } + } + ] + }, + "href": { + "element": "string", + "content": "/api/sbt/students/{id}/classifications/{classificationId}" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Talebeden nevi silmek için kullanılmaktadır." + }, + "id": { + "element": "string", + "content": "delStudentClassification" + } + }, + "content": [ + { + "element": "copy", + "content": "Talebeden nevi silmek için kullanılmaktadır." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem Başarılı" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"boolean\"}" + }, + { + "element": "dataStructure", + "content": { + "element": "boolean" + } + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + }, + "href": { + "element": "string", + "content": "/api/sbt/students/{id}/etude-groups" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Talebenin Etut gruplarının listesini profilde goruntuleme servisidir." + }, + "id": { + "element": "string", + "content": "getStudentEtutGroups" + } + }, + "content": [ + { + "element": "copy", + "content": "Talebenin Etut gruplarının listesini profilde goruntuleme servisidir. Normal şartlarda bir talebe bir Etut grubuna dahil olur." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "Talebenin dahil oldugu Etut grublarını doner" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/EtudeGroupDTO\"},\"definitions\":{\"EtudeGroupDTO\":{\"title\":\"Root Type for EtudeGroup\",\"description\":\"Etüt grubu veri modeli. Etüt dimek Okul dersine takviye dimektir. Okuldaki sınıf seviyesine göre etüt grupları belirlenir.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int32\",\"description\":\"Etut grubu UNIQUE ID bilgisidir.\",\"type\":\"integer\"},\"name\":{\"type\":\"string\"},\"code\":{\"description\":\"Etude grubuna verilen kısa kod bilgisidir. S1-A : Seviye 1 A sınıfı\",\"type\":\"string\"},\"description\":{\"description\":\"Etut grubunun uzun açıklama bilgisidir. \",\"type\":\"string\"},\"active\":{\"description\":\"Etut grubu aktiflik pasiflik bilgisidir.\",\"type\":\"boolean\"},\"academicYears\":{\"description\":\"Etut grubunun dahil oldugu, Akademik yıl-yıllar bilgisidir. 2018-2019 eğitim öğretim yılı \",\"type\":\"object\"}},\"examples\":[{\"id\":16,\"name\":\"some text\",\"code\":\"some text\",\"description\":\"some text\",\"active\":true,\"academicYears\":{}}]}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/EtudeGroupDTO" + } + ] + } + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + }, + "href": { + "element": "string", + "content": "/api/sbt/students/{id}/internal-class-groups" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Talebenin dahili ders gruplarının listesini profilde goruntuleme servisidir." + }, + "id": { + "element": "string", + "content": "getStudentClassGroups" + } + }, + "content": [ + { + "element": "copy", + "content": "Talebenin dahili ders gruplarının listesini profilde goruntuleme servisidir. Normal şartlarda bir talebe bir ders grubuna dahil olur." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "Talebenin dahil oldugu ders grublarını doner" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/InternalClassGroupDTO\"},\"definitions\":{\"InternalClassGroupDTO\":{\"title\":\"Root Type for InternalClassGroupDTO\",\"description\":\"Dahili Ders Grubu veri modelidir.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int32\",\"description\":\"Dahili Ders grubu Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Dahili Ders grubunun personeller tarafından anlaşılır kısa adı\",\"type\":\"string\"},\"descritpion\":{\"description\":\"Dahili Ders grubunun uzun açıklamasıdır. \",\"type\":\"string\"},\"active\":{\"description\":\"Dahili Ders grubunun aktiflik pasiflik durumunu ifade eder.\",\"type\":\"boolean\"},\"internalClassLevel\":{\"description\":\"Dahili Ders grubuna dahil olan seviyelerdir. Örneğin tanımlarken kısıtlama yapıldığında; Bu seviyede (S1, S2 seviyesinde) talebe alınmasını sağlayacak.\",\"type\":\"object\"},\"academicYear\":{\"description\":\"Dahili Ders seviyesinin geçerli olacağı akademik yıl veya yıllar bilgisidir.\",\"type\":\"object\"},\"code\":{\"description\":\"Dahili Ders grubuna verilen kısa kod bilgisidir. \",\"type\":\"string\"}},\"examples\":[{\"id\":72,\"name\":\"some text\",\"descritpion\":\"some text\",\"active\":true,\"academicYear\":{},\"internalClassLevel\":{}}]}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/InternalClassGroupDTO" + } + ] + } + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "category", + "meta": { + "title": { + "element": "string", + "content": "HEALTH" + }, + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "resourceGroup" + } + ] + } + }, + "content": [ + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/students/{id}/health/problem" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Talebenin geçirdiği rahatsızlık veya devam eden rahatsızlık bilgisi ekler" + }, + "id": { + "element": "string", + "content": "createStudentHealthProblem" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Unique Student Indentifier" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Talebenin geçirdiği rahatsızlık veya devam eden rahatsızlık bilgisi ekler. Geçirilen hastalığın isim bilgisi sistemde yoksa o an sisteme yeni bir kayıt olarak kaydedilir." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"voluptate\",\n \"createdDate\": \"1988-11-18T16:25:44.414Z\",\n \"description\": \"labo\",\n \"disease\": {\n \"id\": -1410893,\n \"name\": \"in ullamco Lorem tempor esse\"\n },\n \"id\": -682809,\n \"lastModifiedBy\": \"eiusmod labore\",\n \"lastModifiedDate\": \"1980-09-15T16:43:12.111Z\",\n \"type\": {\n \"createdBy\": \"Lorem\",\n \"createdDate\": \"1950-12-12T02:55:52.695Z\",\n \"id\": 61859525,\n \"name\": \"commodo velit nulla\"\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/HealthProblemDTO\"}],\"definitions\":{\"HealthProblemDTO\":{\"title\":\"HealthProblemDTO\",\"description\":\"Kişilere ait sağlık problemlerinin tanımını tutar. Hastalık tipi örnek olarak : Geçirdiği rahatsızlıklar, devam eden rahatsızlıklar olabilir. Hastalık devamlılığı türüdür.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Geçirilen rahatsızlıkla ilgili açıklama ve notlar.\",\"type\":\"string\"},\"disease\":{\"$ref\":\"#/definitions/DiseaseLOV\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"type\":{\"$ref\":\"#/definitions/HealthProblemTypeLOV\"}}},\"HealthProblemTypeLOV\":{\"title\":\"HealthProblemTypeLOV\",\"description\":\"Hastalık türüdür. Örneğin; Geçirilmiş rahatsızlıklar, devam eden rahatsızlıklar vb.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Hastalık türü adı\",\"type\":\"string\"}}},\"DiseaseLOV\":{\"title\":\"DiseaseLOV\",\"description\":\"Hastalık bilgilerini tutar. Hastalıklar etiket olarak tanımlanabilir.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Hastaligin adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/HealthProblemDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/HealthInfoDTO\"}],\"definitions\":{\"HealthInfoDTO\":{\"title\":\"HealthInfoDTO\",\"description\":\"Kisiye ait saglik bilgilerini tutar.\",\"type\":\"object\",\"properties\":{\"bloodGroup\":{\"$ref\":\"#/definitions/BloodGroupLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"diseases\":{\"description\":\"Disease informations\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/HealthProblemDTO\"}},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"length\":{\"format\":\"int64\",\"description\":\"Body length of person\",\"type\":\"integer\"},\"lengthMeasurementUnit\":{\"$ref\":\"#/definitions/LengthMeasurementUnitLOV\"},\"weight\":{\"format\":\"double\",\"description\":\"Body weight of person\",\"type\":\"number\"},\"weightMeasurementUnit\":{\"$ref\":\"#/definitions/WeightMeasurementUnitLOV\"}}},\"WeightMeasurementUnitLOV\":{\"title\":\"WeightMeasurementUnitLOV\",\"description\":\"Ağırlık ölçü birimleridir. Ölçüm sistemi farketmez. Örneğin : kg, gr, ton, galon vb..\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Agirlik birim adi\",\"type\":\"string\"}}},\"LengthMeasurementUnitLOV\":{\"title\":\"LengthMeasurementUnitLOV\",\"description\":\"Uzunluk ölçü birimleridir. Ölçüm sistemi farketmez. Örneğin : cm, metre, desimetre, mil, km vb.. \",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Adi\",\"type\":\"string\"}}},\"HealthProblemDTO\":{\"title\":\"HealthProblemDTO\",\"description\":\"Kişilere ait sağlık problemlerinin tanımını tutar. Hastalık tipi örnek olarak : Geçirdiği rahatsızlıklar, devam eden rahatsızlıklar olabilir. Hastalık devamlılığı türüdür.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Geçirilen rahatsızlıkla ilgili açıklama ve notlar.\",\"type\":\"string\"},\"disease\":{\"$ref\":\"#/definitions/DiseaseLOV\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"type\":{\"$ref\":\"#/definitions/HealthProblemTypeLOV\"}}},\"HealthProblemTypeLOV\":{\"title\":\"HealthProblemTypeLOV\",\"description\":\"Hastalık türüdür. Örneğin; Geçirilmiş rahatsızlıklar, devam eden rahatsızlıklar vb.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Hastalık türü adı\",\"type\":\"string\"}}},\"DiseaseLOV\":{\"title\":\"DiseaseLOV\",\"description\":\"Hastalık bilgilerini tutar. Hastalıklar etiket olarak tanımlanabilir.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Hastaligin adi\",\"type\":\"string\"}}},\"BloodGroupLOV\":{\"title\":\"BloodGroupLOV\",\"description\":\"Kan grubu tanımıdır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Kan grubu adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/HealthInfoDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"proident in cillum sit mollit\",\n \"createdDate\": \"1958-04-19T20:16:44.384Z\",\n \"description\": \"consectetur ut\",\n \"disease\": {\n \"id\": 45921379,\n \"name\": \"ad est\"\n },\n \"id\": -53341324,\n \"lastModifiedBy\": \"qui esse veniam ea \",\n \"lastModifiedDate\": \"1949-07-14T15:01:33.727Z\",\n \"type\": {\n \"createdBy\": \"fugiat in\",\n \"createdDate\": \"1999-12-30T00:21:58.892Z\",\n \"id\": -18279155,\n \"name\": \"qui in ullamco\"\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/HealthProblemDTO\"}],\"definitions\":{\"HealthProblemDTO\":{\"title\":\"HealthProblemDTO\",\"description\":\"Kişilere ait sağlık problemlerinin tanımını tutar. Hastalık tipi örnek olarak : Geçirdiği rahatsızlıklar, devam eden rahatsızlıklar olabilir. Hastalık devamlılığı türüdür.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Geçirilen rahatsızlıkla ilgili açıklama ve notlar.\",\"type\":\"string\"},\"disease\":{\"$ref\":\"#/definitions/DiseaseLOV\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"type\":{\"$ref\":\"#/definitions/HealthProblemTypeLOV\"}}},\"HealthProblemTypeLOV\":{\"title\":\"HealthProblemTypeLOV\",\"description\":\"Hastalık türüdür. Örneğin; Geçirilmiş rahatsızlıklar, devam eden rahatsızlıklar vb.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Hastalık türü adı\",\"type\":\"string\"}}},\"DiseaseLOV\":{\"title\":\"DiseaseLOV\",\"description\":\"Hastalık bilgilerini tutar. Hastalıklar etiket olarak tanımlanabilir.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Hastaligin adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/HealthProblemDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "New Healt Problem Added" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/HealthInfoDTO\"}],\"definitions\":{\"HealthInfoDTO\":{\"title\":\"HealthInfoDTO\",\"description\":\"Kisiye ait saglik bilgilerini tutar.\",\"type\":\"object\",\"properties\":{\"bloodGroup\":{\"$ref\":\"#/definitions/BloodGroupLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"diseases\":{\"description\":\"Disease informations\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/HealthProblemDTO\"}},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"length\":{\"format\":\"int64\",\"description\":\"Body length of person\",\"type\":\"integer\"},\"lengthMeasurementUnit\":{\"$ref\":\"#/definitions/LengthMeasurementUnitLOV\"},\"weight\":{\"format\":\"double\",\"description\":\"Body weight of person\",\"type\":\"number\"},\"weightMeasurementUnit\":{\"$ref\":\"#/definitions/WeightMeasurementUnitLOV\"}}},\"WeightMeasurementUnitLOV\":{\"title\":\"WeightMeasurementUnitLOV\",\"description\":\"Ağırlık ölçü birimleridir. Ölçüm sistemi farketmez. Örneğin : kg, gr, ton, galon vb..\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Agirlik birim adi\",\"type\":\"string\"}}},\"LengthMeasurementUnitLOV\":{\"title\":\"LengthMeasurementUnitLOV\",\"description\":\"Uzunluk ölçü birimleridir. Ölçüm sistemi farketmez. Örneğin : cm, metre, desimetre, mil, km vb.. \",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Adi\",\"type\":\"string\"}}},\"HealthProblemDTO\":{\"title\":\"HealthProblemDTO\",\"description\":\"Kişilere ait sağlık problemlerinin tanımını tutar. Hastalık tipi örnek olarak : Geçirdiği rahatsızlıklar, devam eden rahatsızlıklar olabilir. Hastalık devamlılığı türüdür.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Geçirilen rahatsızlıkla ilgili açıklama ve notlar.\",\"type\":\"string\"},\"disease\":{\"$ref\":\"#/definitions/DiseaseLOV\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"type\":{\"$ref\":\"#/definitions/HealthProblemTypeLOV\"}}},\"HealthProblemTypeLOV\":{\"title\":\"HealthProblemTypeLOV\",\"description\":\"Hastalık türüdür. Örneğin; Geçirilmiş rahatsızlıklar, devam eden rahatsızlıklar vb.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Hastalık türü adı\",\"type\":\"string\"}}},\"DiseaseLOV\":{\"title\":\"DiseaseLOV\",\"description\":\"Hastalık bilgilerini tutar. Hastalıklar etiket olarak tanımlanabilir.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Hastaligin adi\",\"type\":\"string\"}}},\"BloodGroupLOV\":{\"title\":\"BloodGroupLOV\",\"description\":\"Kan grubu tanımıdır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Kan grubu adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/HealthInfoDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"in deserunt dolore nulla\",\n \"createdDate\": \"1966-10-19T07:01:41.306Z\",\n \"description\": \"Ut occaecat in elit\",\n \"disease\": {\n \"id\": 72644346,\n \"name\": \"anim deserunt incididunt quis aliqua\"\n },\n \"id\": -79763181,\n \"lastModifiedBy\": \"eu sunt\",\n \"lastModifiedDate\": \"1967-06-17T15:51:01.307Z\",\n \"type\": {\n \"createdBy\": \"in sed\",\n \"createdDate\": \"2000-10-30T01:15:14.788Z\",\n \"id\": 7936554,\n \"name\": \"sint proident\"\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/HealthProblemDTO\"}],\"definitions\":{\"HealthProblemDTO\":{\"title\":\"HealthProblemDTO\",\"description\":\"Kişilere ait sağlık problemlerinin tanımını tutar. Hastalık tipi örnek olarak : Geçirdiği rahatsızlıklar, devam eden rahatsızlıklar olabilir. Hastalık devamlılığı türüdür.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Geçirilen rahatsızlıkla ilgili açıklama ve notlar.\",\"type\":\"string\"},\"disease\":{\"$ref\":\"#/definitions/DiseaseLOV\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"type\":{\"$ref\":\"#/definitions/HealthProblemTypeLOV\"}}},\"HealthProblemTypeLOV\":{\"title\":\"HealthProblemTypeLOV\",\"description\":\"Hastalık türüdür. Örneğin; Geçirilmiş rahatsızlıklar, devam eden rahatsızlıklar vb.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Hastalık türü adı\",\"type\":\"string\"}}},\"DiseaseLOV\":{\"title\":\"DiseaseLOV\",\"description\":\"Hastalık bilgilerini tutar. Hastalıklar etiket olarak tanımlanabilir.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Hastaligin adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/HealthProblemDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz giriş." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"pariatur id adipisicing\",\n \"createdDate\": \"2001-06-29T22:03:09.948Z\",\n \"description\": \"sunt veniam reprehenderit dolore velit\",\n \"disease\": {\n \"id\": -61407175,\n \"name\": \"eiusmod\"\n },\n \"id\": -32389032,\n \"lastModifiedBy\": \"incididunt ea nostrud sed dolor\",\n \"lastModifiedDate\": \"1962-12-28T07:27:55.076Z\",\n \"type\": {\n \"createdBy\": \"eu sit velit eiusmod\",\n \"createdDate\": \"1974-03-22T10:58:50.127Z\",\n \"id\": -36880743,\n \"name\": \"do fugiat dolor occaecat dolore\"\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/HealthProblemDTO\"}],\"definitions\":{\"HealthProblemDTO\":{\"title\":\"HealthProblemDTO\",\"description\":\"Kişilere ait sağlık problemlerinin tanımını tutar. Hastalık tipi örnek olarak : Geçirdiği rahatsızlıklar, devam eden rahatsızlıklar olabilir. Hastalık devamlılığı türüdür.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Geçirilen rahatsızlıkla ilgili açıklama ve notlar.\",\"type\":\"string\"},\"disease\":{\"$ref\":\"#/definitions/DiseaseLOV\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"type\":{\"$ref\":\"#/definitions/HealthProblemTypeLOV\"}}},\"HealthProblemTypeLOV\":{\"title\":\"HealthProblemTypeLOV\",\"description\":\"Hastalık türüdür. Örneğin; Geçirilmiş rahatsızlıklar, devam eden rahatsızlıklar vb.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Hastalık türü adı\",\"type\":\"string\"}}},\"DiseaseLOV\":{\"title\":\"DiseaseLOV\",\"description\":\"Hastalık bilgilerini tutar. Hastalıklar etiket olarak tanımlanabilir.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Hastaligin adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/HealthProblemDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"dolore fugiat\",\n \"createdDate\": \"1962-09-18T02:39:40.861Z\",\n \"description\": \"commodo et\",\n \"disease\": {\n \"id\": 952989,\n \"name\": \"aute magna sit consectetur Lorem\"\n },\n \"id\": 30153317,\n \"lastModifiedBy\": \"qui sint magna Ut\",\n \"lastModifiedDate\": \"1965-10-07T02:48:17.186Z\",\n \"type\": {\n \"createdBy\": \"ipsum\",\n \"createdDate\": \"2001-06-03T22:50:09.918Z\",\n \"id\": 57414917,\n \"name\": \"consequat dolore dolor sit\"\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/HealthProblemDTO\"}],\"definitions\":{\"HealthProblemDTO\":{\"title\":\"HealthProblemDTO\",\"description\":\"Kişilere ait sağlık problemlerinin tanımını tutar. Hastalık tipi örnek olarak : Geçirdiği rahatsızlıklar, devam eden rahatsızlıklar olabilir. Hastalık devamlılığı türüdür.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Geçirilen rahatsızlıkla ilgili açıklama ve notlar.\",\"type\":\"string\"},\"disease\":{\"$ref\":\"#/definitions/DiseaseLOV\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"type\":{\"$ref\":\"#/definitions/HealthProblemTypeLOV\"}}},\"HealthProblemTypeLOV\":{\"title\":\"HealthProblemTypeLOV\",\"description\":\"Hastalık türüdür. Örneğin; Geçirilmiş rahatsızlıklar, devam eden rahatsızlıklar vb.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Hastalık türü adı\",\"type\":\"string\"}}},\"DiseaseLOV\":{\"title\":\"DiseaseLOV\",\"description\":\"Hastalık bilgilerini tutar. Hastalıklar etiket olarak tanımlanabilir.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Hastaligin adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/HealthProblemDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"laborum\",\n \"createdDate\": \"1978-04-01T07:08:01.863Z\",\n \"description\": \"sunt tempor dolore incididunt pariatur\",\n \"disease\": {\n \"id\": 25191947,\n \"name\": \"anim sint dolore\"\n },\n \"id\": -30039963,\n \"lastModifiedBy\": \"deserunt\",\n \"lastModifiedDate\": \"1967-09-11T05:56:14.909Z\",\n \"type\": {\n \"createdBy\": \"eiusmod\",\n \"createdDate\": \"1978-12-31T17:56:18.098Z\",\n \"id\": 79689885,\n \"name\": \"proiden\"\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/HealthProblemDTO\"}],\"definitions\":{\"HealthProblemDTO\":{\"title\":\"HealthProblemDTO\",\"description\":\"Kişilere ait sağlık problemlerinin tanımını tutar. Hastalık tipi örnek olarak : Geçirdiği rahatsızlıklar, devam eden rahatsızlıklar olabilir. Hastalık devamlılığı türüdür.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Geçirilen rahatsızlıkla ilgili açıklama ve notlar.\",\"type\":\"string\"},\"disease\":{\"$ref\":\"#/definitions/DiseaseLOV\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"type\":{\"$ref\":\"#/definitions/HealthProblemTypeLOV\"}}},\"HealthProblemTypeLOV\":{\"title\":\"HealthProblemTypeLOV\",\"description\":\"Hastalık türüdür. Örneğin; Geçirilmiş rahatsızlıklar, devam eden rahatsızlıklar vb.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Hastalık türü adı\",\"type\":\"string\"}}},\"DiseaseLOV\":{\"title\":\"DiseaseLOV\",\"description\":\"Hastalık bilgilerini tutar. Hastalıklar etiket olarak tanımlanabilir.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Hastaligin adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/HealthProblemDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Business exception" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"Ut deserunt incididunt qui consequat\",\n \"createdDate\": \"2014-03-17T17:32:25.140Z\",\n \"description\": \"laboris sunt minim mollit\",\n \"disease\": {\n \"id\": 46876043,\n \"name\": \"aliquip\"\n },\n \"id\": 64334022,\n \"lastModifiedBy\": \"qui ea irure sit veniam\",\n \"lastModifiedDate\": \"1983-07-20T10:18:10.228Z\",\n \"type\": {\n \"createdBy\": \"id ea\",\n \"createdDate\": \"2013-12-20T23:45:22.289Z\",\n \"id\": -10690281,\n \"name\": \"Duis dolore in ad\"\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/HealthProblemDTO\"}],\"definitions\":{\"HealthProblemDTO\":{\"title\":\"HealthProblemDTO\",\"description\":\"Kişilere ait sağlık problemlerinin tanımını tutar. Hastalık tipi örnek olarak : Geçirdiği rahatsızlıklar, devam eden rahatsızlıklar olabilir. Hastalık devamlılığı türüdür.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Geçirilen rahatsızlıkla ilgili açıklama ve notlar.\",\"type\":\"string\"},\"disease\":{\"$ref\":\"#/definitions/DiseaseLOV\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"type\":{\"$ref\":\"#/definitions/HealthProblemTypeLOV\"}}},\"HealthProblemTypeLOV\":{\"title\":\"HealthProblemTypeLOV\",\"description\":\"Hastalık türüdür. Örneğin; Geçirilmiş rahatsızlıklar, devam eden rahatsızlıklar vb.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Hastalık türü adı\",\"type\":\"string\"}}},\"DiseaseLOV\":{\"title\":\"DiseaseLOV\",\"description\":\"Hastalık bilgilerini tutar. Hastalıklar etiket olarak tanımlanabilir.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Hastaligin adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/HealthProblemDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "Sunucu hatası" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "category", + "meta": { + "title": { + "element": "string", + "content": "teacher-resource" + }, + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "resourceGroup" + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Teacher Resource" + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/teachers" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Personel listesini verir. Personel listesinde teacher ile ilgili sadece temel bilgiler, kimlik bilgileri yer alır." + }, + "id": { + "element": "string", + "content": "getAllTeacherListDTOs" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/teachers{?age%2eequals,age%2egreaterOrEqualThan,age%2egreaterThan,age%2ein*,age%2elessOrEqualThan,age%2elessThan,age%2especified,bolgeId%2eequals,bolgeId%2egreaterOrEqualThan,bolgeId%2egreaterThan,bolgeId%2ein*,bolgeId%2elessOrEqualThan,bolgeId%2elessThan,bolgeId%2especified,countryId%2eequals,countryId%2egreaterOrEqualThan,countryId%2egreaterThan,countryId%2ein*,countryId%2elessOrEqualThan,countryId%2elessThan,countryId%2especified,educationStageId%2eequals,educationStageId%2egreaterOrEqualThan,educationStageId%2egreaterThan,educationStageId%2ein*,educationStageId%2elessOrEqualThan,educationStageId%2elessThan,educationStageId%2especified,gender%2eequals,gender%2ein*,gender%2especified,gradDormId%2eequals,gradDormId%2egreaterOrEqualThan,gradDormId%2egreaterThan,gradDormId%2ein*,gradDormId%2elessOrEqualThan,gradDormId%2elessThan,gradDormId%2especified,maritalStatus%2eequals,maritalStatus%2ein*,maritalStatus%2especified,mintikaId%2eequals,mintikaId%2egreaterOrEqualThan,mintikaId%2egreaterThan,mintikaId%2ein*,mintikaId%2elessOrEqualThan,mintikaId%2elessThan,mintikaId%2especified,page,size,sort*,textSearch%2econtains,textSearch%2eequals,textSearch%2ein*,textSearch%2especified,vazifeId%2eequals,vazifeId%2egreaterOrEqualThan,vazifeId%2egreaterThan,vazifeId%2ein*,vazifeId%2elessOrEqualThan,vazifeId%2elessThan,vazifeId%2especified}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "age.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "age.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "age.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "age.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "age.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "age.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "age.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "bolgeId.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "bolgeId.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "bolgeId.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "bolgeId.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "bolgeId.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "bolgeId.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "bolgeId.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "countryId.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "countryId.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "countryId.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "countryId.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "countryId.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "countryId.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "countryId.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "educationStageId.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "educationStageId.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "educationStageId.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "educationStageId.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "educationStageId.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "educationStageId.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "educationStageId.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "gender.equals" + }, + "value": { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MAN" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "WOMAN" + } + ] + } + } + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "gender.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MAN" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "WOMAN" + } + ] + } + } + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "gender.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "gradDormId.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "gradDormId.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "gradDormId.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "gradDormId.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "gradDormId.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "gradDormId.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "gradDormId.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "maritalStatus.equals" + }, + "value": { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "DIVORCED" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MARRIED" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SINGLE" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "WIDOW" + } + ] + } + } + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "maritalStatus.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "DIVORCED" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MARRIED" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SINGLE" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "WIDOW" + } + ] + } + } + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "maritalStatus.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "mintikaId.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "mintikaId.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "mintikaId.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "mintikaId.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "mintikaId.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "mintikaId.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "mintikaId.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Page number of the requested page" + } + }, + "content": { + "key": { + "element": "string", + "content": "page" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Size of a page" + } + }, + "content": { + "key": { + "element": "string", + "content": "size" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported." + } + }, + "content": { + "key": { + "element": "string", + "content": "sort" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "textSearch.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "textSearch.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "textSearch.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "textSearch.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "vazifeId.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "vazifeId.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "vazifeId.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "vazifeId.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "vazifeId.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "vazifeId.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "vazifeId.specified" + }, + "value": { + "element": "boolean" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Gets a list of all `TeacherListDTO` entities." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "Successful response - returns an array of `TeacherListDTO` entities." + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/TeacherListDTO\"},\"definitions\":{\"TeacherListDTO\":{\"title\":\"TeacherListDTO\",\"description\":\"Hocaefendilerin listeleme işlemlerine ait verilerini tutar.\",\"type\":\"object\",\"properties\":{\"citizenNumber\":{\"description\":\"Citizen number\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"educationStatusName\":{\"description\":\"Personal education status\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adi\",\"type\":\"string\"},\"graduationTekamulCorporation\":{\"$ref\":\"#/definitions/CorporationLOV\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadi\",\"type\":\"string\"},\"mainRoleName\":{\"description\":\"Personal main role name\",\"type\":\"string\"},\"maritalStatusName\":{\"description\":\"Personal marital status name\",\"type\":\"string\"},\"organizationLevel\":{\"$ref\":\"#/definitions/OrganizationLevelDTO\"}}},\"OrganizationLevelDTO\":{\"title\":\"OrganizationLevelDTO\",\"description\":\"Tüzel veya gerçek kişilerin organizasyon ağacındaki hierarşisini taşır.\",\"type\":\"object\",\"properties\":{\"bolge\":{\"$ref\":\"#/definitions/BolgeLOV\"},\"corporation\":{\"$ref\":\"#/definitions/CorporationLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"mintika\":{\"$ref\":\"#/definitions/MintikaLOV\"}}},\"MintikaLOV\":{\"title\":\"MintikaLOV\",\"description\":\"Mintika tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Mintika adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"CorporationLOV\":{\"title\":\"CorporationLOV\",\"description\":\"Kurum tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Kurum adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"BolgeLOV\":{\"title\":\"BolgeLOV\",\"description\":\"Bolgeye ait tanimi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Bolge adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/TeacherListDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Personelin sisteme ilk kaydını olusturur. Sistemde hiç bulunmayan bir kişiyi personel olarak oluşturup ve kişi olarak da kaydeder." + }, + "id": { + "element": "string", + "content": "createTeacher" + } + }, + "content": [ + { + "element": "copy", + "content": "Creates a new instance of a `Teacher`." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"address\": {\n \"address1\": \"sit dolore\",\n \"address2\": \"non quis occaecat magna esse\",\n \"address3\": \"sint consequat\",\n \"categories\": [],\n \"createdBy\": \"nulla ut\",\n \"createdDate\": \"1978-09-05T06:34:02.930Z\",\n \"fullAddress\": \"commodo laboris ullamco Duis\",\n \"lastModifiedBy\": \"anim enim cillum adipisicing\",\n \"lastModifiedDate\": \"2001-06-03T15:45:22.311Z\",\n \"locationId\": 66523088\n },\n \"birthDate\": \"1944-08-11T16:59:01.062Z\",\n \"birthPlaceName\": \"tempor\",\n \"citizenNumber\": \"veniam\",\n \"citizenshipId\": 59569307,\n \"contacts\": [],\n \"corporationId\": -69272192,\n \"createNote\": \"veniam Excepteur non\",\n \"createdBy\": \"dolor anim esse\",\n \"createdDate\": \"2001-12-09T15:37:14.558Z\",\n \"firstName\": \"irure sunt qui aliqua\",\n \"genderId\": -54250120,\n \"lastModifiedBy\": \"mollit Ut eiusmod minim voluptate\",\n \"lastModifiedDate\": \"2013-01-18T07:58:42.101Z\",\n \"lastName\": \"sed Lorem nostrud irure\",\n \"maritalStatusId\": -66236991,\n \"tekamulGraduationDate\": \"2015-12-09T21:13:12.038Z\",\n \"tekamulId\": -59519220\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/TeacherCreateDTO\"}],\"definitions\":{\"TeacherCreateDTO\":{\"title\":\"TeacherCreateDTO\",\"description\":\"Hocaefendi olusturmak için kullanılır. Şu an bu modelde vatandaşlık bilgisi alınmaktadır. Kimliğin ait olduğu ülke(citizenship) alınmaktadır. Nationality bilgisi yani doğduğu ülke bilgisi alınmamaktadır. \\\"pronunciationFullName\\\": \\\"some text\\\", \\\"regionalFullName\\\": \\\"some text\\\" Yukarıdaki bilgiler inputta alınmayacak şimdilik firstName ve lastName birleştirilip regionalFullName e basılacak.\",\"type\":\"object\",\"properties\":{\"address\":{\"$ref\":\"#/definitions/AddressCreateDTO\"},\"birthDate\":{\"format\":\"date-time\",\"description\":\"Doğum tarihi\",\"type\":\"string\"},\"birthPlaceName\":{\"description\":\"Doğduğu yer\",\"type\":\"string\"},\"citizenNumber\":{\"description\":\"Vatandaşlık numarası\",\"type\":\"string\"},\"citizenshipId\":{\"format\":\"int64\",\"description\":\"Kimlik sahibi olduğu ülke\",\"type\":\"integer\"},\"contacts\":{\"description\":\"İletişim bilgileri\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactInfoCreateDTO\"}},\"corporationId\":{\"format\":\"int64\",\"description\":\"Personelin ait olduğu kurum\",\"type\":\"integer\"},\"createNote\":{\"description\":\"Oluşturma esnasında verilebilecek serbest açıklama alanı.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adı\",\"type\":\"string\"},\"genderId\":{\"format\":\"int64\",\"description\":\"Cinsiyeti\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadı\",\"type\":\"string\"},\"maritalStatusId\":{\"format\":\"int64\",\"description\":\"Medeni durumu\",\"type\":\"integer\"},\"tekamulGraduationDate\":{\"format\":\"date-time\",\"description\":\"Tekamulden mezun olduğu tarih\",\"type\":\"string\"},\"tekamulId\":{\"format\":\"int64\",\"description\":\"Mezun olduğu tekamul yurdu\",\"type\":\"integer\"}}},\"ContactInfoCreateDTO\":{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"AddressCreateDTO\":{\"title\":\"AddressCreateDTO\",\"description\":\" Kisi veya kurumun adres bilgisini olusturmak icin kullanılır.\\n Adrese ait lokasyon bilgisini içerisinde barındırır.\\n Lokasyon bilgisi önceden tanımlı olmalıdır. Lokasyon bilgisi alınırken lokasyon hierarşisinde kullanıcının seçtiği en altta kalan lokasyonun idsi yeterlidir.\\n Örneğin Türkiye - İstanbul - Ümraniye lokasyonu için sadece Ümraniyenin id sinin verilmesi yeterlidir.\",\"type\":\"object\",\"properties\":{\"address1\":{\"description\":\"Açık adres 1. satır\",\"type\":\"string\"},\"address2\":{\"description\":\"Açık adres 2. satır\",\"type\":\"string\"},\"address3\":{\"description\":\"Açık adres 3. satır\",\"type\":\"string\"},\"categories\":{\"description\":\"Adres kategorileri. İş adresi, Ev adresi, Öncelikli adres\",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Açık adres ve lokasyon bilgilerini içeren tam adres\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"locationId\":{\"format\":\"int64\",\"description\":\"Adresin bağlı olduğu en dip lokasyon bilgisi. Ümraniye, Üsküdar vb.\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/TeacherCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/TeacherProfileDTO\"}],\"definitions\":{\"TeacherProfileDTO\":{\"title\":\"TeacherProfileDTO\",\"description\":\"Personel kimlik bilgileri ve uzmanlık alanları ile ilgili bilgileri tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"educationalStage\":{\"$ref\":\"#/definitions/EducationalStageLOV\"},\"generalInfo\":{\"$ref\":\"#/definitions/PersonalGeneralInfoDTO\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"identification\":{\"$ref\":\"#/definitions/TeacherIdentificationInfoDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"organizationLevel\":{\"$ref\":\"#/definitions/OrganizationLevelDTO\"}}},\"OrganizationLevelDTO\":{\"title\":\"OrganizationLevelDTO\",\"description\":\"Tüzel veya gerçek kişilerin organizasyon ağacındaki hierarşisini taşır.\",\"type\":\"object\",\"properties\":{\"bolge\":{\"$ref\":\"#/definitions/BolgeLOV\"},\"corporation\":{\"$ref\":\"#/definitions/CorporationLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"mintika\":{\"$ref\":\"#/definitions/MintikaLOV\"}}},\"MintikaLOV\":{\"title\":\"MintikaLOV\",\"description\":\"Mintika tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Mintika adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"CorporationLOV\":{\"title\":\"CorporationLOV\",\"description\":\"Kurum tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Kurum adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"BolgeLOV\":{\"title\":\"BolgeLOV\",\"description\":\"Bolgeye ait tanimi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Bolge adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"TeacherIdentificationInfoDTO\":{\"title\":\"TeacherIdentificationInfoDTO\",\"description\":\"Personele ait kimlik bilgilerini tutar.\",\"type\":\"object\",\"properties\":{\"birthDate\":{\"format\":\"date-time\",\"description\":\"Dogum Tarihi\",\"type\":\"string\"},\"birthPlaceName\":{\"description\":\"Dogum Yeri adi\",\"type\":\"string\"},\"citizenNumber\":{\"description\":\"Vatandaslik numarasi\",\"type\":\"string\"},\"citizenshipId\":{\"$ref\":\"#/definitions/CitizenshipLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fatherName\":{\"description\":\"Baba adi\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adi\",\"type\":\"string\"},\"gender\":{\"$ref\":\"#/definitions/GenderLOV\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadi\",\"type\":\"string\"},\"maritalStatus\":{\"$ref\":\"#/definitions/MaritalStatusLOV\"},\"motherName\":{\"description\":\"Anne adi\",\"type\":\"string\"}}},\"MaritalStatusLOV\":{\"title\":\"MaritalStatusLOV\",\"description\":\"Medeni hal durum tanimlerini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Adi\",\"type\":\"string\"}}},\"GenderLOV\":{\"title\":\"GenderLOV\",\"description\":\"Cinsiyet tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Cinsiyet adi\",\"type\":\"string\"}}},\"CitizenshipLOV\":{\"title\":\"CitizenshipLOV\",\"description\":\"Vatandaşlık bilgilerini taşır\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Vatan adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"PersonalGeneralInfoDTO\":{\"title\":\"PersonalGeneralInfoDTO\",\"description\":\"Personele ait genel tanımları tutar.( Hocaefendi, eğitim sorumlusu vb. )\",\"type\":\"object\",\"properties\":{\"childrenCount\":{\"format\":\"int32\",\"description\":\"Cocuk sayisi\",\"type\":\"integer\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"driverLicense\":{\"description\":\"Surucu belgeleri\",\"type\":\"array\",\"items\":{\"type\":\"string\"}},\"employmentStatus\":{\"description\":\"Vazife durumu\",\"type\":\"boolean\"},\"houseOwner\":{\"description\":\"Personelin ev sahipligi bilgisi\",\"type\":\"boolean\"},\"insurance\":{\"description\":\"Sigortalilik durumu\",\"type\":\"boolean\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"residenceType\":{\"$ref\":\"#/definitions/ResidenceTypeLOV\"}}},\"ResidenceTypeLOV\":{\"title\":\"ResidenceTypeLOV\",\"description\":\"Ikamet tür tanımlarını tutar. Örneğin; Kira, Kendi evi \",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Ikamet tür adı\",\"type\":\"string\"}}},\"EducationalStageLOV\":{\"title\":\"EducationalStageLOV\",\"description\":\"Eğitim kategorilerini tutar. Örneğin; Ön lisans, Lisans vb.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Name information\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/TeacherProfileDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"address\": {\n \"address1\": \"in ex ipsum cillum\",\n \"address2\": \"non\",\n \"address3\": \"non ullamco\",\n \"categories\": [],\n \"createdBy\": \"ad eiusmod Duis co\",\n \"createdDate\": \"1942-09-30T01:26:49.721Z\",\n \"fullAddress\": \"nulla in adipisicing\",\n \"lastModifiedBy\": \"sunt officia laboris \",\n \"lastModifiedDate\": \"1942-01-31T00:41:51.047Z\",\n \"locationId\": 67980997\n },\n \"birthDate\": \"2006-08-10T11:36:01.654Z\",\n \"birthPlaceName\": \"aliqua nulla magna\",\n \"citizenNumber\": \"pariatur\",\n \"citizenshipId\": -51721769,\n \"contacts\": [],\n \"corporationId\": -45237321,\n \"createNote\": \"Duis anim\",\n \"createdBy\": \"non occaecat anim sunt magna\",\n \"createdDate\": \"1999-09-30T22:59:56.173Z\",\n \"firstName\": \"d\",\n \"genderId\": -5886181,\n \"lastModifiedBy\": \"velit reprehenderit consequat veniam\",\n \"lastModifiedDate\": \"1972-07-19T06:19:23.616Z\",\n \"lastName\": \"sed nulla\",\n \"maritalStatusId\": -63378252,\n \"tekamulGraduationDate\": \"1982-09-10T11:09:12.082Z\",\n \"tekamulId\": 79835233\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/TeacherCreateDTO\"}],\"definitions\":{\"TeacherCreateDTO\":{\"title\":\"TeacherCreateDTO\",\"description\":\"Hocaefendi olusturmak için kullanılır. Şu an bu modelde vatandaşlık bilgisi alınmaktadır. Kimliğin ait olduğu ülke(citizenship) alınmaktadır. Nationality bilgisi yani doğduğu ülke bilgisi alınmamaktadır. \\\"pronunciationFullName\\\": \\\"some text\\\", \\\"regionalFullName\\\": \\\"some text\\\" Yukarıdaki bilgiler inputta alınmayacak şimdilik firstName ve lastName birleştirilip regionalFullName e basılacak.\",\"type\":\"object\",\"properties\":{\"address\":{\"$ref\":\"#/definitions/AddressCreateDTO\"},\"birthDate\":{\"format\":\"date-time\",\"description\":\"Doğum tarihi\",\"type\":\"string\"},\"birthPlaceName\":{\"description\":\"Doğduğu yer\",\"type\":\"string\"},\"citizenNumber\":{\"description\":\"Vatandaşlık numarası\",\"type\":\"string\"},\"citizenshipId\":{\"format\":\"int64\",\"description\":\"Kimlik sahibi olduğu ülke\",\"type\":\"integer\"},\"contacts\":{\"description\":\"İletişim bilgileri\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactInfoCreateDTO\"}},\"corporationId\":{\"format\":\"int64\",\"description\":\"Personelin ait olduğu kurum\",\"type\":\"integer\"},\"createNote\":{\"description\":\"Oluşturma esnasında verilebilecek serbest açıklama alanı.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adı\",\"type\":\"string\"},\"genderId\":{\"format\":\"int64\",\"description\":\"Cinsiyeti\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadı\",\"type\":\"string\"},\"maritalStatusId\":{\"format\":\"int64\",\"description\":\"Medeni durumu\",\"type\":\"integer\"},\"tekamulGraduationDate\":{\"format\":\"date-time\",\"description\":\"Tekamulden mezun olduğu tarih\",\"type\":\"string\"},\"tekamulId\":{\"format\":\"int64\",\"description\":\"Mezun olduğu tekamul yurdu\",\"type\":\"integer\"}}},\"ContactInfoCreateDTO\":{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"AddressCreateDTO\":{\"title\":\"AddressCreateDTO\",\"description\":\" Kisi veya kurumun adres bilgisini olusturmak icin kullanılır.\\n Adrese ait lokasyon bilgisini içerisinde barındırır.\\n Lokasyon bilgisi önceden tanımlı olmalıdır. Lokasyon bilgisi alınırken lokasyon hierarşisinde kullanıcının seçtiği en altta kalan lokasyonun idsi yeterlidir.\\n Örneğin Türkiye - İstanbul - Ümraniye lokasyonu için sadece Ümraniyenin id sinin verilmesi yeterlidir.\",\"type\":\"object\",\"properties\":{\"address1\":{\"description\":\"Açık adres 1. satır\",\"type\":\"string\"},\"address2\":{\"description\":\"Açık adres 2. satır\",\"type\":\"string\"},\"address3\":{\"description\":\"Açık adres 3. satır\",\"type\":\"string\"},\"categories\":{\"description\":\"Adres kategorileri. İş adresi, Ev adresi, Öncelikli adres\",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Açık adres ve lokasyon bilgilerini içeren tam adres\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"locationId\":{\"format\":\"int64\",\"description\":\"Adresin bağlı olduğu en dip lokasyon bilgisi. Ümraniye, Üsküdar vb.\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/TeacherCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Successful response." + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/TeacherProfileDTO\"}],\"definitions\":{\"TeacherProfileDTO\":{\"title\":\"TeacherProfileDTO\",\"description\":\"Personel kimlik bilgileri ve uzmanlık alanları ile ilgili bilgileri tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"educationalStage\":{\"$ref\":\"#/definitions/EducationalStageLOV\"},\"generalInfo\":{\"$ref\":\"#/definitions/PersonalGeneralInfoDTO\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"identification\":{\"$ref\":\"#/definitions/TeacherIdentificationInfoDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"organizationLevel\":{\"$ref\":\"#/definitions/OrganizationLevelDTO\"}}},\"OrganizationLevelDTO\":{\"title\":\"OrganizationLevelDTO\",\"description\":\"Tüzel veya gerçek kişilerin organizasyon ağacındaki hierarşisini taşır.\",\"type\":\"object\",\"properties\":{\"bolge\":{\"$ref\":\"#/definitions/BolgeLOV\"},\"corporation\":{\"$ref\":\"#/definitions/CorporationLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"mintika\":{\"$ref\":\"#/definitions/MintikaLOV\"}}},\"MintikaLOV\":{\"title\":\"MintikaLOV\",\"description\":\"Mintika tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Mintika adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"CorporationLOV\":{\"title\":\"CorporationLOV\",\"description\":\"Kurum tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Kurum adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"BolgeLOV\":{\"title\":\"BolgeLOV\",\"description\":\"Bolgeye ait tanimi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Bolge adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"TeacherIdentificationInfoDTO\":{\"title\":\"TeacherIdentificationInfoDTO\",\"description\":\"Personele ait kimlik bilgilerini tutar.\",\"type\":\"object\",\"properties\":{\"birthDate\":{\"format\":\"date-time\",\"description\":\"Dogum Tarihi\",\"type\":\"string\"},\"birthPlaceName\":{\"description\":\"Dogum Yeri adi\",\"type\":\"string\"},\"citizenNumber\":{\"description\":\"Vatandaslik numarasi\",\"type\":\"string\"},\"citizenshipId\":{\"$ref\":\"#/definitions/CitizenshipLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fatherName\":{\"description\":\"Baba adi\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adi\",\"type\":\"string\"},\"gender\":{\"$ref\":\"#/definitions/GenderLOV\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadi\",\"type\":\"string\"},\"maritalStatus\":{\"$ref\":\"#/definitions/MaritalStatusLOV\"},\"motherName\":{\"description\":\"Anne adi\",\"type\":\"string\"}}},\"MaritalStatusLOV\":{\"title\":\"MaritalStatusLOV\",\"description\":\"Medeni hal durum tanimlerini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Adi\",\"type\":\"string\"}}},\"GenderLOV\":{\"title\":\"GenderLOV\",\"description\":\"Cinsiyet tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Cinsiyet adi\",\"type\":\"string\"}}},\"CitizenshipLOV\":{\"title\":\"CitizenshipLOV\",\"description\":\"Vatandaşlık bilgilerini taşır\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Vatan adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"PersonalGeneralInfoDTO\":{\"title\":\"PersonalGeneralInfoDTO\",\"description\":\"Personele ait genel tanımları tutar.( Hocaefendi, eğitim sorumlusu vb. )\",\"type\":\"object\",\"properties\":{\"childrenCount\":{\"format\":\"int32\",\"description\":\"Cocuk sayisi\",\"type\":\"integer\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"driverLicense\":{\"description\":\"Surucu belgeleri\",\"type\":\"array\",\"items\":{\"type\":\"string\"}},\"employmentStatus\":{\"description\":\"Vazife durumu\",\"type\":\"boolean\"},\"houseOwner\":{\"description\":\"Personelin ev sahipligi bilgisi\",\"type\":\"boolean\"},\"insurance\":{\"description\":\"Sigortalilik durumu\",\"type\":\"boolean\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"residenceType\":{\"$ref\":\"#/definitions/ResidenceTypeLOV\"}}},\"ResidenceTypeLOV\":{\"title\":\"ResidenceTypeLOV\",\"description\":\"Ikamet tür tanımlarını tutar. Örneğin; Kira, Kendi evi \",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Ikamet tür adı\",\"type\":\"string\"}}},\"EducationalStageLOV\":{\"title\":\"EducationalStageLOV\",\"description\":\"Eğitim kategorilerini tutar. Örneğin; Ön lisans, Lisans vb.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Name information\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/TeacherProfileDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"address\": {\n \"address1\": \"aliquip pariatur Lorem ad\",\n \"address2\": \"cupidatat\",\n \"address3\": \"velit enim commodo proident\",\n \"categories\": [],\n \"createdBy\": \"ullamco Lorem\",\n \"createdDate\": \"1986-01-29T06:50:32.601Z\",\n \"fullAddress\": \"labore\",\n \"lastModifiedBy\": \"dolore dolor minim\",\n \"lastModifiedDate\": \"1995-08-03T09:19:27.779Z\",\n \"locationId\": -19662209\n },\n \"birthDate\": \"1997-08-02T20:49:59.131Z\",\n \"birthPlaceName\": \"incididunt veniam nisi\",\n \"citizenNumber\": \"et non fugiat esse ex\",\n \"citizenshipId\": 95074997,\n \"contacts\": [],\n \"corporationId\": 85887103,\n \"createNote\": \"aute ipsum tempor dolore sint\",\n \"createdBy\": \"eu\",\n \"createdDate\": \"1986-07-31T11:00:43.205Z\",\n \"firstName\": \"velit dolore\",\n \"genderId\": 87443126,\n \"lastModifiedBy\": \"enim\",\n \"lastModifiedDate\": \"1948-01-22T23:45:32.468Z\",\n \"lastName\": \"nostrud culpa\",\n \"maritalStatusId\": -71833357,\n \"tekamulGraduationDate\": \"1998-07-23T11:15:35.156Z\",\n \"tekamulId\": -88546241\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/TeacherCreateDTO\"}],\"definitions\":{\"TeacherCreateDTO\":{\"title\":\"TeacherCreateDTO\",\"description\":\"Hocaefendi olusturmak için kullanılır. Şu an bu modelde vatandaşlık bilgisi alınmaktadır. Kimliğin ait olduğu ülke(citizenship) alınmaktadır. Nationality bilgisi yani doğduğu ülke bilgisi alınmamaktadır. \\\"pronunciationFullName\\\": \\\"some text\\\", \\\"regionalFullName\\\": \\\"some text\\\" Yukarıdaki bilgiler inputta alınmayacak şimdilik firstName ve lastName birleştirilip regionalFullName e basılacak.\",\"type\":\"object\",\"properties\":{\"address\":{\"$ref\":\"#/definitions/AddressCreateDTO\"},\"birthDate\":{\"format\":\"date-time\",\"description\":\"Doğum tarihi\",\"type\":\"string\"},\"birthPlaceName\":{\"description\":\"Doğduğu yer\",\"type\":\"string\"},\"citizenNumber\":{\"description\":\"Vatandaşlık numarası\",\"type\":\"string\"},\"citizenshipId\":{\"format\":\"int64\",\"description\":\"Kimlik sahibi olduğu ülke\",\"type\":\"integer\"},\"contacts\":{\"description\":\"İletişim bilgileri\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactInfoCreateDTO\"}},\"corporationId\":{\"format\":\"int64\",\"description\":\"Personelin ait olduğu kurum\",\"type\":\"integer\"},\"createNote\":{\"description\":\"Oluşturma esnasında verilebilecek serbest açıklama alanı.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adı\",\"type\":\"string\"},\"genderId\":{\"format\":\"int64\",\"description\":\"Cinsiyeti\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadı\",\"type\":\"string\"},\"maritalStatusId\":{\"format\":\"int64\",\"description\":\"Medeni durumu\",\"type\":\"integer\"},\"tekamulGraduationDate\":{\"format\":\"date-time\",\"description\":\"Tekamulden mezun olduğu tarih\",\"type\":\"string\"},\"tekamulId\":{\"format\":\"int64\",\"description\":\"Mezun olduğu tekamul yurdu\",\"type\":\"integer\"}}},\"ContactInfoCreateDTO\":{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"AddressCreateDTO\":{\"title\":\"AddressCreateDTO\",\"description\":\" Kisi veya kurumun adres bilgisini olusturmak icin kullanılır.\\n Adrese ait lokasyon bilgisini içerisinde barındırır.\\n Lokasyon bilgisi önceden tanımlı olmalıdır. Lokasyon bilgisi alınırken lokasyon hierarşisinde kullanıcının seçtiği en altta kalan lokasyonun idsi yeterlidir.\\n Örneğin Türkiye - İstanbul - Ümraniye lokasyonu için sadece Ümraniyenin id sinin verilmesi yeterlidir.\",\"type\":\"object\",\"properties\":{\"address1\":{\"description\":\"Açık adres 1. satır\",\"type\":\"string\"},\"address2\":{\"description\":\"Açık adres 2. satır\",\"type\":\"string\"},\"address3\":{\"description\":\"Açık adres 3. satır\",\"type\":\"string\"},\"categories\":{\"description\":\"Adres kategorileri. İş adresi, Ev adresi, Öncelikli adres\",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Açık adres ve lokasyon bilgilerini içeren tam adres\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"locationId\":{\"format\":\"int64\",\"description\":\"Adresin bağlı olduğu en dip lokasyon bilgisi. Ümraniye, Üsküdar vb.\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/TeacherCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"address\": {\n \"address1\": \"mollit et\",\n \"address2\": \"exercitation\",\n \"address3\": \"quis culpa \",\n \"categories\": [],\n \"createdBy\": \"quis eu dolor commodo\",\n \"createdDate\": \"1977-10-14T13:52:30.906Z\",\n \"fullAddress\": \"L\",\n \"lastModifiedBy\": \"adipisicing Lorem velit sint occaecat\",\n \"lastModifiedDate\": \"1967-07-29T13:56:56.962Z\",\n \"locationId\": 79433673\n },\n \"birthDate\": \"2013-12-18T12:39:05.957Z\",\n \"birthPlaceName\": \"aliquip est pariatur non pro\",\n \"citizenNumber\": \"dolo\",\n \"citizenshipId\": 45363121,\n \"contacts\": [],\n \"corporationId\": -69197784,\n \"createNote\": \"consequat minim velit consectetur\",\n \"createdBy\": \"veniam quis\",\n \"createdDate\": \"2017-06-21T20:58:28.389Z\",\n \"firstName\": \"ea\",\n \"genderId\": 9036526,\n \"lastModifiedBy\": \"minim culpa veniam fugiat eiusmod\",\n \"lastModifiedDate\": \"1982-11-21T10:08:49.888Z\",\n \"lastName\": \"U\",\n \"maritalStatusId\": -54140977,\n \"tekamulGraduationDate\": \"1995-06-02T00:23:11.375Z\",\n \"tekamulId\": 44605725\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/TeacherCreateDTO\"}],\"definitions\":{\"TeacherCreateDTO\":{\"title\":\"TeacherCreateDTO\",\"description\":\"Hocaefendi olusturmak için kullanılır. Şu an bu modelde vatandaşlık bilgisi alınmaktadır. Kimliğin ait olduğu ülke(citizenship) alınmaktadır. Nationality bilgisi yani doğduğu ülke bilgisi alınmamaktadır. \\\"pronunciationFullName\\\": \\\"some text\\\", \\\"regionalFullName\\\": \\\"some text\\\" Yukarıdaki bilgiler inputta alınmayacak şimdilik firstName ve lastName birleştirilip regionalFullName e basılacak.\",\"type\":\"object\",\"properties\":{\"address\":{\"$ref\":\"#/definitions/AddressCreateDTO\"},\"birthDate\":{\"format\":\"date-time\",\"description\":\"Doğum tarihi\",\"type\":\"string\"},\"birthPlaceName\":{\"description\":\"Doğduğu yer\",\"type\":\"string\"},\"citizenNumber\":{\"description\":\"Vatandaşlık numarası\",\"type\":\"string\"},\"citizenshipId\":{\"format\":\"int64\",\"description\":\"Kimlik sahibi olduğu ülke\",\"type\":\"integer\"},\"contacts\":{\"description\":\"İletişim bilgileri\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactInfoCreateDTO\"}},\"corporationId\":{\"format\":\"int64\",\"description\":\"Personelin ait olduğu kurum\",\"type\":\"integer\"},\"createNote\":{\"description\":\"Oluşturma esnasında verilebilecek serbest açıklama alanı.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adı\",\"type\":\"string\"},\"genderId\":{\"format\":\"int64\",\"description\":\"Cinsiyeti\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadı\",\"type\":\"string\"},\"maritalStatusId\":{\"format\":\"int64\",\"description\":\"Medeni durumu\",\"type\":\"integer\"},\"tekamulGraduationDate\":{\"format\":\"date-time\",\"description\":\"Tekamulden mezun olduğu tarih\",\"type\":\"string\"},\"tekamulId\":{\"format\":\"int64\",\"description\":\"Mezun olduğu tekamul yurdu\",\"type\":\"integer\"}}},\"ContactInfoCreateDTO\":{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"AddressCreateDTO\":{\"title\":\"AddressCreateDTO\",\"description\":\" Kisi veya kurumun adres bilgisini olusturmak icin kullanılır.\\n Adrese ait lokasyon bilgisini içerisinde barındırır.\\n Lokasyon bilgisi önceden tanımlı olmalıdır. Lokasyon bilgisi alınırken lokasyon hierarşisinde kullanıcının seçtiği en altta kalan lokasyonun idsi yeterlidir.\\n Örneğin Türkiye - İstanbul - Ümraniye lokasyonu için sadece Ümraniyenin id sinin verilmesi yeterlidir.\",\"type\":\"object\",\"properties\":{\"address1\":{\"description\":\"Açık adres 1. satır\",\"type\":\"string\"},\"address2\":{\"description\":\"Açık adres 2. satır\",\"type\":\"string\"},\"address3\":{\"description\":\"Açık adres 3. satır\",\"type\":\"string\"},\"categories\":{\"description\":\"Adres kategorileri. İş adresi, Ev adresi, Öncelikli adres\",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Açık adres ve lokasyon bilgilerini içeren tam adres\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"locationId\":{\"format\":\"int64\",\"description\":\"Adresin bağlı olduğu en dip lokasyon bilgisi. Ümraniye, Üsküdar vb.\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/TeacherCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"address\": {\n \"address1\": \"occaecat ex proident Duis\",\n \"address2\": \"exercitation\",\n \"address3\": \"Duis elit sunt aliqua\",\n \"categories\": [],\n \"createdBy\": \"est dolore irure\",\n \"createdDate\": \"1983-02-13T15:09:29.226Z\",\n \"fullAddress\": \"elit ullamco anim Ut sit\",\n \"lastModifiedBy\": \"ex\",\n \"lastModifiedDate\": \"2014-04-04T11:53:29.731Z\",\n \"locationId\": -12019852\n },\n \"birthDate\": \"1954-12-18T03:41:51.568Z\",\n \"birthPlaceName\": \"esse in pariatur\",\n \"citizenNumber\": \"id dolor enim aute anim\",\n \"citizenshipId\": 93842313,\n \"contacts\": [],\n \"corporationId\": -4524024,\n \"createNote\": \"irure cupidatat enim adipisicing\",\n \"createdBy\": \"Excepteur velit Ut quis irure\",\n \"createdDate\": \"1969-02-01T04:01:31.357Z\",\n \"firstName\": \"amet nostrud ex velit aute\",\n \"genderId\": -53174005,\n \"lastModifiedBy\": \"ea\",\n \"lastModifiedDate\": \"2017-09-08T09:28:13.483Z\",\n \"lastName\": \"ut tempor irure ut reprehenderit\",\n \"maritalStatusId\": -23586011,\n \"tekamulGraduationDate\": \"1945-06-10T07:28:27.177Z\",\n \"tekamulId\": -50834034\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/TeacherCreateDTO\"}],\"definitions\":{\"TeacherCreateDTO\":{\"title\":\"TeacherCreateDTO\",\"description\":\"Hocaefendi olusturmak için kullanılır. Şu an bu modelde vatandaşlık bilgisi alınmaktadır. Kimliğin ait olduğu ülke(citizenship) alınmaktadır. Nationality bilgisi yani doğduğu ülke bilgisi alınmamaktadır. \\\"pronunciationFullName\\\": \\\"some text\\\", \\\"regionalFullName\\\": \\\"some text\\\" Yukarıdaki bilgiler inputta alınmayacak şimdilik firstName ve lastName birleştirilip regionalFullName e basılacak.\",\"type\":\"object\",\"properties\":{\"address\":{\"$ref\":\"#/definitions/AddressCreateDTO\"},\"birthDate\":{\"format\":\"date-time\",\"description\":\"Doğum tarihi\",\"type\":\"string\"},\"birthPlaceName\":{\"description\":\"Doğduğu yer\",\"type\":\"string\"},\"citizenNumber\":{\"description\":\"Vatandaşlık numarası\",\"type\":\"string\"},\"citizenshipId\":{\"format\":\"int64\",\"description\":\"Kimlik sahibi olduğu ülke\",\"type\":\"integer\"},\"contacts\":{\"description\":\"İletişim bilgileri\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactInfoCreateDTO\"}},\"corporationId\":{\"format\":\"int64\",\"description\":\"Personelin ait olduğu kurum\",\"type\":\"integer\"},\"createNote\":{\"description\":\"Oluşturma esnasında verilebilecek serbest açıklama alanı.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adı\",\"type\":\"string\"},\"genderId\":{\"format\":\"int64\",\"description\":\"Cinsiyeti\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadı\",\"type\":\"string\"},\"maritalStatusId\":{\"format\":\"int64\",\"description\":\"Medeni durumu\",\"type\":\"integer\"},\"tekamulGraduationDate\":{\"format\":\"date-time\",\"description\":\"Tekamulden mezun olduğu tarih\",\"type\":\"string\"},\"tekamulId\":{\"format\":\"int64\",\"description\":\"Mezun olduğu tekamul yurdu\",\"type\":\"integer\"}}},\"ContactInfoCreateDTO\":{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"AddressCreateDTO\":{\"title\":\"AddressCreateDTO\",\"description\":\" Kisi veya kurumun adres bilgisini olusturmak icin kullanılır.\\n Adrese ait lokasyon bilgisini içerisinde barındırır.\\n Lokasyon bilgisi önceden tanımlı olmalıdır. Lokasyon bilgisi alınırken lokasyon hierarşisinde kullanıcının seçtiği en altta kalan lokasyonun idsi yeterlidir.\\n Örneğin Türkiye - İstanbul - Ümraniye lokasyonu için sadece Ümraniyenin id sinin verilmesi yeterlidir.\",\"type\":\"object\",\"properties\":{\"address1\":{\"description\":\"Açık adres 1. satır\",\"type\":\"string\"},\"address2\":{\"description\":\"Açık adres 2. satır\",\"type\":\"string\"},\"address3\":{\"description\":\"Açık adres 3. satır\",\"type\":\"string\"},\"categories\":{\"description\":\"Adres kategorileri. İş adresi, Ev adresi, Öncelikli adres\",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Açık adres ve lokasyon bilgilerini içeren tam adres\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"locationId\":{\"format\":\"int64\",\"description\":\"Adresin bağlı olduğu en dip lokasyon bilgisi. Ümraniye, Üsküdar vb.\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/TeacherCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"address\": {\n \"address1\": \"Excepteur in\",\n \"address2\": \"labore tempor aute nostrud dolore\",\n \"address3\": \"id irure\",\n \"categories\": [],\n \"createdBy\": \"ut nulla quis ut\",\n \"createdDate\": \"1977-07-17T07:22:54.751Z\",\n \"fullAddress\": \"irure ni\",\n \"lastModifiedBy\": \"eu\",\n \"lastModifiedDate\": \"1984-11-16T16:41:54.481Z\",\n \"locationId\": -4735191\n },\n \"birthDate\": \"1970-06-05T11:44:14.429Z\",\n \"birthPlaceName\": \"laboris occaecat voluptate\",\n \"citizenNumber\": \"est anim\",\n \"citizenshipId\": 21159829,\n \"contacts\": [],\n \"corporationId\": -89378803,\n \"createNote\": \"pariatur laborum\",\n \"createdBy\": \"ullam\",\n \"createdDate\": \"1966-10-14T23:05:34.206Z\",\n \"firstName\": \"laborum nostrud sunt cupidatat officia\",\n \"genderId\": -11078884,\n \"lastModifiedBy\": \"ex Ut dolor\",\n \"lastModifiedDate\": \"1993-09-20T21:00:17.266Z\",\n \"lastName\": \"officia commodo ad tempor\",\n \"maritalStatusId\": -70031362,\n \"tekamulGraduationDate\": \"1966-10-17T16:34:04.142Z\",\n \"tekamulId\": -32585548\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/TeacherCreateDTO\"}],\"definitions\":{\"TeacherCreateDTO\":{\"title\":\"TeacherCreateDTO\",\"description\":\"Hocaefendi olusturmak için kullanılır. Şu an bu modelde vatandaşlık bilgisi alınmaktadır. Kimliğin ait olduğu ülke(citizenship) alınmaktadır. Nationality bilgisi yani doğduğu ülke bilgisi alınmamaktadır. \\\"pronunciationFullName\\\": \\\"some text\\\", \\\"regionalFullName\\\": \\\"some text\\\" Yukarıdaki bilgiler inputta alınmayacak şimdilik firstName ve lastName birleştirilip regionalFullName e basılacak.\",\"type\":\"object\",\"properties\":{\"address\":{\"$ref\":\"#/definitions/AddressCreateDTO\"},\"birthDate\":{\"format\":\"date-time\",\"description\":\"Doğum tarihi\",\"type\":\"string\"},\"birthPlaceName\":{\"description\":\"Doğduğu yer\",\"type\":\"string\"},\"citizenNumber\":{\"description\":\"Vatandaşlık numarası\",\"type\":\"string\"},\"citizenshipId\":{\"format\":\"int64\",\"description\":\"Kimlik sahibi olduğu ülke\",\"type\":\"integer\"},\"contacts\":{\"description\":\"İletişim bilgileri\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactInfoCreateDTO\"}},\"corporationId\":{\"format\":\"int64\",\"description\":\"Personelin ait olduğu kurum\",\"type\":\"integer\"},\"createNote\":{\"description\":\"Oluşturma esnasında verilebilecek serbest açıklama alanı.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adı\",\"type\":\"string\"},\"genderId\":{\"format\":\"int64\",\"description\":\"Cinsiyeti\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadı\",\"type\":\"string\"},\"maritalStatusId\":{\"format\":\"int64\",\"description\":\"Medeni durumu\",\"type\":\"integer\"},\"tekamulGraduationDate\":{\"format\":\"date-time\",\"description\":\"Tekamulden mezun olduğu tarih\",\"type\":\"string\"},\"tekamulId\":{\"format\":\"int64\",\"description\":\"Mezun olduğu tekamul yurdu\",\"type\":\"integer\"}}},\"ContactInfoCreateDTO\":{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"AddressCreateDTO\":{\"title\":\"AddressCreateDTO\",\"description\":\" Kisi veya kurumun adres bilgisini olusturmak icin kullanılır.\\n Adrese ait lokasyon bilgisini içerisinde barındırır.\\n Lokasyon bilgisi önceden tanımlı olmalıdır. Lokasyon bilgisi alınırken lokasyon hierarşisinde kullanıcının seçtiği en altta kalan lokasyonun idsi yeterlidir.\\n Örneğin Türkiye - İstanbul - Ümraniye lokasyonu için sadece Ümraniyenin id sinin verilmesi yeterlidir.\",\"type\":\"object\",\"properties\":{\"address1\":{\"description\":\"Açık adres 1. satır\",\"type\":\"string\"},\"address2\":{\"description\":\"Açık adres 2. satır\",\"type\":\"string\"},\"address3\":{\"description\":\"Açık adres 3. satır\",\"type\":\"string\"},\"categories\":{\"description\":\"Adres kategorileri. İş adresi, Ev adresi, Öncelikli adres\",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Açık adres ve lokasyon bilgilerini içeren tam adres\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"locationId\":{\"format\":\"int64\",\"description\":\"Adresin bağlı olduğu en dip lokasyon bilgisi. Ümraniye, Üsküdar vb.\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/TeacherCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "1-Zorunluluk kontrolleri 2-Tc kimlik offline doğrulama( Türkiye için ) 3-Email format uyumsuzluğu 4-Telefon format uyumsuzluğu 5-Vatandaşlık ve vatandaşlık numarası unique kontrolü 6-Mail adresi unique kontrolü 7-Doğum tarihi bu günden büyük olamaz 8-Tekamul mezuniyet tarihi bu günden büyük olamaz" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/teachers/{id}" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Tek bir teacher bilgisini verir. Teacher ile ilgili profilde goruntulenmesi istenen temel bilgiler yer alır." + }, + "id": { + "element": "string", + "content": "getTeacherDTO" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "A unique identifier for a `TeacherDTO`." + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Gets the details of a single instance of a `TeacherDTO`." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "Successful response - returns a single `TeacherDTO`." + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/TeacherProfileDTO\"}],\"definitions\":{\"TeacherProfileDTO\":{\"title\":\"TeacherProfileDTO\",\"description\":\"Personel kimlik bilgileri ve uzmanlık alanları ile ilgili bilgileri tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"educationalStage\":{\"$ref\":\"#/definitions/EducationalStageLOV\"},\"generalInfo\":{\"$ref\":\"#/definitions/PersonalGeneralInfoDTO\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"identification\":{\"$ref\":\"#/definitions/TeacherIdentificationInfoDTO\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"organizationLevel\":{\"$ref\":\"#/definitions/OrganizationLevelDTO\"}}},\"OrganizationLevelDTO\":{\"title\":\"OrganizationLevelDTO\",\"description\":\"Tüzel veya gerçek kişilerin organizasyon ağacındaki hierarşisini taşır.\",\"type\":\"object\",\"properties\":{\"bolge\":{\"$ref\":\"#/definitions/BolgeLOV\"},\"corporation\":{\"$ref\":\"#/definitions/CorporationLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"mintika\":{\"$ref\":\"#/definitions/MintikaLOV\"}}},\"MintikaLOV\":{\"title\":\"MintikaLOV\",\"description\":\"Mintika tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Mintika adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"CorporationLOV\":{\"title\":\"CorporationLOV\",\"description\":\"Kurum tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Kurum adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"BolgeLOV\":{\"title\":\"BolgeLOV\",\"description\":\"Bolgeye ait tanimi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Bolge adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"TeacherIdentificationInfoDTO\":{\"title\":\"TeacherIdentificationInfoDTO\",\"description\":\"Personele ait kimlik bilgilerini tutar.\",\"type\":\"object\",\"properties\":{\"birthDate\":{\"format\":\"date-time\",\"description\":\"Dogum Tarihi\",\"type\":\"string\"},\"birthPlaceName\":{\"description\":\"Dogum Yeri adi\",\"type\":\"string\"},\"citizenNumber\":{\"description\":\"Vatandaslik numarasi\",\"type\":\"string\"},\"citizenshipId\":{\"$ref\":\"#/definitions/CitizenshipLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fatherName\":{\"description\":\"Baba adi\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adi\",\"type\":\"string\"},\"gender\":{\"$ref\":\"#/definitions/GenderLOV\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadi\",\"type\":\"string\"},\"maritalStatus\":{\"$ref\":\"#/definitions/MaritalStatusLOV\"},\"motherName\":{\"description\":\"Anne adi\",\"type\":\"string\"}}},\"MaritalStatusLOV\":{\"title\":\"MaritalStatusLOV\",\"description\":\"Medeni hal durum tanimlerini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Adi\",\"type\":\"string\"}}},\"GenderLOV\":{\"title\":\"GenderLOV\",\"description\":\"Cinsiyet tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Cinsiyet adi\",\"type\":\"string\"}}},\"CitizenshipLOV\":{\"title\":\"CitizenshipLOV\",\"description\":\"Vatandaşlık bilgilerini taşır\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Vatan adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}},\"PersonalGeneralInfoDTO\":{\"title\":\"PersonalGeneralInfoDTO\",\"description\":\"Personele ait genel tanımları tutar.( Hocaefendi, eğitim sorumlusu vb. )\",\"type\":\"object\",\"properties\":{\"childrenCount\":{\"format\":\"int32\",\"description\":\"Cocuk sayisi\",\"type\":\"integer\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"driverLicense\":{\"description\":\"Surucu belgeleri\",\"type\":\"array\",\"items\":{\"type\":\"string\"}},\"employmentStatus\":{\"description\":\"Vazife durumu\",\"type\":\"boolean\"},\"houseOwner\":{\"description\":\"Personelin ev sahipligi bilgisi\",\"type\":\"boolean\"},\"insurance\":{\"description\":\"Sigortalilik durumu\",\"type\":\"boolean\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"residenceType\":{\"$ref\":\"#/definitions/ResidenceTypeLOV\"}}},\"ResidenceTypeLOV\":{\"title\":\"ResidenceTypeLOV\",\"description\":\"Ikamet tür tanımlarını tutar. Örneğin; Kira, Kendi evi \",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Ikamet tür adı\",\"type\":\"string\"}}},\"EducationalStageLOV\":{\"title\":\"EducationalStageLOV\",\"description\":\"Eğitim kategorilerini tutar. Örneğin; Ön lisans, Lisans vb.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Name information\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/TeacherProfileDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Teacher not found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/teachers/{id}/addresses" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Personele ait tüm adres kategorilerindeki adres bilgilerini verir. Tüm adres kategorisi : İletişim adresi, Öncelikli adresi, Kullanım adresi vb." + }, + "id": { + "element": "string", + "content": "getAllTeacherAddresses" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Teacher ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Gets a list of all `Address` entities of `Teacher`." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "List of all `Address` entities of `Teacher`." + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/AddressCardDTO\"},\"definitions\":{\"AddressCardDTO\":{\"title\":\"AddressCardDTO\",\"description\":\"Address bilgisini sunar. Sadece full address bilgisini ve kategorisini verir.\\n Adres kategorisine ait kategori adı bilgisi “ContactMediumType” dır.\\n Yani contact medium type \\\"iletişimde bulunulacak adresler\\\" bilgisini ifade eder.\",\"type\":\"object\",\"properties\":{\"addressCategory\":{\"description\":\"Address kategorisi\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Full address. İl ilçe mahalle sokak gibi bütün bilgileri içerir.\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"ContactMediumCategoryLOV\":{\"title\":\"ContactMediumCategoryLOV\",\"description\":\"Contact medium kategorileri. Bir kategori tipine ait veriyi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Category Name\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/AddressCardDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Personele yeni adres ekler" + }, + "id": { + "element": "string", + "content": "createTeacherAddress" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Personel ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Personele yeni adres ekleme servisidir. `ContactInfoCreateDTO` objesi kullanılır." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"address1\": \"occaecat Duis adipisicing\",\n \"address2\": \"veniam incididunt in\",\n \"address3\": \"ad deserunt pariatur ipsum\",\n \"categories\": [],\n \"createdBy\": \"non adipisicing\",\n \"createdDate\": \"1962-10-31T07:07:42.348Z\",\n \"fullAddress\": \"culpa qui\",\n \"lastModifiedBy\": \"exercitation non\",\n \"lastModifiedDate\": \"1981-03-31T01:36:10.937Z\",\n \"locationId\": 88878881\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"AddressCreateDTO\",\"description\":\" Kisi veya kurumun adres bilgisini olusturmak icin kullanılır.\\n Adrese ait lokasyon bilgisini içerisinde barındırır.\\n Lokasyon bilgisi önceden tanımlı olmalıdır. Lokasyon bilgisi alınırken lokasyon hierarşisinde kullanıcının seçtiği en altta kalan lokasyonun idsi yeterlidir.\\n Örneğin Türkiye - İstanbul - Ümraniye lokasyonu için sadece Ümraniyenin id sinin verilmesi yeterlidir.\",\"type\":\"object\",\"properties\":{\"address1\":{\"description\":\"Açık adres 1. satır\",\"type\":\"string\"},\"address2\":{\"description\":\"Açık adres 2. satır\",\"type\":\"string\"},\"address3\":{\"description\":\"Açık adres 3. satır\",\"type\":\"string\"},\"categories\":{\"description\":\"Adres kategorileri. İş adresi, Ev adresi, Öncelikli adres\",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Açık adres ve lokasyon bilgilerini içeren tam adres\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"locationId\":{\"format\":\"int64\",\"description\":\"Adresin bağlı olduğu en dip lokasyon bilgisi. Ümraniye, Üsküdar vb.\",\"type\":\"integer\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/AddressCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/AddressCardDTO\"}],\"definitions\":{\"AddressCardDTO\":{\"title\":\"AddressCardDTO\",\"description\":\"Address bilgisini sunar. Sadece full address bilgisini ve kategorisini verir.\\n Adres kategorisine ait kategori adı bilgisi “ContactMediumType” dır.\\n Yani contact medium type \\\"iletişimde bulunulacak adresler\\\" bilgisini ifade eder.\",\"type\":\"object\",\"properties\":{\"addressCategory\":{\"description\":\"Address kategorisi\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Full address. İl ilçe mahalle sokak gibi bütün bilgileri içerir.\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"ContactMediumCategoryLOV\":{\"title\":\"ContactMediumCategoryLOV\",\"description\":\"Contact medium kategorileri. Bir kategori tipine ait veriyi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Category Name\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/AddressCardDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"address1\": \"qui dolor\",\n \"address2\": \"officia sint\",\n \"address3\": \"cillum\",\n \"categories\": [],\n \"createdBy\": \"tempor\",\n \"createdDate\": \"2005-04-28T13:58:22.981Z\",\n \"fullAddress\": \"id et\",\n \"lastModifiedBy\": \"commodo pariat\",\n \"lastModifiedDate\": \"2004-01-28T12:42:17.047Z\",\n \"locationId\": 15457403\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"AddressCreateDTO\",\"description\":\" Kisi veya kurumun adres bilgisini olusturmak icin kullanılır.\\n Adrese ait lokasyon bilgisini içerisinde barındırır.\\n Lokasyon bilgisi önceden tanımlı olmalıdır. Lokasyon bilgisi alınırken lokasyon hierarşisinde kullanıcının seçtiği en altta kalan lokasyonun idsi yeterlidir.\\n Örneğin Türkiye - İstanbul - Ümraniye lokasyonu için sadece Ümraniyenin id sinin verilmesi yeterlidir.\",\"type\":\"object\",\"properties\":{\"address1\":{\"description\":\"Açık adres 1. satır\",\"type\":\"string\"},\"address2\":{\"description\":\"Açık adres 2. satır\",\"type\":\"string\"},\"address3\":{\"description\":\"Açık adres 3. satır\",\"type\":\"string\"},\"categories\":{\"description\":\"Adres kategorileri. İş adresi, Ev adresi, Öncelikli adres\",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Açık adres ve lokasyon bilgilerini içeren tam adres\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"locationId\":{\"format\":\"int64\",\"description\":\"Adresin bağlı olduğu en dip lokasyon bilgisi. Ümraniye, Üsküdar vb.\",\"type\":\"integer\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/AddressCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı." + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/AddressCardDTO\"}],\"definitions\":{\"AddressCardDTO\":{\"title\":\"AddressCardDTO\",\"description\":\"Address bilgisini sunar. Sadece full address bilgisini ve kategorisini verir.\\n Adres kategorisine ait kategori adı bilgisi “ContactMediumType” dır.\\n Yani contact medium type \\\"iletişimde bulunulacak adresler\\\" bilgisini ifade eder.\",\"type\":\"object\",\"properties\":{\"addressCategory\":{\"description\":\"Address kategorisi\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Full address. İl ilçe mahalle sokak gibi bütün bilgileri içerir.\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"ContactMediumCategoryLOV\":{\"title\":\"ContactMediumCategoryLOV\",\"description\":\"Contact medium kategorileri. Bir kategori tipine ait veriyi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Category Name\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/AddressCardDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"address1\": \"nulla aliqua ut\",\n \"address2\": \"sit non enim\",\n \"address3\": \"reprehenderit ullamco\",\n \"categories\": [],\n \"createdBy\": \"exercitation minim irure tempor et\",\n \"createdDate\": \"1969-01-08T16:27:11.986Z\",\n \"fullAddress\": \"consectet\",\n \"lastModifiedBy\": \"officia\",\n \"lastModifiedDate\": \"2007-09-05T01:02:34.192Z\",\n \"locationId\": 55304452\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"AddressCreateDTO\",\"description\":\" Kisi veya kurumun adres bilgisini olusturmak icin kullanılır.\\n Adrese ait lokasyon bilgisini içerisinde barındırır.\\n Lokasyon bilgisi önceden tanımlı olmalıdır. Lokasyon bilgisi alınırken lokasyon hierarşisinde kullanıcının seçtiği en altta kalan lokasyonun idsi yeterlidir.\\n Örneğin Türkiye - İstanbul - Ümraniye lokasyonu için sadece Ümraniyenin id sinin verilmesi yeterlidir.\",\"type\":\"object\",\"properties\":{\"address1\":{\"description\":\"Açık adres 1. satır\",\"type\":\"string\"},\"address2\":{\"description\":\"Açık adres 2. satır\",\"type\":\"string\"},\"address3\":{\"description\":\"Açık adres 3. satır\",\"type\":\"string\"},\"categories\":{\"description\":\"Adres kategorileri. İş adresi, Ev adresi, Öncelikli adres\",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Açık adres ve lokasyon bilgilerini içeren tam adres\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"locationId\":{\"format\":\"int64\",\"description\":\"Adresin bağlı olduğu en dip lokasyon bilgisi. Ümraniye, Üsküdar vb.\",\"type\":\"integer\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/AddressCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"address1\": \"Duis ut veniam consequat\",\n \"address2\": \"aliquip Lorem in Ut nulla\",\n \"address3\": \"Ut magna Duis \",\n \"categories\": [],\n \"createdBy\": \"eu occaecat\",\n \"createdDate\": \"2014-02-05T16:39:49.865Z\",\n \"fullAddress\": \"irure proident\",\n \"lastModifiedBy\": \"ut id\",\n \"lastModifiedDate\": \"1984-09-30T12:13:46.302Z\",\n \"locationId\": 33277053\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"AddressCreateDTO\",\"description\":\" Kisi veya kurumun adres bilgisini olusturmak icin kullanılır.\\n Adrese ait lokasyon bilgisini içerisinde barındırır.\\n Lokasyon bilgisi önceden tanımlı olmalıdır. Lokasyon bilgisi alınırken lokasyon hierarşisinde kullanıcının seçtiği en altta kalan lokasyonun idsi yeterlidir.\\n Örneğin Türkiye - İstanbul - Ümraniye lokasyonu için sadece Ümraniyenin id sinin verilmesi yeterlidir.\",\"type\":\"object\",\"properties\":{\"address1\":{\"description\":\"Açık adres 1. satır\",\"type\":\"string\"},\"address2\":{\"description\":\"Açık adres 2. satır\",\"type\":\"string\"},\"address3\":{\"description\":\"Açık adres 3. satır\",\"type\":\"string\"},\"categories\":{\"description\":\"Adres kategorileri. İş adresi, Ev adresi, Öncelikli adres\",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Açık adres ve lokasyon bilgilerini içeren tam adres\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"locationId\":{\"format\":\"int64\",\"description\":\"Adresin bağlı olduğu en dip lokasyon bilgisi. Ümraniye, Üsküdar vb.\",\"type\":\"integer\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/AddressCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"address1\": \"elit sed par\",\n \"address2\": \"Duis\",\n \"address3\": \"anim\",\n \"categories\": [],\n \"createdBy\": \"est labore anim\",\n \"createdDate\": \"1941-05-16T13:10:03.464Z\",\n \"fullAddress\": \"consequat tempor voluptate elit dolore\",\n \"lastModifiedBy\": \"ir\",\n \"lastModifiedDate\": \"1955-02-09T23:11:04.583Z\",\n \"locationId\": 76547149\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"AddressCreateDTO\",\"description\":\" Kisi veya kurumun adres bilgisini olusturmak icin kullanılır.\\n Adrese ait lokasyon bilgisini içerisinde barındırır.\\n Lokasyon bilgisi önceden tanımlı olmalıdır. Lokasyon bilgisi alınırken lokasyon hierarşisinde kullanıcının seçtiği en altta kalan lokasyonun idsi yeterlidir.\\n Örneğin Türkiye - İstanbul - Ümraniye lokasyonu için sadece Ümraniyenin id sinin verilmesi yeterlidir.\",\"type\":\"object\",\"properties\":{\"address1\":{\"description\":\"Açık adres 1. satır\",\"type\":\"string\"},\"address2\":{\"description\":\"Açık adres 2. satır\",\"type\":\"string\"},\"address3\":{\"description\":\"Açık adres 3. satır\",\"type\":\"string\"},\"categories\":{\"description\":\"Adres kategorileri. İş adresi, Ev adresi, Öncelikli adres\",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Açık adres ve lokasyon bilgilerini içeren tam adres\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"locationId\":{\"format\":\"int64\",\"description\":\"Adresin bağlı olduğu en dip lokasyon bilgisi. Ümraniye, Üsküdar vb.\",\"type\":\"integer\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/AddressCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"address1\": \"ad\",\n \"address2\": \"nisi\",\n \"address3\": \"et dolore ex\",\n \"categories\": [],\n \"createdBy\": \"laboris incididunt in con\",\n \"createdDate\": \"1993-08-24T22:17:46.023Z\",\n \"fullAddress\": \"incididunt qui sint\",\n \"lastModifiedBy\": \"Duis eu occaecat\",\n \"lastModifiedDate\": \"1950-03-28T21:00:27.118Z\",\n \"locationId\": 33213843\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"AddressCreateDTO\",\"description\":\" Kisi veya kurumun adres bilgisini olusturmak icin kullanılır.\\n Adrese ait lokasyon bilgisini içerisinde barındırır.\\n Lokasyon bilgisi önceden tanımlı olmalıdır. Lokasyon bilgisi alınırken lokasyon hierarşisinde kullanıcının seçtiği en altta kalan lokasyonun idsi yeterlidir.\\n Örneğin Türkiye - İstanbul - Ümraniye lokasyonu için sadece Ümraniyenin id sinin verilmesi yeterlidir.\",\"type\":\"object\",\"properties\":{\"address1\":{\"description\":\"Açık adres 1. satır\",\"type\":\"string\"},\"address2\":{\"description\":\"Açık adres 2. satır\",\"type\":\"string\"},\"address3\":{\"description\":\"Açık adres 3. satır\",\"type\":\"string\"},\"categories\":{\"description\":\"Adres kategorileri. İş adresi, Ev adresi, Öncelikli adres\",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Açık adres ve lokasyon bilgilerini içeren tam adres\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"locationId\":{\"format\":\"int64\",\"description\":\"Adresin bağlı olduğu en dip lokasyon bilgisi. Ümraniye, Üsküdar vb.\",\"type\":\"integer\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/AddressCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"address1\": \"ex\",\n \"address2\": \"sint tempor sed mollit aliquip\",\n \"address3\": \"est tempor ut reprehenderit\",\n \"categories\": [],\n \"createdBy\": \"fugiat nisi officia ex\",\n \"createdDate\": \"1980-06-05T01:33:02.976Z\",\n \"fullAddress\": \"incididunt\",\n \"lastModifiedBy\": \"in nostrud eu\",\n \"lastModifiedDate\": \"1940-11-19T09:55:20.930Z\",\n \"locationId\": -11069583\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"AddressCreateDTO\",\"description\":\" Kisi veya kurumun adres bilgisini olusturmak icin kullanılır.\\n Adrese ait lokasyon bilgisini içerisinde barındırır.\\n Lokasyon bilgisi önceden tanımlı olmalıdır. Lokasyon bilgisi alınırken lokasyon hierarşisinde kullanıcının seçtiği en altta kalan lokasyonun idsi yeterlidir.\\n Örneğin Türkiye - İstanbul - Ümraniye lokasyonu için sadece Ümraniyenin id sinin verilmesi yeterlidir.\",\"type\":\"object\",\"properties\":{\"address1\":{\"description\":\"Açık adres 1. satır\",\"type\":\"string\"},\"address2\":{\"description\":\"Açık adres 2. satır\",\"type\":\"string\"},\"address3\":{\"description\":\"Açık adres 3. satır\",\"type\":\"string\"},\"categories\":{\"description\":\"Adres kategorileri. İş adresi, Ev adresi, Öncelikli adres\",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Açık adres ve lokasyon bilgilerini içeren tam adres\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"locationId\":{\"format\":\"int64\",\"description\":\"Adresin bağlı olduğu en dip lokasyon bilgisi. Ümraniye, Üsküdar vb.\",\"type\":\"integer\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/AddressCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz." + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/teachers/{id}/addresses/{addressId}" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Personele ait adresi günceller" + }, + "id": { + "element": "string", + "content": "updateTeacherAddress" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Address ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "addressId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Personel ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Personele ait mevcut adresin güncellenmesini sağlayan servistir. `ContactInfoCreateDTO` objesi kullanılır." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"address1\": \"pariatur\",\n \"address2\": \"dolore\",\n \"address3\": \"eu irure nisi dolore\",\n \"categories\": [],\n \"createdBy\": \"Excepteur\",\n \"createdDate\": \"1998-05-11T12:18:50.820Z\",\n \"fullAddress\": \"ut eiusmod esse\",\n \"lastModifiedBy\": \"deserun\",\n \"lastModifiedDate\": \"2005-02-20T15:54:10.655Z\",\n \"locationId\": -81446725\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"AddressCreateDTO\",\"description\":\" Kisi veya kurumun adres bilgisini olusturmak icin kullanılır.\\n Adrese ait lokasyon bilgisini içerisinde barındırır.\\n Lokasyon bilgisi önceden tanımlı olmalıdır. Lokasyon bilgisi alınırken lokasyon hierarşisinde kullanıcının seçtiği en altta kalan lokasyonun idsi yeterlidir.\\n Örneğin Türkiye - İstanbul - Ümraniye lokasyonu için sadece Ümraniyenin id sinin verilmesi yeterlidir.\",\"type\":\"object\",\"properties\":{\"address1\":{\"description\":\"Açık adres 1. satır\",\"type\":\"string\"},\"address2\":{\"description\":\"Açık adres 2. satır\",\"type\":\"string\"},\"address3\":{\"description\":\"Açık adres 3. satır\",\"type\":\"string\"},\"categories\":{\"description\":\"Adres kategorileri. İş adresi, Ev adresi, Öncelikli adres\",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Açık adres ve lokasyon bilgilerini içeren tam adres\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"locationId\":{\"format\":\"int64\",\"description\":\"Adresin bağlı olduğu en dip lokasyon bilgisi. Ümraniye, Üsküdar vb.\",\"type\":\"integer\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/AddressCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/AddressCardDTO\"}],\"definitions\":{\"AddressCardDTO\":{\"title\":\"AddressCardDTO\",\"description\":\"Address bilgisini sunar. Sadece full address bilgisini ve kategorisini verir.\\n Adres kategorisine ait kategori adı bilgisi “ContactMediumType” dır.\\n Yani contact medium type \\\"iletişimde bulunulacak adresler\\\" bilgisini ifade eder.\",\"type\":\"object\",\"properties\":{\"addressCategory\":{\"description\":\"Address kategorisi\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Full address. İl ilçe mahalle sokak gibi bütün bilgileri içerir.\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"ContactMediumCategoryLOV\":{\"title\":\"ContactMediumCategoryLOV\",\"description\":\"Contact medium kategorileri. Bir kategori tipine ait veriyi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Category Name\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/AddressCardDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"address1\": \"proident do laboris\",\n \"address2\": \"sit anim nulla in aliquip\",\n \"address3\": \"mollit Excepteur sed\",\n \"categories\": [],\n \"createdBy\": \"Excepteur\",\n \"createdDate\": \"1958-09-06T08:57:56.759Z\",\n \"fullAddress\": \"nisi sit Lorem ex cillum\",\n \"lastModifiedBy\": \"elit in qui\",\n \"lastModifiedDate\": \"1983-03-03T21:09:01.153Z\",\n \"locationId\": 65610387\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"AddressCreateDTO\",\"description\":\" Kisi veya kurumun adres bilgisini olusturmak icin kullanılır.\\n Adrese ait lokasyon bilgisini içerisinde barındırır.\\n Lokasyon bilgisi önceden tanımlı olmalıdır. Lokasyon bilgisi alınırken lokasyon hierarşisinde kullanıcının seçtiği en altta kalan lokasyonun idsi yeterlidir.\\n Örneğin Türkiye - İstanbul - Ümraniye lokasyonu için sadece Ümraniyenin id sinin verilmesi yeterlidir.\",\"type\":\"object\",\"properties\":{\"address1\":{\"description\":\"Açık adres 1. satır\",\"type\":\"string\"},\"address2\":{\"description\":\"Açık adres 2. satır\",\"type\":\"string\"},\"address3\":{\"description\":\"Açık adres 3. satır\",\"type\":\"string\"},\"categories\":{\"description\":\"Adres kategorileri. İş adresi, Ev adresi, Öncelikli adres\",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Açık adres ve lokasyon bilgilerini içeren tam adres\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"locationId\":{\"format\":\"int64\",\"description\":\"Adresin bağlı olduğu en dip lokasyon bilgisi. Ümraniye, Üsküdar vb.\",\"type\":\"integer\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/AddressCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"address1\": \"ullamco\",\n \"address2\": \"laborum \",\n \"address3\": \"sunt esse ut mollit\",\n \"categories\": [],\n \"createdBy\": \"nostrud quis ex\",\n \"createdDate\": \"1962-12-22T07:23:08.160Z\",\n \"fullAddress\": \"enim\",\n \"lastModifiedBy\": \"officia\",\n \"lastModifiedDate\": \"1963-03-22T12:00:55.384Z\",\n \"locationId\": -88649071\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"AddressCreateDTO\",\"description\":\" Kisi veya kurumun adres bilgisini olusturmak icin kullanılır.\\n Adrese ait lokasyon bilgisini içerisinde barındırır.\\n Lokasyon bilgisi önceden tanımlı olmalıdır. Lokasyon bilgisi alınırken lokasyon hierarşisinde kullanıcının seçtiği en altta kalan lokasyonun idsi yeterlidir.\\n Örneğin Türkiye - İstanbul - Ümraniye lokasyonu için sadece Ümraniyenin id sinin verilmesi yeterlidir.\",\"type\":\"object\",\"properties\":{\"address1\":{\"description\":\"Açık adres 1. satır\",\"type\":\"string\"},\"address2\":{\"description\":\"Açık adres 2. satır\",\"type\":\"string\"},\"address3\":{\"description\":\"Açık adres 3. satır\",\"type\":\"string\"},\"categories\":{\"description\":\"Adres kategorileri. İş adresi, Ev adresi, Öncelikli adres\",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Açık adres ve lokasyon bilgilerini içeren tam adres\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"locationId\":{\"format\":\"int64\",\"description\":\"Adresin bağlı olduğu en dip lokasyon bilgisi. Ümraniye, Üsküdar vb.\",\"type\":\"integer\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/AddressCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "202" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı." + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/AddressCardDTO\"}],\"definitions\":{\"AddressCardDTO\":{\"title\":\"AddressCardDTO\",\"description\":\"Address bilgisini sunar. Sadece full address bilgisini ve kategorisini verir.\\n Adres kategorisine ait kategori adı bilgisi “ContactMediumType” dır.\\n Yani contact medium type \\\"iletişimde bulunulacak adresler\\\" bilgisini ifade eder.\",\"type\":\"object\",\"properties\":{\"addressCategory\":{\"description\":\"Address kategorisi\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Full address. İl ilçe mahalle sokak gibi bütün bilgileri içerir.\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"ContactMediumCategoryLOV\":{\"title\":\"ContactMediumCategoryLOV\",\"description\":\"Contact medium kategorileri. Bir kategori tipine ait veriyi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Category Name\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/AddressCardDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"address1\": \"aliqua Excepteur Duis\",\n \"address2\": \"esse\",\n \"address3\": \"ea dolore\",\n \"categories\": [],\n \"createdBy\": \"in\",\n \"createdDate\": \"1982-06-20T23:46:06.988Z\",\n \"fullAddress\": \"esse voluptate\",\n \"lastModifiedBy\": \"eiusmod nulla dolore magna non\",\n \"lastModifiedDate\": \"1951-07-15T19:24:54.307Z\",\n \"locationId\": 95666045\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"AddressCreateDTO\",\"description\":\" Kisi veya kurumun adres bilgisini olusturmak icin kullanılır.\\n Adrese ait lokasyon bilgisini içerisinde barındırır.\\n Lokasyon bilgisi önceden tanımlı olmalıdır. Lokasyon bilgisi alınırken lokasyon hierarşisinde kullanıcının seçtiği en altta kalan lokasyonun idsi yeterlidir.\\n Örneğin Türkiye - İstanbul - Ümraniye lokasyonu için sadece Ümraniyenin id sinin verilmesi yeterlidir.\",\"type\":\"object\",\"properties\":{\"address1\":{\"description\":\"Açık adres 1. satır\",\"type\":\"string\"},\"address2\":{\"description\":\"Açık adres 2. satır\",\"type\":\"string\"},\"address3\":{\"description\":\"Açık adres 3. satır\",\"type\":\"string\"},\"categories\":{\"description\":\"Adres kategorileri. İş adresi, Ev adresi, Öncelikli adres\",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Açık adres ve lokasyon bilgilerini içeren tam adres\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"locationId\":{\"format\":\"int64\",\"description\":\"Adresin bağlı olduğu en dip lokasyon bilgisi. Ümraniye, Üsküdar vb.\",\"type\":\"integer\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/AddressCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"address1\": \"sunt cupida\",\n \"address2\": \"nostrud in ullamco in\",\n \"address3\": \"proident reprehenderit velit ipsum\",\n \"categories\": [],\n \"createdBy\": \"aliqua commodo occaeca\",\n \"createdDate\": \"1953-05-18T06:31:56.408Z\",\n \"fullAddress\": \"ipsum cupidatat\",\n \"lastModifiedBy\": \"dolore id\",\n \"lastModifiedDate\": \"1987-07-31T17:06:12.871Z\",\n \"locationId\": -69725776\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"AddressCreateDTO\",\"description\":\" Kisi veya kurumun adres bilgisini olusturmak icin kullanılır.\\n Adrese ait lokasyon bilgisini içerisinde barındırır.\\n Lokasyon bilgisi önceden tanımlı olmalıdır. Lokasyon bilgisi alınırken lokasyon hierarşisinde kullanıcının seçtiği en altta kalan lokasyonun idsi yeterlidir.\\n Örneğin Türkiye - İstanbul - Ümraniye lokasyonu için sadece Ümraniyenin id sinin verilmesi yeterlidir.\",\"type\":\"object\",\"properties\":{\"address1\":{\"description\":\"Açık adres 1. satır\",\"type\":\"string\"},\"address2\":{\"description\":\"Açık adres 2. satır\",\"type\":\"string\"},\"address3\":{\"description\":\"Açık adres 3. satır\",\"type\":\"string\"},\"categories\":{\"description\":\"Adres kategorileri. İş adresi, Ev adresi, Öncelikli adres\",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Açık adres ve lokasyon bilgilerini içeren tam adres\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"locationId\":{\"format\":\"int64\",\"description\":\"Adresin bağlı olduğu en dip lokasyon bilgisi. Ümraniye, Üsküdar vb.\",\"type\":\"integer\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/AddressCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"address1\": \"non tempor Ut Excepteur do\",\n \"address2\": \"Ut deserunt dolor reprehenderit anim\",\n \"address3\": \"reprehenderit ut occaecat ad\",\n \"categories\": [],\n \"createdBy\": \"sunt dolor anim irure est\",\n \"createdDate\": \"1946-07-02T18:11:16.854Z\",\n \"fullAddress\": \"voluptate et\",\n \"lastModifiedBy\": \"ullamco ut\",\n \"lastModifiedDate\": \"1985-02-18T07:35:21.227Z\",\n \"locationId\": -9800465\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"AddressCreateDTO\",\"description\":\" Kisi veya kurumun adres bilgisini olusturmak icin kullanılır.\\n Adrese ait lokasyon bilgisini içerisinde barındırır.\\n Lokasyon bilgisi önceden tanımlı olmalıdır. Lokasyon bilgisi alınırken lokasyon hierarşisinde kullanıcının seçtiği en altta kalan lokasyonun idsi yeterlidir.\\n Örneğin Türkiye - İstanbul - Ümraniye lokasyonu için sadece Ümraniyenin id sinin verilmesi yeterlidir.\",\"type\":\"object\",\"properties\":{\"address1\":{\"description\":\"Açık adres 1. satır\",\"type\":\"string\"},\"address2\":{\"description\":\"Açık adres 2. satır\",\"type\":\"string\"},\"address3\":{\"description\":\"Açık adres 3. satır\",\"type\":\"string\"},\"categories\":{\"description\":\"Adres kategorileri. İş adresi, Ev adresi, Öncelikli adres\",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Açık adres ve lokasyon bilgilerini içeren tam adres\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"locationId\":{\"format\":\"int64\",\"description\":\"Adresin bağlı olduğu en dip lokasyon bilgisi. Ümraniye, Üsküdar vb.\",\"type\":\"integer\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/AddressCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"address1\": \"dolor in\",\n \"address2\": \"do dolor\",\n \"address3\": \"consectetur ea\",\n \"categories\": [],\n \"createdBy\": \"culpa anim officia in nisi\",\n \"createdDate\": \"1948-03-03T02:49:27.915Z\",\n \"fullAddress\": \"enim c\",\n \"lastModifiedBy\": \"in\",\n \"lastModifiedDate\": \"1991-05-29T01:07:04.336Z\",\n \"locationId\": 42559026\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"AddressCreateDTO\",\"description\":\" Kisi veya kurumun adres bilgisini olusturmak icin kullanılır.\\n Adrese ait lokasyon bilgisini içerisinde barındırır.\\n Lokasyon bilgisi önceden tanımlı olmalıdır. Lokasyon bilgisi alınırken lokasyon hierarşisinde kullanıcının seçtiği en altta kalan lokasyonun idsi yeterlidir.\\n Örneğin Türkiye - İstanbul - Ümraniye lokasyonu için sadece Ümraniyenin id sinin verilmesi yeterlidir.\",\"type\":\"object\",\"properties\":{\"address1\":{\"description\":\"Açık adres 1. satır\",\"type\":\"string\"},\"address2\":{\"description\":\"Açık adres 2. satır\",\"type\":\"string\"},\"address3\":{\"description\":\"Açık adres 3. satır\",\"type\":\"string\"},\"categories\":{\"description\":\"Adres kategorileri. İş adresi, Ev adresi, Öncelikli adres\",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Açık adres ve lokasyon bilgilerini içeren tam adres\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"locationId\":{\"format\":\"int64\",\"description\":\"Adresin bağlı olduğu en dip lokasyon bilgisi. Ümraniye, Üsküdar vb.\",\"type\":\"integer\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/AddressCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"address1\": \"sint fugiat nulla adipisicing \",\n \"address2\": \"nisi\",\n \"address3\": \"Ut in\",\n \"categories\": [],\n \"createdBy\": \"sit reprehenderit non\",\n \"createdDate\": \"1971-11-23T06:49:24.822Z\",\n \"fullAddress\": \"Ut Duis aute sint\",\n \"lastModifiedBy\": \"ut ad aliqua\",\n \"lastModifiedDate\": \"2003-09-02T23:55:48.993Z\",\n \"locationId\": 19822324\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"AddressCreateDTO\",\"description\":\" Kisi veya kurumun adres bilgisini olusturmak icin kullanılır.\\n Adrese ait lokasyon bilgisini içerisinde barındırır.\\n Lokasyon bilgisi önceden tanımlı olmalıdır. Lokasyon bilgisi alınırken lokasyon hierarşisinde kullanıcının seçtiği en altta kalan lokasyonun idsi yeterlidir.\\n Örneğin Türkiye - İstanbul - Ümraniye lokasyonu için sadece Ümraniyenin id sinin verilmesi yeterlidir.\",\"type\":\"object\",\"properties\":{\"address1\":{\"description\":\"Açık adres 1. satır\",\"type\":\"string\"},\"address2\":{\"description\":\"Açık adres 2. satır\",\"type\":\"string\"},\"address3\":{\"description\":\"Açık adres 3. satır\",\"type\":\"string\"},\"categories\":{\"description\":\"Adres kategorileri. İş adresi, Ev adresi, Öncelikli adres\",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Açık adres ve lokasyon bilgilerini içeren tam adres\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"locationId\":{\"format\":\"int64\",\"description\":\"Adresin bağlı olduğu en dip lokasyon bilgisi. Ümraniye, Üsküdar vb.\",\"type\":\"integer\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/AddressCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz." + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Personele ait adresi siler" + }, + "id": { + "element": "string", + "content": "deleteTeacherAddress" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Address ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "addressId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Personel ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Personele ait mevcut adresi silmeyi sağlayan servistir. " + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "204" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz." + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/teachers/{id}/duties" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Personelin vazifeli oldugu kurumları verir. Kurumlara ait temel bilgiler ve personelin vazife donemleri bulunmaktadır." + }, + "id": { + "element": "string", + "content": "getAllTeacherDuties" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Teacher ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Gets a list of all `DutyDTO` entities of `Teacher`." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "List of all `DutyDTO` entities of `Teacher`." + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/DutyDTO\"},\"definitions\":{\"DutyDTO\":{\"title\":\"DutyDTO\",\"description\":\"Kisilere atanan vazifeler ve kurumunu tutmaktadır. Örneğin; Ümraniye erkek tekamul yurdunda yurt mesulu. İstanbul sekreteryada sekreter vb.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"dutyName\":{\"description\":\"Vazife adı\",\"type\":\"string\"},\"endDate\":{\"format\":\"date-time\",\"description\":\"Role end date\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"organizationId\":{\"format\":\"int64\",\"description\":\"Organization ID\",\"type\":\"integer\"},\"organizationName\":{\"description\":\"Organization Name\",\"type\":\"string\"},\"startDate\":{\"format\":\"date-time\",\"description\":\"Start date of role\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/DutyDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Personele yeni vazife ekler. Vazife kurumu ve vazife bilgileri ile beraber vazife başlangıç ve bitiş tarihleri verilebilir. Vazife başlangıç tarihi verilmemesi durumunda işlem tarihi vazife başlangıç tarihi olarak alınır." + }, + "id": { + "element": "string", + "content": "createTeacherDuty" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Personel ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Personele yeni vazife ekleme yapmayı sağlayan servistir. `DutyDTO` objesini kullanır." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"dutyId\": -84020235,\n \"endDate\": \"1946-12-27T06:25:38.161Z\",\n \"organizationId\": -55470224,\n \"startDate\": \"1944-03-02T03:41:00.850Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"DutyCreateDTO\",\"description\":\"Bir kişiye yeni vazife eklemek için kullanılır. Vazife yeri ve vazife türü gibi verileri barındırır.\",\"type\":\"object\",\"properties\":{\"dutyId\":{\"format\":\"int64\",\"description\":\"Vazife idsi\",\"type\":\"integer\"},\"endDate\":{\"format\":\"date-time\",\"description\":\"Vazifelendirme bitiş tarihi\",\"type\":\"string\"},\"organizationId\":{\"format\":\"int64\",\"description\":\"Vazifelendirilen kurum idsi. Ümraniye yurdu, Istanbul anadolu bölge sekreterya gibi.\",\"type\":\"integer\"},\"startDate\":{\"format\":\"date-time\",\"description\":\"Vazifelendirme başlangıç tarihi.\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/DutyCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"DutyDTO\",\"description\":\"Kisilere atanan vazifeler ve kurumunu tutmaktadır. Örneğin; Ümraniye erkek tekamul yurdunda yurt mesulu. İstanbul sekreteryada sekreter vb.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"dutyName\":{\"description\":\"Vazife adı\",\"type\":\"string\"},\"endDate\":{\"format\":\"date-time\",\"description\":\"Role end date\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"organizationId\":{\"format\":\"int64\",\"description\":\"Organization ID\",\"type\":\"integer\"},\"organizationName\":{\"description\":\"Organization Name\",\"type\":\"string\"},\"startDate\":{\"format\":\"date-time\",\"description\":\"Start date of role\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/DutyDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"dutyId\": 97888308,\n \"endDate\": \"2015-06-02T09:20:33.161Z\",\n \"organizationId\": 6508105,\n \"startDate\": \"1969-09-09T09:43:57.528Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"DutyCreateDTO\",\"description\":\"Bir kişiye yeni vazife eklemek için kullanılır. Vazife yeri ve vazife türü gibi verileri barındırır.\",\"type\":\"object\",\"properties\":{\"dutyId\":{\"format\":\"int64\",\"description\":\"Vazife idsi\",\"type\":\"integer\"},\"endDate\":{\"format\":\"date-time\",\"description\":\"Vazifelendirme bitiş tarihi\",\"type\":\"string\"},\"organizationId\":{\"format\":\"int64\",\"description\":\"Vazifelendirilen kurum idsi. Ümraniye yurdu, Istanbul anadolu bölge sekreterya gibi.\",\"type\":\"integer\"},\"startDate\":{\"format\":\"date-time\",\"description\":\"Vazifelendirme başlangıç tarihi.\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/DutyCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı." + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"DutyDTO\",\"description\":\"Kisilere atanan vazifeler ve kurumunu tutmaktadır. Örneğin; Ümraniye erkek tekamul yurdunda yurt mesulu. İstanbul sekreteryada sekreter vb.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"dutyName\":{\"description\":\"Vazife adı\",\"type\":\"string\"},\"endDate\":{\"format\":\"date-time\",\"description\":\"Role end date\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"organizationId\":{\"format\":\"int64\",\"description\":\"Organization ID\",\"type\":\"integer\"},\"organizationName\":{\"description\":\"Organization Name\",\"type\":\"string\"},\"startDate\":{\"format\":\"date-time\",\"description\":\"Start date of role\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/DutyDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"dutyId\": 80428765,\n \"endDate\": \"1979-06-08T18:52:24.725Z\",\n \"organizationId\": 31830095,\n \"startDate\": \"1996-02-14T02:32:10.506Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"DutyCreateDTO\",\"description\":\"Bir kişiye yeni vazife eklemek için kullanılır. Vazife yeri ve vazife türü gibi verileri barındırır.\",\"type\":\"object\",\"properties\":{\"dutyId\":{\"format\":\"int64\",\"description\":\"Vazife idsi\",\"type\":\"integer\"},\"endDate\":{\"format\":\"date-time\",\"description\":\"Vazifelendirme bitiş tarihi\",\"type\":\"string\"},\"organizationId\":{\"format\":\"int64\",\"description\":\"Vazifelendirilen kurum idsi. Ümraniye yurdu, Istanbul anadolu bölge sekreterya gibi.\",\"type\":\"integer\"},\"startDate\":{\"format\":\"date-time\",\"description\":\"Vazifelendirme başlangıç tarihi.\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/DutyCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"dutyId\": -44541169,\n \"endDate\": \"2019-07-15T23:35:54.012Z\",\n \"organizationId\": -26206252,\n \"startDate\": \"1979-01-09T05:49:53.318Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"DutyCreateDTO\",\"description\":\"Bir kişiye yeni vazife eklemek için kullanılır. Vazife yeri ve vazife türü gibi verileri barındırır.\",\"type\":\"object\",\"properties\":{\"dutyId\":{\"format\":\"int64\",\"description\":\"Vazife idsi\",\"type\":\"integer\"},\"endDate\":{\"format\":\"date-time\",\"description\":\"Vazifelendirme bitiş tarihi\",\"type\":\"string\"},\"organizationId\":{\"format\":\"int64\",\"description\":\"Vazifelendirilen kurum idsi. Ümraniye yurdu, Istanbul anadolu bölge sekreterya gibi.\",\"type\":\"integer\"},\"startDate\":{\"format\":\"date-time\",\"description\":\"Vazifelendirme başlangıç tarihi.\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/DutyCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"dutyId\": 76452981,\n \"endDate\": \"1994-11-11T21:16:41.595Z\",\n \"organizationId\": 60441708,\n \"startDate\": \"1970-05-03T17:43:54.153Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"DutyCreateDTO\",\"description\":\"Bir kişiye yeni vazife eklemek için kullanılır. Vazife yeri ve vazife türü gibi verileri barındırır.\",\"type\":\"object\",\"properties\":{\"dutyId\":{\"format\":\"int64\",\"description\":\"Vazife idsi\",\"type\":\"integer\"},\"endDate\":{\"format\":\"date-time\",\"description\":\"Vazifelendirme bitiş tarihi\",\"type\":\"string\"},\"organizationId\":{\"format\":\"int64\",\"description\":\"Vazifelendirilen kurum idsi. Ümraniye yurdu, Istanbul anadolu bölge sekreterya gibi.\",\"type\":\"integer\"},\"startDate\":{\"format\":\"date-time\",\"description\":\"Vazifelendirme başlangıç tarihi.\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/DutyCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"dutyId\": 93102254,\n \"endDate\": \"1950-12-15T01:09:13.547Z\",\n \"organizationId\": 92080933,\n \"startDate\": \"1942-07-12T11:17:30.670Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"DutyCreateDTO\",\"description\":\"Bir kişiye yeni vazife eklemek için kullanılır. Vazife yeri ve vazife türü gibi verileri barındırır.\",\"type\":\"object\",\"properties\":{\"dutyId\":{\"format\":\"int64\",\"description\":\"Vazife idsi\",\"type\":\"integer\"},\"endDate\":{\"format\":\"date-time\",\"description\":\"Vazifelendirme bitiş tarihi\",\"type\":\"string\"},\"organizationId\":{\"format\":\"int64\",\"description\":\"Vazifelendirilen kurum idsi. Ümraniye yurdu, Istanbul anadolu bölge sekreterya gibi.\",\"type\":\"integer\"},\"startDate\":{\"format\":\"date-time\",\"description\":\"Vazifelendirme başlangıç tarihi.\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/DutyCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"dutyId\": -70471428,\n \"endDate\": \"1975-06-19T22:47:51.077Z\",\n \"organizationId\": -16909384,\n \"startDate\": \"2000-03-17T09:25:09.567Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"DutyCreateDTO\",\"description\":\"Bir kişiye yeni vazife eklemek için kullanılır. Vazife yeri ve vazife türü gibi verileri barındırır.\",\"type\":\"object\",\"properties\":{\"dutyId\":{\"format\":\"int64\",\"description\":\"Vazife idsi\",\"type\":\"integer\"},\"endDate\":{\"format\":\"date-time\",\"description\":\"Vazifelendirme bitiş tarihi\",\"type\":\"string\"},\"organizationId\":{\"format\":\"int64\",\"description\":\"Vazifelendirilen kurum idsi. Ümraniye yurdu, Istanbul anadolu bölge sekreterya gibi.\",\"type\":\"integer\"},\"startDate\":{\"format\":\"date-time\",\"description\":\"Vazifelendirme başlangıç tarihi.\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/DutyCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz." + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/teachers/{id}/duties/{dutyId}" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Personele ait var olan bir vazife bilgisini günceller." + }, + "id": { + "element": "string", + "content": "updateTeacherDuty" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Duty ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "dutyId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Personel ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Personelin vazife bilgilerini günceller. `DutyDTO` objesini kullanır." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"dutyId\": -82290902,\n \"endDate\": \"1951-06-22T09:31:24.957Z\",\n \"organizationId\": -57114577,\n \"startDate\": \"2017-06-20T04:10:43.738Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"DutyCreateDTO\",\"description\":\"Bir kişiye yeni vazife eklemek için kullanılır. Vazife yeri ve vazife türü gibi verileri barındırır.\",\"type\":\"object\",\"properties\":{\"dutyId\":{\"format\":\"int64\",\"description\":\"Vazife idsi\",\"type\":\"integer\"},\"endDate\":{\"format\":\"date-time\",\"description\":\"Vazifelendirme bitiş tarihi\",\"type\":\"string\"},\"organizationId\":{\"format\":\"int64\",\"description\":\"Vazifelendirilen kurum idsi. Ümraniye yurdu, Istanbul anadolu bölge sekreterya gibi.\",\"type\":\"integer\"},\"startDate\":{\"format\":\"date-time\",\"description\":\"Vazifelendirme başlangıç tarihi.\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/DutyCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"DutyDTO\",\"description\":\"Kisilere atanan vazifeler ve kurumunu tutmaktadır. Örneğin; Ümraniye erkek tekamul yurdunda yurt mesulu. İstanbul sekreteryada sekreter vb.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"dutyName\":{\"description\":\"Vazife adı\",\"type\":\"string\"},\"endDate\":{\"format\":\"date-time\",\"description\":\"Role end date\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"organizationId\":{\"format\":\"int64\",\"description\":\"Organization ID\",\"type\":\"integer\"},\"organizationName\":{\"description\":\"Organization Name\",\"type\":\"string\"},\"startDate\":{\"format\":\"date-time\",\"description\":\"Start date of role\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/DutyDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"dutyId\": -40832833,\n \"endDate\": \"1983-10-20T00:40:58.531Z\",\n \"organizationId\": -36815552,\n \"startDate\": \"1950-11-04T17:39:02.632Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"DutyCreateDTO\",\"description\":\"Bir kişiye yeni vazife eklemek için kullanılır. Vazife yeri ve vazife türü gibi verileri barındırır.\",\"type\":\"object\",\"properties\":{\"dutyId\":{\"format\":\"int64\",\"description\":\"Vazife idsi\",\"type\":\"integer\"},\"endDate\":{\"format\":\"date-time\",\"description\":\"Vazifelendirme bitiş tarihi\",\"type\":\"string\"},\"organizationId\":{\"format\":\"int64\",\"description\":\"Vazifelendirilen kurum idsi. Ümraniye yurdu, Istanbul anadolu bölge sekreterya gibi.\",\"type\":\"integer\"},\"startDate\":{\"format\":\"date-time\",\"description\":\"Vazifelendirme başlangıç tarihi.\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/DutyCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"dutyId\": 35785226,\n \"endDate\": \"1950-11-25T00:52:20.664Z\",\n \"organizationId\": -80905849,\n \"startDate\": \"1976-08-04T05:06:32.908Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"DutyCreateDTO\",\"description\":\"Bir kişiye yeni vazife eklemek için kullanılır. Vazife yeri ve vazife türü gibi verileri barındırır.\",\"type\":\"object\",\"properties\":{\"dutyId\":{\"format\":\"int64\",\"description\":\"Vazife idsi\",\"type\":\"integer\"},\"endDate\":{\"format\":\"date-time\",\"description\":\"Vazifelendirme bitiş tarihi\",\"type\":\"string\"},\"organizationId\":{\"format\":\"int64\",\"description\":\"Vazifelendirilen kurum idsi. Ümraniye yurdu, Istanbul anadolu bölge sekreterya gibi.\",\"type\":\"integer\"},\"startDate\":{\"format\":\"date-time\",\"description\":\"Vazifelendirme başlangıç tarihi.\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/DutyCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "202" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı." + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"DutyDTO\",\"description\":\"Kisilere atanan vazifeler ve kurumunu tutmaktadır. Örneğin; Ümraniye erkek tekamul yurdunda yurt mesulu. İstanbul sekreteryada sekreter vb.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"dutyName\":{\"description\":\"Vazife adı\",\"type\":\"string\"},\"endDate\":{\"format\":\"date-time\",\"description\":\"Role end date\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"organizationId\":{\"format\":\"int64\",\"description\":\"Organization ID\",\"type\":\"integer\"},\"organizationName\":{\"description\":\"Organization Name\",\"type\":\"string\"},\"startDate\":{\"format\":\"date-time\",\"description\":\"Start date of role\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/DutyDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"dutyId\": -16280275,\n \"endDate\": \"2019-03-01T08:13:16.526Z\",\n \"organizationId\": -54415050,\n \"startDate\": \"1941-07-21T08:36:59.933Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"DutyCreateDTO\",\"description\":\"Bir kişiye yeni vazife eklemek için kullanılır. Vazife yeri ve vazife türü gibi verileri barındırır.\",\"type\":\"object\",\"properties\":{\"dutyId\":{\"format\":\"int64\",\"description\":\"Vazife idsi\",\"type\":\"integer\"},\"endDate\":{\"format\":\"date-time\",\"description\":\"Vazifelendirme bitiş tarihi\",\"type\":\"string\"},\"organizationId\":{\"format\":\"int64\",\"description\":\"Vazifelendirilen kurum idsi. Ümraniye yurdu, Istanbul anadolu bölge sekreterya gibi.\",\"type\":\"integer\"},\"startDate\":{\"format\":\"date-time\",\"description\":\"Vazifelendirme başlangıç tarihi.\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/DutyCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"dutyId\": -61193553,\n \"endDate\": \"2012-12-13T00:20:13.333Z\",\n \"organizationId\": 10005869,\n \"startDate\": \"1989-12-31T23:55:33.454Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"DutyCreateDTO\",\"description\":\"Bir kişiye yeni vazife eklemek için kullanılır. Vazife yeri ve vazife türü gibi verileri barındırır.\",\"type\":\"object\",\"properties\":{\"dutyId\":{\"format\":\"int64\",\"description\":\"Vazife idsi\",\"type\":\"integer\"},\"endDate\":{\"format\":\"date-time\",\"description\":\"Vazifelendirme bitiş tarihi\",\"type\":\"string\"},\"organizationId\":{\"format\":\"int64\",\"description\":\"Vazifelendirilen kurum idsi. Ümraniye yurdu, Istanbul anadolu bölge sekreterya gibi.\",\"type\":\"integer\"},\"startDate\":{\"format\":\"date-time\",\"description\":\"Vazifelendirme başlangıç tarihi.\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/DutyCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"dutyId\": -97128612,\n \"endDate\": \"1948-10-12T00:55:20.293Z\",\n \"organizationId\": 74040070,\n \"startDate\": \"1990-09-22T10:37:31.397Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"DutyCreateDTO\",\"description\":\"Bir kişiye yeni vazife eklemek için kullanılır. Vazife yeri ve vazife türü gibi verileri barındırır.\",\"type\":\"object\",\"properties\":{\"dutyId\":{\"format\":\"int64\",\"description\":\"Vazife idsi\",\"type\":\"integer\"},\"endDate\":{\"format\":\"date-time\",\"description\":\"Vazifelendirme bitiş tarihi\",\"type\":\"string\"},\"organizationId\":{\"format\":\"int64\",\"description\":\"Vazifelendirilen kurum idsi. Ümraniye yurdu, Istanbul anadolu bölge sekreterya gibi.\",\"type\":\"integer\"},\"startDate\":{\"format\":\"date-time\",\"description\":\"Vazifelendirme başlangıç tarihi.\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/DutyCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"dutyId\": -2943200,\n \"endDate\": \"1985-04-03T07:49:53.218Z\",\n \"organizationId\": 21053175,\n \"startDate\": \"1943-10-30T11:12:08.780Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"DutyCreateDTO\",\"description\":\"Bir kişiye yeni vazife eklemek için kullanılır. Vazife yeri ve vazife türü gibi verileri barındırır.\",\"type\":\"object\",\"properties\":{\"dutyId\":{\"format\":\"int64\",\"description\":\"Vazife idsi\",\"type\":\"integer\"},\"endDate\":{\"format\":\"date-time\",\"description\":\"Vazifelendirme bitiş tarihi\",\"type\":\"string\"},\"organizationId\":{\"format\":\"int64\",\"description\":\"Vazifelendirilen kurum idsi. Ümraniye yurdu, Istanbul anadolu bölge sekreterya gibi.\",\"type\":\"integer\"},\"startDate\":{\"format\":\"date-time\",\"description\":\"Vazifelendirme başlangıç tarihi.\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/DutyCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"dutyId\": 21535332,\n \"endDate\": \"1992-09-03T11:29:35.777Z\",\n \"organizationId\": 18501916,\n \"startDate\": \"2010-08-27T06:10:44.230Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"DutyCreateDTO\",\"description\":\"Bir kişiye yeni vazife eklemek için kullanılır. Vazife yeri ve vazife türü gibi verileri barındırır.\",\"type\":\"object\",\"properties\":{\"dutyId\":{\"format\":\"int64\",\"description\":\"Vazife idsi\",\"type\":\"integer\"},\"endDate\":{\"format\":\"date-time\",\"description\":\"Vazifelendirme bitiş tarihi\",\"type\":\"string\"},\"organizationId\":{\"format\":\"int64\",\"description\":\"Vazifelendirilen kurum idsi. Ümraniye yurdu, Istanbul anadolu bölge sekreterya gibi.\",\"type\":\"integer\"},\"startDate\":{\"format\":\"date-time\",\"description\":\"Vazifelendirme başlangıç tarihi.\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/DutyCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz." + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Personele ait vazifeyi siler" + }, + "id": { + "element": "string", + "content": "deleteTeacherDuty" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Duty ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "dutyId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Personel ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Personelin vazife bilgisini silme servisidir. `DutyDTO` nesnesini kullanır." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "204" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz." + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + }, + "href": { + "element": "string", + "content": "/api/sbt/teachers/{id}/education/formal" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Personelin örgün okul egitim bilgilerini verir. Hangi bolumun hangi donemini nerede okudu bilgileri bulunur." + }, + "id": { + "element": "string", + "content": "getAllTeacherEducationInfos" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Teacher ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Gets a list of all `EducationInfo` entities of `Teacher`." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "List of all `EducationInfo` entities of `Teacher`." + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/FormalEducationGradeInfoDTO\"},\"definitions\":{\"FormalEducationGradeInfoDTO\":{\"title\":\"FormalEducationGradeInfoDTO\",\"description\":\"Bir kişinin aldığı eğitimin bir dönemine ait bilgileri tutmaktadır.\\n Örneğin 4 yıllık bilgisayar mühendisliği bölümünden mezun olan bir kişi için bu dto dan 4 instance tutulmalı ve şu verileri barındırmalı.\\n\\n 1 - Formal Education - Iğdır üniversitesi - Mühendislik fakültesi - Bilgisayar mühendisliği - 2010.10.01(dönem başlangıcı) - 2011.05.02( dönem bitişi )\\n 2 - Formal Education - Iğdır üniversitesi - Mühendislik fakültesi - Bilgisayar mühendisliği - 2011.10.01(dönem başlangıcı) - 2012.05.02( dönem bitişi )\\n 3 - Formal Education - Abant Izzet Baysal üniversitesi - Mühendislik ve mimarlık fakültesi - Bilgisayar mühendisliği - 2012.10.01(dönem başlangıcı) - 2013.05.02( dönem bitişi )\\n 4 - Formal Education - Abant Izzet Baysal üniversitesi - Mühendislik ve mimarlık fakültesi - Bilgisayar mühendisliği - 2013.10.01(dönem başlangıcı) - 2014.05.02( dönem bitişi )\\n\\n Yukarıdaki örnekteki tek bir satırı bu dto tutmaktadır.\\n Kişi sonuç olarak Abant izzet baysal üniversitesi bilgisayar mühendisliği diplomasına sahip olsada dönemsel olarak eğitim verileri bu şekildedir.\\n\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"department\":{\"description\":\"Fakulte ve Bölüm bilgileri yer alır. Örneğin : Sosyal bilimler MYO - Pazarlama bölümü\",\"type\":\"string\"},\"educationLangName\":{\"description\":\"The language name used while learning\",\"type\":\"string\"},\"educationStageName\":{\"description\":\"Education stage. For example : Associate degree, Licanse degree etc.. \",\"type\":\"string\"},\"educationalGradeName\":{\"description\":\"Sınıf seviye adi\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"school\":{\"$ref\":\"#/definitions/SchoolProfileDTO\"},\"term\":{\"$ref\":\"#/definitions/EducationalTermDTO\"}}},\"EducationalTermDTO\":{\"title\":\"EducationalTermDTO\",\"description\":\"Bir eğitim döneminin tanımını tutar. Örneğin 2018-2019 Eğitim öğretim dönemi gibi.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"endDate\":{\"format\":\"date-time\",\"description\":\"Donem bitis tarihi\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Dönem adı\",\"type\":\"string\"},\"startDate\":{\"format\":\"date-time\",\"description\":\"Donem baslangic tarihi\",\"type\":\"string\"}}},\"SchoolProfileDTO\":{\"title\":\"SchoolProfileDTO\",\"description\":\"Bir okula ait bilgileri tutar. İlk okul - orta okul - lise - üniversite tipinde okulların tanımlarının yapıldığı modeldir.\",\"type\":\"object\",\"properties\":{\"address\":{\"description\":\"Okul adresi\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/AddressCardDTO\"}},\"contacts\":{\"description\":\"Iletisim bilgileri. Telefon mail vb.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactInfoDTO\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Okul adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"},\"type\":{\"$ref\":\"#/definitions/EducationalStageLOV\"}}},\"EducationalStageLOV\":{\"title\":\"EducationalStageLOV\",\"description\":\"Eğitim kategorilerini tutar. Örneğin; Ön lisans, Lisans vb.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Name information\",\"type\":\"string\"}}},\"ContactInfoDTO\":{\"title\":\"ContactInfoDTO\",\"description\":\"Iletisim bilgilerini sunmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Category of contact type. For example: Home address, Home telephone, Cell phone etc.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"contactInfo\":{\"description\":\"Telephone number or email address information depending on the type.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"ContactMediumCategoryLOV\":{\"title\":\"ContactMediumCategoryLOV\",\"description\":\"Contact medium kategorileri. Bir kategori tipine ait veriyi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Category Name\",\"type\":\"string\"}}},\"AddressCardDTO\":{\"title\":\"AddressCardDTO\",\"description\":\"Address bilgisini sunar. Sadece full address bilgisini ve kategorisini verir.\\n Adres kategorisine ait kategori adı bilgisi “ContactMediumType” dır.\\n Yani contact medium type \\\"iletişimde bulunulacak adresler\\\" bilgisini ifade eder.\",\"type\":\"object\",\"properties\":{\"addressCategory\":{\"description\":\"Address kategorisi\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"fullAddress\":{\"description\":\"Full address. İl ilçe mahalle sokak gibi bütün bilgileri içerir.\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/FormalEducationGradeInfoDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/teachers/{id}/electronic-addresses" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Personelin tüm kategorilere ait email bilgilerini verir." + }, + "id": { + "element": "string", + "content": "getAllTeacherElectronicAddresses" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Teacher ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Gets a list of all `ContactInfoDTO` entities of `Teacher`." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "List of all `ContactInfoDTO` entities of `Teacher`." + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactInfoDTO\"},\"definitions\":{\"ContactInfoDTO\":{\"title\":\"ContactInfoDTO\",\"description\":\"Iletisim bilgilerini sunmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Category of contact type. For example: Home address, Home telephone, Cell phone etc.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"contactInfo\":{\"description\":\"Telephone number or email address information depending on the type.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"ContactMediumCategoryLOV\":{\"title\":\"ContactMediumCategoryLOV\",\"description\":\"Contact medium kategorileri. Bir kategori tipine ait veriyi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Category Name\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/ContactInfoDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Personele yeni elektronik adres ekler" + }, + "id": { + "element": "string", + "content": "createTeacherElectronicAddress" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Personel ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Personele yeni elektronik adres ekleme servisidir." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"categories\": [],\n \"contactInfo\": \"est\",\n \"createdBy\": \"ullamco Ut e\",\n \"createdDate\": \"1965-12-25T07:06:14.602Z\",\n \"lastModifiedBy\": \"anim fugiat elit ea\",\n \"lastModifiedDate\": \"1989-04-10T01:27:51.730Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/ContactInfoDTO\"}],\"definitions\":{\"ContactInfoDTO\":{\"title\":\"ContactInfoDTO\",\"description\":\"Iletisim bilgilerini sunmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Category of contact type. For example: Home address, Home telephone, Cell phone etc.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"contactInfo\":{\"description\":\"Telephone number or email address information depending on the type.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"ContactMediumCategoryLOV\":{\"title\":\"ContactMediumCategoryLOV\",\"description\":\"Contact medium kategorileri. Bir kategori tipine ait veriyi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Category Name\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"categories\": [],\n \"contactInfo\": \"amet sit esse\",\n \"createdBy\": \"tempor sunt\",\n \"createdDate\": \"1990-05-13T17:08:04.834Z\",\n \"lastModifiedBy\": \"nulla et occaecat deserunt dolor\",\n \"lastModifiedDate\": \"1970-09-16T08:31:49.639Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı." + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/ContactInfoDTO\"}],\"definitions\":{\"ContactInfoDTO\":{\"title\":\"ContactInfoDTO\",\"description\":\"Iletisim bilgilerini sunmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Category of contact type. For example: Home address, Home telephone, Cell phone etc.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"contactInfo\":{\"description\":\"Telephone number or email address information depending on the type.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"ContactMediumCategoryLOV\":{\"title\":\"ContactMediumCategoryLOV\",\"description\":\"Contact medium kategorileri. Bir kategori tipine ait veriyi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Category Name\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"categories\": [],\n \"contactInfo\": \"dolore irure\",\n \"createdBy\": \"est\",\n \"createdDate\": \"2010-09-17T18:04:36.636Z\",\n \"lastModifiedBy\": \"aliquip labori\",\n \"lastModifiedDate\": \"1991-09-06T09:01:12.886Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"categories\": [],\n \"contactInfo\": \"proident nisi nostrud enim Lorem\",\n \"createdBy\": \"nisi ex magna\",\n \"createdDate\": \"2012-07-03T05:07:50.409Z\",\n \"lastModifiedBy\": \"sit in\",\n \"lastModifiedDate\": \"2011-04-26T08:58:28.176Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"categories\": [],\n \"contactInfo\": \"Excepteur\",\n \"createdBy\": \"ut\",\n \"createdDate\": \"1957-06-16T22:48:03.622Z\",\n \"lastModifiedBy\": \"qui aliqua Ut\",\n \"lastModifiedDate\": \"1981-05-25T10:40:36.461Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"categories\": [],\n \"contactInfo\": \"do et\",\n \"createdBy\": \"eiusmod ut et dolore\",\n \"createdDate\": \"2012-12-31T20:17:11.463Z\",\n \"lastModifiedBy\": \"\",\n \"lastModifiedDate\": \"1997-05-06T19:32:02.813Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"categories\": [],\n \"contactInfo\": \"sit in reprehender\",\n \"createdBy\": \"dolor\",\n \"createdDate\": \"1946-09-21T00:41:11.487Z\",\n \"lastModifiedBy\": \"in\",\n \"lastModifiedDate\": \"1997-08-21T00:30:48.119Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz. " + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/teachers/{id}/electronic-addresses/{contactId}" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Personelin emailini günceller" + }, + "id": { + "element": "string", + "content": "updateTeacherElectronicAddress" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Electronic address contact id" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "contactId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Personel ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Personelin emailini günceller" + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"categories\": [],\n \"contactInfo\": \"voluptate\",\n \"createdBy\": \"consequat commodo\",\n \"createdDate\": \"1941-10-10T02:40:58.078Z\",\n \"lastModifiedBy\": \"incididunt eu ipsum\",\n \"lastModifiedDate\": \"1992-07-29T23:52:46.918Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/ContactInfoDTO\"}],\"definitions\":{\"ContactInfoDTO\":{\"title\":\"ContactInfoDTO\",\"description\":\"Iletisim bilgilerini sunmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Category of contact type. For example: Home address, Home telephone, Cell phone etc.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"contactInfo\":{\"description\":\"Telephone number or email address information depending on the type.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"ContactMediumCategoryLOV\":{\"title\":\"ContactMediumCategoryLOV\",\"description\":\"Contact medium kategorileri. Bir kategori tipine ait veriyi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Category Name\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"categories\": [],\n \"contactInfo\": \"nisi aliquip proident dolore sit\",\n \"createdBy\": \"sed sit\",\n \"createdDate\": \"1986-04-07T10:14:21.149Z\",\n \"lastModifiedBy\": \"esse tempor proident minim dolore\",\n \"lastModifiedDate\": \"1944-10-18T09:06:20.826Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"categories\": [],\n \"contactInfo\": \"venia\",\n \"createdBy\": \"minim do\",\n \"createdDate\": \"1967-04-20T05:24:19.621Z\",\n \"lastModifiedBy\": \"\",\n \"lastModifiedDate\": \"1983-11-17T15:32:45.280Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "202" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/ContactInfoDTO\"}],\"definitions\":{\"ContactInfoDTO\":{\"title\":\"ContactInfoDTO\",\"description\":\"Iletisim bilgilerini sunmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Category of contact type. For example: Home address, Home telephone, Cell phone etc.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"contactInfo\":{\"description\":\"Telephone number or email address information depending on the type.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"ContactMediumCategoryLOV\":{\"title\":\"ContactMediumCategoryLOV\",\"description\":\"Contact medium kategorileri. Bir kategori tipine ait veriyi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Category Name\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"categories\": [],\n \"contactInfo\": \"laboris nisi in\",\n \"createdBy\": \"magna tempor\",\n \"createdDate\": \"1944-05-28T15:52:34.162Z\",\n \"lastModifiedBy\": \"reprehenderit commodo nisi sed dolor\",\n \"lastModifiedDate\": \"1967-03-28T11:48:11.452Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"categories\": [],\n \"contactInfo\": \"est aute dolore\",\n \"createdBy\": \"tempor n\",\n \"createdDate\": \"1990-06-01T03:46:06.353Z\",\n \"lastModifiedBy\": \"nulla proident et laboris\",\n \"lastModifiedDate\": \"2006-12-02T01:58:47.930Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"categories\": [],\n \"contactInfo\": \"dolor anim in\",\n \"createdBy\": \"Duis consequat eu esse Excepteur\",\n \"createdDate\": \"1959-02-17T16:46:05.931Z\",\n \"lastModifiedBy\": \"ea deserunt in\",\n \"lastModifiedDate\": \"1993-04-29T22:52:04.343Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"categories\": [],\n \"contactInfo\": \"aute dolor\",\n \"createdBy\": \"anim elit mollit magna incididunt\",\n \"createdDate\": \"1954-03-12T02:15:51.037Z\",\n \"lastModifiedBy\": \"magna cillum\",\n \"lastModifiedDate\": \"1942-03-02T13:07:50.610Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"categories\": [],\n \"contactInfo\": \"in nulla \",\n \"createdBy\": \"veniam\",\n \"createdDate\": \"1946-10-12T06:19:35.018Z\",\n \"lastModifiedBy\": \"nulla ullamco ex dolor in\",\n \"lastModifiedDate\": \"1989-07-18T21:57:34.579Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz." + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Personele ait elektronik posta adresi silme işlemini yapar" + }, + "id": { + "element": "string", + "content": "deleteTeacherElectronicAddress" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Electronic address contact id" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "contactId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Personel ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Personele ait elektronik posta adresi silme işlemini yapar" + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "204" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz." + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/teachers/{id}/emergency-contact" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Personele ait acil durum iletişim bilgilerini döner" + }, + "id": { + "element": "string", + "content": "getAllTeacherEmergencyContactInfo" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Personel ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Personele ait acil durum iletişim bilgilerini dönen servistir." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı." + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/EmergencyContactInfoDTO\"},\"definitions\":{\"EmergencyContactInfoDTO\":{\"title\":\"EmergencyContactInfoDTO\",\"description\":\"Personele ait acil durum iletişim bilgisidir.\",\"type\":\"object\",\"properties\":{\"fullName\":{\"description\":\"Ad soyad bilgisidir.\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"phoneNumber\":{\"$ref\":\"#/definitions/ContactInfoDTO\"}}},\"ContactInfoDTO\":{\"title\":\"ContactInfoDTO\",\"description\":\"Iletisim bilgilerini sunmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Category of contact type. For example: Home address, Home telephone, Cell phone etc.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"contactInfo\":{\"description\":\"Telephone number or email address information depending on the type.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"ContactMediumCategoryLOV\":{\"title\":\"ContactMediumCategoryLOV\",\"description\":\"Contact medium kategorileri. Bir kategori tipine ait veriyi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Category Name\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/EmergencyContactInfoDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz. " + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Personele acil durum iletişim bilgisi ekler" + }, + "id": { + "element": "string", + "content": "createTeacherEmergencyContactInfo" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Personel ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Personele ait acil durum iletişim bilgisi ekleme servisidir." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"fullName\": \"dolor aute sed sint pariatur\",\n \"id\": 33000233,\n \"phoneNumber\": {\n \"categories\": [],\n \"contactInfo\": \"in consequat fugiat\",\n \"createdBy\": \"in ullamco ad ea de\",\n \"createdDate\": \"1979-05-30T19:05:18.379Z\",\n \"id\": 35341923,\n \"lastModifiedBy\": \"tempor\",\n \"lastModifiedDate\": \"1978-11-07T00:07:36.104Z\"\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/EmergencyContactInfoDTO\"}],\"definitions\":{\"EmergencyContactInfoDTO\":{\"title\":\"EmergencyContactInfoDTO\",\"description\":\"Personele ait acil durum iletişim bilgisidir.\",\"type\":\"object\",\"properties\":{\"fullName\":{\"description\":\"Ad soyad bilgisidir.\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"phoneNumber\":{\"$ref\":\"#/definitions/ContactInfoDTO\"}}},\"ContactInfoDTO\":{\"title\":\"ContactInfoDTO\",\"description\":\"Iletisim bilgilerini sunmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Category of contact type. For example: Home address, Home telephone, Cell phone etc.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"contactInfo\":{\"description\":\"Telephone number or email address information depending on the type.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"ContactMediumCategoryLOV\":{\"title\":\"ContactMediumCategoryLOV\",\"description\":\"Contact medium kategorileri. Bir kategori tipine ait veriyi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Category Name\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/EmergencyContactInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/EmergencyContactInfoDTO\"}],\"definitions\":{\"EmergencyContactInfoDTO\":{\"title\":\"EmergencyContactInfoDTO\",\"description\":\"Personele ait acil durum iletişim bilgisidir.\",\"type\":\"object\",\"properties\":{\"fullName\":{\"description\":\"Ad soyad bilgisidir.\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"phoneNumber\":{\"$ref\":\"#/definitions/ContactInfoDTO\"}}},\"ContactInfoDTO\":{\"title\":\"ContactInfoDTO\",\"description\":\"Iletisim bilgilerini sunmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Category of contact type. For example: Home address, Home telephone, Cell phone etc.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"contactInfo\":{\"description\":\"Telephone number or email address information depending on the type.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"ContactMediumCategoryLOV\":{\"title\":\"ContactMediumCategoryLOV\",\"description\":\"Contact medium kategorileri. Bir kategori tipine ait veriyi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Category Name\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/EmergencyContactInfoDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"fullName\": \"in\",\n \"id\": 91241254,\n \"phoneNumber\": {\n \"categories\": [],\n \"contactInfo\": \"dolore\",\n \"createdBy\": \"nostrud sint proident reprehenderit Excepteur\",\n \"createdDate\": \"1998-12-28T16:08:06.235Z\",\n \"id\": -6605223,\n \"lastModifiedBy\": \"veniam in sint nostrud magna\",\n \"lastModifiedDate\": \"1978-06-06T07:22:21.370Z\"\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/EmergencyContactInfoDTO\"}],\"definitions\":{\"EmergencyContactInfoDTO\":{\"title\":\"EmergencyContactInfoDTO\",\"description\":\"Personele ait acil durum iletişim bilgisidir.\",\"type\":\"object\",\"properties\":{\"fullName\":{\"description\":\"Ad soyad bilgisidir.\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"phoneNumber\":{\"$ref\":\"#/definitions/ContactInfoDTO\"}}},\"ContactInfoDTO\":{\"title\":\"ContactInfoDTO\",\"description\":\"Iletisim bilgilerini sunmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Category of contact type. For example: Home address, Home telephone, Cell phone etc.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"contactInfo\":{\"description\":\"Telephone number or email address information depending on the type.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"ContactMediumCategoryLOV\":{\"title\":\"ContactMediumCategoryLOV\",\"description\":\"Contact medium kategorileri. Bir kategori tipine ait veriyi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Category Name\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/EmergencyContactInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/EmergencyContactInfoDTO\"}],\"definitions\":{\"EmergencyContactInfoDTO\":{\"title\":\"EmergencyContactInfoDTO\",\"description\":\"Personele ait acil durum iletişim bilgisidir.\",\"type\":\"object\",\"properties\":{\"fullName\":{\"description\":\"Ad soyad bilgisidir.\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"phoneNumber\":{\"$ref\":\"#/definitions/ContactInfoDTO\"}}},\"ContactInfoDTO\":{\"title\":\"ContactInfoDTO\",\"description\":\"Iletisim bilgilerini sunmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Category of contact type. For example: Home address, Home telephone, Cell phone etc.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"contactInfo\":{\"description\":\"Telephone number or email address information depending on the type.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"ContactMediumCategoryLOV\":{\"title\":\"ContactMediumCategoryLOV\",\"description\":\"Contact medium kategorileri. Bir kategori tipine ait veriyi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Category Name\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/EmergencyContactInfoDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"fullName\": \"mollit\",\n \"id\": 16473288,\n \"phoneNumber\": {\n \"categories\": [],\n \"contactInfo\": \"Duis deserunt voluptate laboris Lorem\",\n \"createdBy\": \"ex do anim minim occaecat\",\n \"createdDate\": \"1947-04-23T00:03:20.676Z\",\n \"id\": -68203829,\n \"lastModifiedBy\": \"sunt adipisicing ea\",\n \"lastModifiedDate\": \"2004-02-19T04:07:01.871Z\"\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/EmergencyContactInfoDTO\"}],\"definitions\":{\"EmergencyContactInfoDTO\":{\"title\":\"EmergencyContactInfoDTO\",\"description\":\"Personele ait acil durum iletişim bilgisidir.\",\"type\":\"object\",\"properties\":{\"fullName\":{\"description\":\"Ad soyad bilgisidir.\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"phoneNumber\":{\"$ref\":\"#/definitions/ContactInfoDTO\"}}},\"ContactInfoDTO\":{\"title\":\"ContactInfoDTO\",\"description\":\"Iletisim bilgilerini sunmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Category of contact type. For example: Home address, Home telephone, Cell phone etc.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"contactInfo\":{\"description\":\"Telephone number or email address information depending on the type.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"ContactMediumCategoryLOV\":{\"title\":\"ContactMediumCategoryLOV\",\"description\":\"Contact medium kategorileri. Bir kategori tipine ait veriyi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Category Name\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/EmergencyContactInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"fullName\": \"quis dolor officia\",\n \"id\": -63541456,\n \"phoneNumber\": {\n \"categories\": [],\n \"contactInfo\": \"con\",\n \"createdBy\": \"anim non\",\n \"createdDate\": \"1979-06-01T17:56:03.040Z\",\n \"id\": -3532588,\n \"lastModifiedBy\": \"nisi sit est\",\n \"lastModifiedDate\": \"1963-02-25T20:52:44.275Z\"\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/EmergencyContactInfoDTO\"}],\"definitions\":{\"EmergencyContactInfoDTO\":{\"title\":\"EmergencyContactInfoDTO\",\"description\":\"Personele ait acil durum iletişim bilgisidir.\",\"type\":\"object\",\"properties\":{\"fullName\":{\"description\":\"Ad soyad bilgisidir.\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"phoneNumber\":{\"$ref\":\"#/definitions/ContactInfoDTO\"}}},\"ContactInfoDTO\":{\"title\":\"ContactInfoDTO\",\"description\":\"Iletisim bilgilerini sunmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Category of contact type. For example: Home address, Home telephone, Cell phone etc.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"contactInfo\":{\"description\":\"Telephone number or email address information depending on the type.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"ContactMediumCategoryLOV\":{\"title\":\"ContactMediumCategoryLOV\",\"description\":\"Contact medium kategorileri. Bir kategori tipine ait veriyi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Category Name\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/EmergencyContactInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"fullName\": \"nostrud sint et aute tempor\",\n \"id\": -64648829,\n \"phoneNumber\": {\n \"categories\": [],\n \"contactInfo\": \"do voluptate\",\n \"createdBy\": \"commodo enim\",\n \"createdDate\": \"2005-06-05T20:02:00.154Z\",\n \"id\": 19448879,\n \"lastModifiedBy\": \"incididunt nisi\",\n \"lastModifiedDate\": \"1983-02-10T07:42:44.214Z\"\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/EmergencyContactInfoDTO\"}],\"definitions\":{\"EmergencyContactInfoDTO\":{\"title\":\"EmergencyContactInfoDTO\",\"description\":\"Personele ait acil durum iletişim bilgisidir.\",\"type\":\"object\",\"properties\":{\"fullName\":{\"description\":\"Ad soyad bilgisidir.\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"phoneNumber\":{\"$ref\":\"#/definitions/ContactInfoDTO\"}}},\"ContactInfoDTO\":{\"title\":\"ContactInfoDTO\",\"description\":\"Iletisim bilgilerini sunmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Category of contact type. For example: Home address, Home telephone, Cell phone etc.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"contactInfo\":{\"description\":\"Telephone number or email address information depending on the type.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"ContactMediumCategoryLOV\":{\"title\":\"ContactMediumCategoryLOV\",\"description\":\"Contact medium kategorileri. Bir kategori tipine ait veriyi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Category Name\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/EmergencyContactInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"fullName\": \"labore nisi Ut\",\n \"id\": -17873224,\n \"phoneNumber\": {\n \"categories\": [],\n \"contactInfo\": \"in nisi nostrud qui deserunt\",\n \"createdBy\": \"irure ut magna\",\n \"createdDate\": \"2005-10-29T02:48:29.178Z\",\n \"id\": -51303861,\n \"lastModifiedBy\": \"elit\",\n \"lastModifiedDate\": \"1961-12-18T17:33:35.120Z\"\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/EmergencyContactInfoDTO\"}],\"definitions\":{\"EmergencyContactInfoDTO\":{\"title\":\"EmergencyContactInfoDTO\",\"description\":\"Personele ait acil durum iletişim bilgisidir.\",\"type\":\"object\",\"properties\":{\"fullName\":{\"description\":\"Ad soyad bilgisidir.\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"phoneNumber\":{\"$ref\":\"#/definitions/ContactInfoDTO\"}}},\"ContactInfoDTO\":{\"title\":\"ContactInfoDTO\",\"description\":\"Iletisim bilgilerini sunmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Category of contact type. For example: Home address, Home telephone, Cell phone etc.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"contactInfo\":{\"description\":\"Telephone number or email address information depending on the type.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"ContactMediumCategoryLOV\":{\"title\":\"ContactMediumCategoryLOV\",\"description\":\"Contact medium kategorileri. Bir kategori tipine ait veriyi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Category Name\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/EmergencyContactInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"fullName\": \"veniam\",\n \"id\": 60741305,\n \"phoneNumber\": {\n \"categories\": [],\n \"contactInfo\": \"irure\",\n \"createdBy\": \"veniam ex\",\n \"createdDate\": \"1943-06-01T07:05:34.361Z\",\n \"id\": -53757065,\n \"lastModifiedBy\": \"ex ipsum aliquip amet\",\n \"lastModifiedDate\": \"1950-12-10T23:24:43.030Z\"\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/EmergencyContactInfoDTO\"}],\"definitions\":{\"EmergencyContactInfoDTO\":{\"title\":\"EmergencyContactInfoDTO\",\"description\":\"Personele ait acil durum iletişim bilgisidir.\",\"type\":\"object\",\"properties\":{\"fullName\":{\"description\":\"Ad soyad bilgisidir.\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"phoneNumber\":{\"$ref\":\"#/definitions/ContactInfoDTO\"}}},\"ContactInfoDTO\":{\"title\":\"ContactInfoDTO\",\"description\":\"Iletisim bilgilerini sunmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Category of contact type. For example: Home address, Home telephone, Cell phone etc.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"contactInfo\":{\"description\":\"Telephone number or email address information depending on the type.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"ContactMediumCategoryLOV\":{\"title\":\"ContactMediumCategoryLOV\",\"description\":\"Contact medium kategorileri. Bir kategori tipine ait veriyi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Category Name\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/EmergencyContactInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz. " + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/teachers/{id}/emergency-contact/{contactId}" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Personelin belirtilen acil iletişim bilgisini günceller" + }, + "id": { + "element": "string", + "content": "updateTeacherEmergencyContactInfo" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Contact ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "contactId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Personel ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Personele ait acil iletişim bilgilerinden bir tanesine ait güncelleme yapmayı sağlayan servistir. `EmergencyContactInfoDTO` kullanılır." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"fullName\": \"consectetur eiusmod et sit cillum\",\n \"id\": 35455097,\n \"phoneNumber\": {\n \"categories\": [],\n \"contactInfo\": \"Lorem tem\",\n \"createdBy\": \"esse eu cillum non minim\",\n \"createdDate\": \"1940-04-17T05:44:10.226Z\",\n \"id\": 57530129,\n \"lastModifiedBy\": \"non magna et Excepteur \",\n \"lastModifiedDate\": \"2007-11-12T23:46:45.238Z\"\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/EmergencyContactInfoDTO\"}],\"definitions\":{\"EmergencyContactInfoDTO\":{\"title\":\"EmergencyContactInfoDTO\",\"description\":\"Personele ait acil durum iletişim bilgisidir.\",\"type\":\"object\",\"properties\":{\"fullName\":{\"description\":\"Ad soyad bilgisidir.\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"phoneNumber\":{\"$ref\":\"#/definitions/ContactInfoDTO\"}}},\"ContactInfoDTO\":{\"title\":\"ContactInfoDTO\",\"description\":\"Iletisim bilgilerini sunmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Category of contact type. For example: Home address, Home telephone, Cell phone etc.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"contactInfo\":{\"description\":\"Telephone number or email address information depending on the type.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"ContactMediumCategoryLOV\":{\"title\":\"ContactMediumCategoryLOV\",\"description\":\"Contact medium kategorileri. Bir kategori tipine ait veriyi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Category Name\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/EmergencyContactInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/EmergencyContactInfoDTO\"}],\"definitions\":{\"EmergencyContactInfoDTO\":{\"title\":\"EmergencyContactInfoDTO\",\"description\":\"Personele ait acil durum iletişim bilgisidir.\",\"type\":\"object\",\"properties\":{\"fullName\":{\"description\":\"Ad soyad bilgisidir.\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"phoneNumber\":{\"$ref\":\"#/definitions/ContactInfoDTO\"}}},\"ContactInfoDTO\":{\"title\":\"ContactInfoDTO\",\"description\":\"Iletisim bilgilerini sunmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Category of contact type. For example: Home address, Home telephone, Cell phone etc.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"contactInfo\":{\"description\":\"Telephone number or email address information depending on the type.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"ContactMediumCategoryLOV\":{\"title\":\"ContactMediumCategoryLOV\",\"description\":\"Contact medium kategorileri. Bir kategori tipine ait veriyi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Category Name\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/EmergencyContactInfoDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"fullName\": \"in eiusmod cupidatat\",\n \"id\": -6003586,\n \"phoneNumber\": {\n \"categories\": [],\n \"contactInfo\": \"ex mollit non sunt\",\n \"createdBy\": \"proident voluptate ipsum in exercitation\",\n \"createdDate\": \"1981-11-18T12:09:21.200Z\",\n \"id\": 81036967,\n \"lastModifiedBy\": \"commodo enim\",\n \"lastModifiedDate\": \"1970-09-27T08:34:35.460Z\"\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/EmergencyContactInfoDTO\"}],\"definitions\":{\"EmergencyContactInfoDTO\":{\"title\":\"EmergencyContactInfoDTO\",\"description\":\"Personele ait acil durum iletişim bilgisidir.\",\"type\":\"object\",\"properties\":{\"fullName\":{\"description\":\"Ad soyad bilgisidir.\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"phoneNumber\":{\"$ref\":\"#/definitions/ContactInfoDTO\"}}},\"ContactInfoDTO\":{\"title\":\"ContactInfoDTO\",\"description\":\"Iletisim bilgilerini sunmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Category of contact type. For example: Home address, Home telephone, Cell phone etc.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"contactInfo\":{\"description\":\"Telephone number or email address information depending on the type.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"ContactMediumCategoryLOV\":{\"title\":\"ContactMediumCategoryLOV\",\"description\":\"Contact medium kategorileri. Bir kategori tipine ait veriyi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Category Name\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/EmergencyContactInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"fullName\": \"pariatu\",\n \"id\": 62449047,\n \"phoneNumber\": {\n \"categories\": [],\n \"contactInfo\": \"\",\n \"createdBy\": \"adipisicing\",\n \"createdDate\": \"1950-04-08T00:01:54.971Z\",\n \"id\": 62273953,\n \"lastModifiedBy\": \"occaecat deserunt dolor qui ea\",\n \"lastModifiedDate\": \"1955-11-25T05:11:45.688Z\"\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/EmergencyContactInfoDTO\"}],\"definitions\":{\"EmergencyContactInfoDTO\":{\"title\":\"EmergencyContactInfoDTO\",\"description\":\"Personele ait acil durum iletişim bilgisidir.\",\"type\":\"object\",\"properties\":{\"fullName\":{\"description\":\"Ad soyad bilgisidir.\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"phoneNumber\":{\"$ref\":\"#/definitions/ContactInfoDTO\"}}},\"ContactInfoDTO\":{\"title\":\"ContactInfoDTO\",\"description\":\"Iletisim bilgilerini sunmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Category of contact type. For example: Home address, Home telephone, Cell phone etc.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"contactInfo\":{\"description\":\"Telephone number or email address information depending on the type.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"ContactMediumCategoryLOV\":{\"title\":\"ContactMediumCategoryLOV\",\"description\":\"Contact medium kategorileri. Bir kategori tipine ait veriyi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Category Name\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/EmergencyContactInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "202" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/EmergencyContactInfoDTO\"}],\"definitions\":{\"EmergencyContactInfoDTO\":{\"title\":\"EmergencyContactInfoDTO\",\"description\":\"Personele ait acil durum iletişim bilgisidir.\",\"type\":\"object\",\"properties\":{\"fullName\":{\"description\":\"Ad soyad bilgisidir.\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"phoneNumber\":{\"$ref\":\"#/definitions/ContactInfoDTO\"}}},\"ContactInfoDTO\":{\"title\":\"ContactInfoDTO\",\"description\":\"Iletisim bilgilerini sunmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Category of contact type. For example: Home address, Home telephone, Cell phone etc.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"contactInfo\":{\"description\":\"Telephone number or email address information depending on the type.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"ContactMediumCategoryLOV\":{\"title\":\"ContactMediumCategoryLOV\",\"description\":\"Contact medium kategorileri. Bir kategori tipine ait veriyi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Category Name\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/EmergencyContactInfoDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"fullName\": \"nulla cillum est\",\n \"id\": -21137904,\n \"phoneNumber\": {\n \"categories\": [],\n \"contactInfo\": \"aliqua mollit ipsum Excepteur\",\n \"createdBy\": \"exercitation\",\n \"createdDate\": \"2003-12-14T13:18:57.380Z\",\n \"id\": -25933979,\n \"lastModifiedBy\": \"velit esse\",\n \"lastModifiedDate\": \"1978-08-14T23:26:54.957Z\"\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/EmergencyContactInfoDTO\"}],\"definitions\":{\"EmergencyContactInfoDTO\":{\"title\":\"EmergencyContactInfoDTO\",\"description\":\"Personele ait acil durum iletişim bilgisidir.\",\"type\":\"object\",\"properties\":{\"fullName\":{\"description\":\"Ad soyad bilgisidir.\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"phoneNumber\":{\"$ref\":\"#/definitions/ContactInfoDTO\"}}},\"ContactInfoDTO\":{\"title\":\"ContactInfoDTO\",\"description\":\"Iletisim bilgilerini sunmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Category of contact type. For example: Home address, Home telephone, Cell phone etc.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"contactInfo\":{\"description\":\"Telephone number or email address information depending on the type.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"ContactMediumCategoryLOV\":{\"title\":\"ContactMediumCategoryLOV\",\"description\":\"Contact medium kategorileri. Bir kategori tipine ait veriyi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Category Name\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/EmergencyContactInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"fullName\": \"elit Ut aliqua\",\n \"id\": -4457776,\n \"phoneNumber\": {\n \"categories\": [],\n \"contactInfo\": \"irure ut in\",\n \"createdBy\": \"culpa \",\n \"createdDate\": \"1959-04-17T15:47:09.748Z\",\n \"id\": 87200175,\n \"lastModifiedBy\": \"Excepteur\",\n \"lastModifiedDate\": \"2009-06-24T08:01:55.658Z\"\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/EmergencyContactInfoDTO\"}],\"definitions\":{\"EmergencyContactInfoDTO\":{\"title\":\"EmergencyContactInfoDTO\",\"description\":\"Personele ait acil durum iletişim bilgisidir.\",\"type\":\"object\",\"properties\":{\"fullName\":{\"description\":\"Ad soyad bilgisidir.\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"phoneNumber\":{\"$ref\":\"#/definitions/ContactInfoDTO\"}}},\"ContactInfoDTO\":{\"title\":\"ContactInfoDTO\",\"description\":\"Iletisim bilgilerini sunmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Category of contact type. For example: Home address, Home telephone, Cell phone etc.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"contactInfo\":{\"description\":\"Telephone number or email address information depending on the type.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"ContactMediumCategoryLOV\":{\"title\":\"ContactMediumCategoryLOV\",\"description\":\"Contact medium kategorileri. Bir kategori tipine ait veriyi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Category Name\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/EmergencyContactInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"fullName\": \"nisi m\",\n \"id\": 15027707,\n \"phoneNumber\": {\n \"categories\": [],\n \"contactInfo\": \"velit veniam\",\n \"createdBy\": \"deserunt mollit\",\n \"createdDate\": \"2007-03-04T11:25:20.146Z\",\n \"id\": 6405601,\n \"lastModifiedBy\": \"occaecat\",\n \"lastModifiedDate\": \"1970-03-27T15:41:37.810Z\"\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/EmergencyContactInfoDTO\"}],\"definitions\":{\"EmergencyContactInfoDTO\":{\"title\":\"EmergencyContactInfoDTO\",\"description\":\"Personele ait acil durum iletişim bilgisidir.\",\"type\":\"object\",\"properties\":{\"fullName\":{\"description\":\"Ad soyad bilgisidir.\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"phoneNumber\":{\"$ref\":\"#/definitions/ContactInfoDTO\"}}},\"ContactInfoDTO\":{\"title\":\"ContactInfoDTO\",\"description\":\"Iletisim bilgilerini sunmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Category of contact type. For example: Home address, Home telephone, Cell phone etc.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"contactInfo\":{\"description\":\"Telephone number or email address information depending on the type.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"ContactMediumCategoryLOV\":{\"title\":\"ContactMediumCategoryLOV\",\"description\":\"Contact medium kategorileri. Bir kategori tipine ait veriyi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Category Name\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/EmergencyContactInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"fullName\": \"irure\",\n \"id\": 26294980,\n \"phoneNumber\": {\n \"categories\": [],\n \"contactInfo\": \"in dolor sunt elit officia\",\n \"createdBy\": \"tempor est aute ut consectetur\",\n \"createdDate\": \"2006-12-07T21:30:36.831Z\",\n \"id\": -9249274,\n \"lastModifiedBy\": \"amet aliquip\",\n \"lastModifiedDate\": \"1953-05-23T14:51:06.443Z\"\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/EmergencyContactInfoDTO\"}],\"definitions\":{\"EmergencyContactInfoDTO\":{\"title\":\"EmergencyContactInfoDTO\",\"description\":\"Personele ait acil durum iletişim bilgisidir.\",\"type\":\"object\",\"properties\":{\"fullName\":{\"description\":\"Ad soyad bilgisidir.\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"phoneNumber\":{\"$ref\":\"#/definitions/ContactInfoDTO\"}}},\"ContactInfoDTO\":{\"title\":\"ContactInfoDTO\",\"description\":\"Iletisim bilgilerini sunmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Category of contact type. For example: Home address, Home telephone, Cell phone etc.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"contactInfo\":{\"description\":\"Telephone number or email address information depending on the type.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"ContactMediumCategoryLOV\":{\"title\":\"ContactMediumCategoryLOV\",\"description\":\"Contact medium kategorileri. Bir kategori tipine ait veriyi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Category Name\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/EmergencyContactInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"fullName\": \"officia\",\n \"id\": -76820387,\n \"phoneNumber\": {\n \"categories\": [],\n \"contactInfo\": \"dolor amet nostrud aliqua et\",\n \"createdBy\": \"deserunt minim Except\",\n \"createdDate\": \"1989-10-27T14:32:05.852Z\",\n \"id\": 73144853,\n \"lastModifiedBy\": \"elit aute nisi\",\n \"lastModifiedDate\": \"1981-08-03T17:48:04.518Z\"\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/EmergencyContactInfoDTO\"}],\"definitions\":{\"EmergencyContactInfoDTO\":{\"title\":\"EmergencyContactInfoDTO\",\"description\":\"Personele ait acil durum iletişim bilgisidir.\",\"type\":\"object\",\"properties\":{\"fullName\":{\"description\":\"Ad soyad bilgisidir.\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"phoneNumber\":{\"$ref\":\"#/definitions/ContactInfoDTO\"}}},\"ContactInfoDTO\":{\"title\":\"ContactInfoDTO\",\"description\":\"Iletisim bilgilerini sunmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Category of contact type. For example: Home address, Home telephone, Cell phone etc.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"contactInfo\":{\"description\":\"Telephone number or email address information depending on the type.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"ContactMediumCategoryLOV\":{\"title\":\"ContactMediumCategoryLOV\",\"description\":\"Contact medium kategorileri. Bir kategori tipine ait veriyi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Category Name\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/EmergencyContactInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz. " + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Personelin belirtilen acil iletişim bilgisini siler" + }, + "id": { + "element": "string", + "content": "deleteTeacherEmergencyContactInfo" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Contact ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "contactId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Personel ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Personele ait belirtilen acil durum iletişim bilgisini silmeyi sağlayan servistir." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "204" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz. " + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/teachers/{id}/foreign-languages" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Personelin bildigi yabancı dilleri ve seviyelerini listeler." + }, + "id": { + "element": "string", + "content": "getAllTeacherForeignLangInfos" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Teacher ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Gets a list of all `ForeignLangInfoDTO` entities of `Teacher`." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "List of all `ForeignLangInfoDTO` entities of `Teacher`." + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ForeignLangInfoDTO\"},\"definitions\":{\"ForeignLangInfoDTO\":{\"title\":\"ForeignLangInfoDTO\",\"description\":\"Referans tiplerinden gelicek olan yabancı dil bilgilerini kullanır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"foreignLang\":{\"$ref\":\"#/definitions/ForeignLanguageLOV\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"listening\":{\"format\":\"int32\",\"description\":\"Foreign language listening score\",\"type\":\"integer\"},\"reading\":{\"format\":\"int32\",\"description\":\"Foreign language reading score\",\"type\":\"integer\"},\"speaking\":{\"format\":\"int32\",\"description\":\"Foreign language speaking score\",\"type\":\"integer\"},\"writing\":{\"format\":\"int32\",\"description\":\"Foreign language writing score\",\"type\":\"integer\"}}},\"ForeignLanguageLOV\":{\"title\":\"ForeignLanguageLOV\",\"description\":\"Sabit tanımlanmış yabancı dil bilgisini tutar. Comboboxlar için yabancı dil listesi dönmek için kullanılmaktadır. LanguageCode ile aynı veri değildir. Bu dtoya sağlanan veride olası bütün yabancı diller bulunabilir. LanguageCode sadece sistem içerisinde kullanılan dilleri içerir.\",\"type\":\"object\",\"properties\":{\"code\":{\"description\":\"Yabancı Dil bilgisi kodu\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Yabancı Dil bilgisi adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/ForeignLangInfoDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Personele yeni yabancı dil bilgisi ekler" + }, + "id": { + "element": "string", + "content": "createTeacherForeignLanguageInfo" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Personel ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Personele yeni yabancı dil bilgisi ekler" + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"incididunt nostrud ad quis in\",\n \"createdDate\": \"1993-11-14T23:01:16.916Z\",\n \"foreignLang\": {\n \"code\": \"sint velit ex\",\n \"createdBy\": \"ex eiusmod\",\n \"createdDate\": \"1998-12-05T15:32:02.843Z\",\n \"id\": 42575559,\n \"name\": \"laboris sunt dolor nostrud\"\n },\n \"id\": -78775898,\n \"lastModifiedBy\": \"minim do sint\",\n \"lastModifiedDate\": \"2012-02-22T01:23:16.288Z\",\n \"listening\": -9137459,\n \"reading\": 62512571,\n \"speaking\": -49087954,\n \"writing\": -88184515\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/ForeignLangInfoDTO\"}],\"definitions\":{\"ForeignLangInfoDTO\":{\"title\":\"ForeignLangInfoDTO\",\"description\":\"Referans tiplerinden gelicek olan yabancı dil bilgilerini kullanır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"foreignLang\":{\"$ref\":\"#/definitions/ForeignLanguageLOV\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"listening\":{\"format\":\"int32\",\"description\":\"Foreign language listening score\",\"type\":\"integer\"},\"reading\":{\"format\":\"int32\",\"description\":\"Foreign language reading score\",\"type\":\"integer\"},\"speaking\":{\"format\":\"int32\",\"description\":\"Foreign language speaking score\",\"type\":\"integer\"},\"writing\":{\"format\":\"int32\",\"description\":\"Foreign language writing score\",\"type\":\"integer\"}}},\"ForeignLanguageLOV\":{\"title\":\"ForeignLanguageLOV\",\"description\":\"Sabit tanımlanmış yabancı dil bilgisini tutar. Comboboxlar için yabancı dil listesi dönmek için kullanılmaktadır. LanguageCode ile aynı veri değildir. Bu dtoya sağlanan veride olası bütün yabancı diller bulunabilir. LanguageCode sadece sistem içerisinde kullanılan dilleri içerir.\",\"type\":\"object\",\"properties\":{\"code\":{\"description\":\"Yabancı Dil bilgisi kodu\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Yabancı Dil bilgisi adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ForeignLangInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/ForeignLangInfoDTO\"}],\"definitions\":{\"ForeignLangInfoDTO\":{\"title\":\"ForeignLangInfoDTO\",\"description\":\"Referans tiplerinden gelicek olan yabancı dil bilgilerini kullanır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"foreignLang\":{\"$ref\":\"#/definitions/ForeignLanguageLOV\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"listening\":{\"format\":\"int32\",\"description\":\"Foreign language listening score\",\"type\":\"integer\"},\"reading\":{\"format\":\"int32\",\"description\":\"Foreign language reading score\",\"type\":\"integer\"},\"speaking\":{\"format\":\"int32\",\"description\":\"Foreign language speaking score\",\"type\":\"integer\"},\"writing\":{\"format\":\"int32\",\"description\":\"Foreign language writing score\",\"type\":\"integer\"}}},\"ForeignLanguageLOV\":{\"title\":\"ForeignLanguageLOV\",\"description\":\"Sabit tanımlanmış yabancı dil bilgisini tutar. Comboboxlar için yabancı dil listesi dönmek için kullanılmaktadır. LanguageCode ile aynı veri değildir. Bu dtoya sağlanan veride olası bütün yabancı diller bulunabilir. LanguageCode sadece sistem içerisinde kullanılan dilleri içerir.\",\"type\":\"object\",\"properties\":{\"code\":{\"description\":\"Yabancı Dil bilgisi kodu\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Yabancı Dil bilgisi adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ForeignLangInfoDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"do occaecat\",\n \"createdDate\": \"1964-12-02T06:24:48.758Z\",\n \"foreignLang\": {\n \"code\": \"eu\",\n \"createdBy\": \"laboris mollit\",\n \"createdDate\": \"2000-03-12T03:01:12.373Z\",\n \"id\": 960421,\n \"name\": \"sunt cillum\"\n },\n \"id\": -77076472,\n \"lastModifiedBy\": \"ea \",\n \"lastModifiedDate\": \"1954-02-02T19:03:26.530Z\",\n \"listening\": 16273152,\n \"reading\": 49585239,\n \"speaking\": -86676379,\n \"writing\": -39732476\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/ForeignLangInfoDTO\"}],\"definitions\":{\"ForeignLangInfoDTO\":{\"title\":\"ForeignLangInfoDTO\",\"description\":\"Referans tiplerinden gelicek olan yabancı dil bilgilerini kullanır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"foreignLang\":{\"$ref\":\"#/definitions/ForeignLanguageLOV\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"listening\":{\"format\":\"int32\",\"description\":\"Foreign language listening score\",\"type\":\"integer\"},\"reading\":{\"format\":\"int32\",\"description\":\"Foreign language reading score\",\"type\":\"integer\"},\"speaking\":{\"format\":\"int32\",\"description\":\"Foreign language speaking score\",\"type\":\"integer\"},\"writing\":{\"format\":\"int32\",\"description\":\"Foreign language writing score\",\"type\":\"integer\"}}},\"ForeignLanguageLOV\":{\"title\":\"ForeignLanguageLOV\",\"description\":\"Sabit tanımlanmış yabancı dil bilgisini tutar. Comboboxlar için yabancı dil listesi dönmek için kullanılmaktadır. LanguageCode ile aynı veri değildir. Bu dtoya sağlanan veride olası bütün yabancı diller bulunabilir. LanguageCode sadece sistem içerisinde kullanılan dilleri içerir.\",\"type\":\"object\",\"properties\":{\"code\":{\"description\":\"Yabancı Dil bilgisi kodu\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Yabancı Dil bilgisi adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ForeignLangInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/ForeignLangInfoDTO\"}],\"definitions\":{\"ForeignLangInfoDTO\":{\"title\":\"ForeignLangInfoDTO\",\"description\":\"Referans tiplerinden gelicek olan yabancı dil bilgilerini kullanır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"foreignLang\":{\"$ref\":\"#/definitions/ForeignLanguageLOV\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"listening\":{\"format\":\"int32\",\"description\":\"Foreign language listening score\",\"type\":\"integer\"},\"reading\":{\"format\":\"int32\",\"description\":\"Foreign language reading score\",\"type\":\"integer\"},\"speaking\":{\"format\":\"int32\",\"description\":\"Foreign language speaking score\",\"type\":\"integer\"},\"writing\":{\"format\":\"int32\",\"description\":\"Foreign language writing score\",\"type\":\"integer\"}}},\"ForeignLanguageLOV\":{\"title\":\"ForeignLanguageLOV\",\"description\":\"Sabit tanımlanmış yabancı dil bilgisini tutar. Comboboxlar için yabancı dil listesi dönmek için kullanılmaktadır. LanguageCode ile aynı veri değildir. Bu dtoya sağlanan veride olası bütün yabancı diller bulunabilir. LanguageCode sadece sistem içerisinde kullanılan dilleri içerir.\",\"type\":\"object\",\"properties\":{\"code\":{\"description\":\"Yabancı Dil bilgisi kodu\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Yabancı Dil bilgisi adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ForeignLangInfoDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"magna in\",\n \"createdDate\": \"1952-06-26T11:24:57.420Z\",\n \"foreignLang\": {\n \"code\": \"nulla magna tempor\",\n \"createdBy\": \"incididunt veniam esse pariatur quis\",\n \"createdDate\": \"2011-01-17T18:12:54.093Z\",\n \"id\": 73920727,\n \"name\": \"sit eu\"\n },\n \"id\": 38921921,\n \"lastModifiedBy\": \"id adipi\",\n \"lastModifiedDate\": \"1946-10-03T14:29:39.211Z\",\n \"listening\": 81336329,\n \"reading\": 8541330,\n \"speaking\": -89943581,\n \"writing\": 18445366\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/ForeignLangInfoDTO\"}],\"definitions\":{\"ForeignLangInfoDTO\":{\"title\":\"ForeignLangInfoDTO\",\"description\":\"Referans tiplerinden gelicek olan yabancı dil bilgilerini kullanır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"foreignLang\":{\"$ref\":\"#/definitions/ForeignLanguageLOV\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"listening\":{\"format\":\"int32\",\"description\":\"Foreign language listening score\",\"type\":\"integer\"},\"reading\":{\"format\":\"int32\",\"description\":\"Foreign language reading score\",\"type\":\"integer\"},\"speaking\":{\"format\":\"int32\",\"description\":\"Foreign language speaking score\",\"type\":\"integer\"},\"writing\":{\"format\":\"int32\",\"description\":\"Foreign language writing score\",\"type\":\"integer\"}}},\"ForeignLanguageLOV\":{\"title\":\"ForeignLanguageLOV\",\"description\":\"Sabit tanımlanmış yabancı dil bilgisini tutar. Comboboxlar için yabancı dil listesi dönmek için kullanılmaktadır. LanguageCode ile aynı veri değildir. Bu dtoya sağlanan veride olası bütün yabancı diller bulunabilir. LanguageCode sadece sistem içerisinde kullanılan dilleri içerir.\",\"type\":\"object\",\"properties\":{\"code\":{\"description\":\"Yabancı Dil bilgisi kodu\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Yabancı Dil bilgisi adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ForeignLangInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"voluptate minim adipisicing\",\n \"createdDate\": \"1999-06-12T16:42:34.094Z\",\n \"foreignLang\": {\n \"code\": \"sed occaecat\",\n \"createdBy\": \"dolore cupidatat\",\n \"createdDate\": \"2010-06-06T06:58:50.035Z\",\n \"id\": -3485293,\n \"name\": \"aliqua\"\n },\n \"id\": -85900698,\n \"lastModifiedBy\": \"velit\",\n \"lastModifiedDate\": \"1968-04-09T08:44:17.716Z\",\n \"listening\": 79507250,\n \"reading\": 92610535,\n \"speaking\": 20183364,\n \"writing\": 81819278\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/ForeignLangInfoDTO\"}],\"definitions\":{\"ForeignLangInfoDTO\":{\"title\":\"ForeignLangInfoDTO\",\"description\":\"Referans tiplerinden gelicek olan yabancı dil bilgilerini kullanır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"foreignLang\":{\"$ref\":\"#/definitions/ForeignLanguageLOV\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"listening\":{\"format\":\"int32\",\"description\":\"Foreign language listening score\",\"type\":\"integer\"},\"reading\":{\"format\":\"int32\",\"description\":\"Foreign language reading score\",\"type\":\"integer\"},\"speaking\":{\"format\":\"int32\",\"description\":\"Foreign language speaking score\",\"type\":\"integer\"},\"writing\":{\"format\":\"int32\",\"description\":\"Foreign language writing score\",\"type\":\"integer\"}}},\"ForeignLanguageLOV\":{\"title\":\"ForeignLanguageLOV\",\"description\":\"Sabit tanımlanmış yabancı dil bilgisini tutar. Comboboxlar için yabancı dil listesi dönmek için kullanılmaktadır. LanguageCode ile aynı veri değildir. Bu dtoya sağlanan veride olası bütün yabancı diller bulunabilir. LanguageCode sadece sistem içerisinde kullanılan dilleri içerir.\",\"type\":\"object\",\"properties\":{\"code\":{\"description\":\"Yabancı Dil bilgisi kodu\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Yabancı Dil bilgisi adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ForeignLangInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"commodo eiusmod velit sed voluptate\",\n \"createdDate\": \"1990-02-05T08:11:52.310Z\",\n \"foreignLang\": {\n \"code\": \"voluptate irure cupidatat ipsum\",\n \"createdBy\": \"aute consequat cill\",\n \"createdDate\": \"1995-02-12T23:13:04.598Z\",\n \"id\": 60272556,\n \"name\": \"occaecat\"\n },\n \"id\": 27852896,\n \"lastModifiedBy\": \"in v\",\n \"lastModifiedDate\": \"1988-03-03T04:45:05.121Z\",\n \"listening\": 84796473,\n \"reading\": -76688156,\n \"speaking\": 73583567,\n \"writing\": -90534232\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/ForeignLangInfoDTO\"}],\"definitions\":{\"ForeignLangInfoDTO\":{\"title\":\"ForeignLangInfoDTO\",\"description\":\"Referans tiplerinden gelicek olan yabancı dil bilgilerini kullanır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"foreignLang\":{\"$ref\":\"#/definitions/ForeignLanguageLOV\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"listening\":{\"format\":\"int32\",\"description\":\"Foreign language listening score\",\"type\":\"integer\"},\"reading\":{\"format\":\"int32\",\"description\":\"Foreign language reading score\",\"type\":\"integer\"},\"speaking\":{\"format\":\"int32\",\"description\":\"Foreign language speaking score\",\"type\":\"integer\"},\"writing\":{\"format\":\"int32\",\"description\":\"Foreign language writing score\",\"type\":\"integer\"}}},\"ForeignLanguageLOV\":{\"title\":\"ForeignLanguageLOV\",\"description\":\"Sabit tanımlanmış yabancı dil bilgisini tutar. Comboboxlar için yabancı dil listesi dönmek için kullanılmaktadır. LanguageCode ile aynı veri değildir. Bu dtoya sağlanan veride olası bütün yabancı diller bulunabilir. LanguageCode sadece sistem içerisinde kullanılan dilleri içerir.\",\"type\":\"object\",\"properties\":{\"code\":{\"description\":\"Yabancı Dil bilgisi kodu\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Yabancı Dil bilgisi adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ForeignLangInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"commodo\",\n \"createdDate\": \"1942-12-15T15:39:25.271Z\",\n \"foreignLang\": {\n \"code\": \"deserunt eiusmod\",\n \"createdBy\": \"ut nisi tempor\",\n \"createdDate\": \"1955-08-31T17:52:46.973Z\",\n \"id\": 80258314,\n \"name\": \"reprehenderit\"\n },\n \"id\": 81497239,\n \"lastModifiedBy\": \"dolor laborum in adipisicing\",\n \"lastModifiedDate\": \"1960-04-25T18:52:38.006Z\",\n \"listening\": 60339833,\n \"reading\": 23357253,\n \"speaking\": -6451586,\n \"writing\": -80693858\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/ForeignLangInfoDTO\"}],\"definitions\":{\"ForeignLangInfoDTO\":{\"title\":\"ForeignLangInfoDTO\",\"description\":\"Referans tiplerinden gelicek olan yabancı dil bilgilerini kullanır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"foreignLang\":{\"$ref\":\"#/definitions/ForeignLanguageLOV\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"listening\":{\"format\":\"int32\",\"description\":\"Foreign language listening score\",\"type\":\"integer\"},\"reading\":{\"format\":\"int32\",\"description\":\"Foreign language reading score\",\"type\":\"integer\"},\"speaking\":{\"format\":\"int32\",\"description\":\"Foreign language speaking score\",\"type\":\"integer\"},\"writing\":{\"format\":\"int32\",\"description\":\"Foreign language writing score\",\"type\":\"integer\"}}},\"ForeignLanguageLOV\":{\"title\":\"ForeignLanguageLOV\",\"description\":\"Sabit tanımlanmış yabancı dil bilgisini tutar. Comboboxlar için yabancı dil listesi dönmek için kullanılmaktadır. LanguageCode ile aynı veri değildir. Bu dtoya sağlanan veride olası bütün yabancı diller bulunabilir. LanguageCode sadece sistem içerisinde kullanılan dilleri içerir.\",\"type\":\"object\",\"properties\":{\"code\":{\"description\":\"Yabancı Dil bilgisi kodu\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Yabancı Dil bilgisi adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ForeignLangInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"in sunt sint pariatur magna\",\n \"createdDate\": \"2018-11-30T04:29:39.301Z\",\n \"foreignLang\": {\n \"code\": \"sed occaecat aute\",\n \"createdBy\": \"n\",\n \"createdDate\": \"1994-05-28T10:31:00.891Z\",\n \"id\": -90760567,\n \"name\": \"irure in ex commodo sit\"\n },\n \"id\": -47326292,\n \"lastModifiedBy\": \"in enim\",\n \"lastModifiedDate\": \"1998-04-30T09:10:43.686Z\",\n \"listening\": 33841687,\n \"reading\": 74928720,\n \"speaking\": -76818942,\n \"writing\": 96711544\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/ForeignLangInfoDTO\"}],\"definitions\":{\"ForeignLangInfoDTO\":{\"title\":\"ForeignLangInfoDTO\",\"description\":\"Referans tiplerinden gelicek olan yabancı dil bilgilerini kullanır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"foreignLang\":{\"$ref\":\"#/definitions/ForeignLanguageLOV\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"listening\":{\"format\":\"int32\",\"description\":\"Foreign language listening score\",\"type\":\"integer\"},\"reading\":{\"format\":\"int32\",\"description\":\"Foreign language reading score\",\"type\":\"integer\"},\"speaking\":{\"format\":\"int32\",\"description\":\"Foreign language speaking score\",\"type\":\"integer\"},\"writing\":{\"format\":\"int32\",\"description\":\"Foreign language writing score\",\"type\":\"integer\"}}},\"ForeignLanguageLOV\":{\"title\":\"ForeignLanguageLOV\",\"description\":\"Sabit tanımlanmış yabancı dil bilgisini tutar. Comboboxlar için yabancı dil listesi dönmek için kullanılmaktadır. LanguageCode ile aynı veri değildir. Bu dtoya sağlanan veride olası bütün yabancı diller bulunabilir. LanguageCode sadece sistem içerisinde kullanılan dilleri içerir.\",\"type\":\"object\",\"properties\":{\"code\":{\"description\":\"Yabancı Dil bilgisi kodu\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Yabancı Dil bilgisi adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ForeignLangInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz. " + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/teachers/{id}/foreign-languages/{foreignLanguageId}" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Personelin dil bilgisini günceller" + }, + "id": { + "element": "string", + "content": "updateTeacherForeignLanguageInfo" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Personels Foreign language information id" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "foreignLanguageId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Personel ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Personelin dil bilgisini günceller //TODO:Dilin konuşma-okuma-dinleme-yazma boyutunda ayrı servislere ayrıştırılabilir. Şu an bir dil için bunların hepsi aynı anda güncelleniyor." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"anim\",\n \"createdDate\": \"1955-11-16T13:59:29.710Z\",\n \"foreignLang\": {\n \"code\": \"cillum qui ut Excepteur minim\",\n \"createdBy\": \"consequat sed occaecat laborum voluptate\",\n \"createdDate\": \"1980-05-29T14:01:36.098Z\",\n \"id\": -45326048,\n \"name\": \"minim consequat\"\n },\n \"id\": -13761135,\n \"lastModifiedBy\": \"enim nulla in consectetur\",\n \"lastModifiedDate\": \"1960-09-10T18:13:21.724Z\",\n \"listening\": 77223810,\n \"reading\": -21256220,\n \"speaking\": -26468529,\n \"writing\": 31189218\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/ForeignLangInfoDTO\"}],\"definitions\":{\"ForeignLangInfoDTO\":{\"title\":\"ForeignLangInfoDTO\",\"description\":\"Referans tiplerinden gelicek olan yabancı dil bilgilerini kullanır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"foreignLang\":{\"$ref\":\"#/definitions/ForeignLanguageLOV\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"listening\":{\"format\":\"int32\",\"description\":\"Foreign language listening score\",\"type\":\"integer\"},\"reading\":{\"format\":\"int32\",\"description\":\"Foreign language reading score\",\"type\":\"integer\"},\"speaking\":{\"format\":\"int32\",\"description\":\"Foreign language speaking score\",\"type\":\"integer\"},\"writing\":{\"format\":\"int32\",\"description\":\"Foreign language writing score\",\"type\":\"integer\"}}},\"ForeignLanguageLOV\":{\"title\":\"ForeignLanguageLOV\",\"description\":\"Sabit tanımlanmış yabancı dil bilgisini tutar. Comboboxlar için yabancı dil listesi dönmek için kullanılmaktadır. LanguageCode ile aynı veri değildir. Bu dtoya sağlanan veride olası bütün yabancı diller bulunabilir. LanguageCode sadece sistem içerisinde kullanılan dilleri içerir.\",\"type\":\"object\",\"properties\":{\"code\":{\"description\":\"Yabancı Dil bilgisi kodu\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Yabancı Dil bilgisi adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ForeignLangInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/ForeignLangInfoDTO\"}],\"definitions\":{\"ForeignLangInfoDTO\":{\"title\":\"ForeignLangInfoDTO\",\"description\":\"Referans tiplerinden gelicek olan yabancı dil bilgilerini kullanır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"foreignLang\":{\"$ref\":\"#/definitions/ForeignLanguageLOV\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"listening\":{\"format\":\"int32\",\"description\":\"Foreign language listening score\",\"type\":\"integer\"},\"reading\":{\"format\":\"int32\",\"description\":\"Foreign language reading score\",\"type\":\"integer\"},\"speaking\":{\"format\":\"int32\",\"description\":\"Foreign language speaking score\",\"type\":\"integer\"},\"writing\":{\"format\":\"int32\",\"description\":\"Foreign language writing score\",\"type\":\"integer\"}}},\"ForeignLanguageLOV\":{\"title\":\"ForeignLanguageLOV\",\"description\":\"Sabit tanımlanmış yabancı dil bilgisini tutar. Comboboxlar için yabancı dil listesi dönmek için kullanılmaktadır. LanguageCode ile aynı veri değildir. Bu dtoya sağlanan veride olası bütün yabancı diller bulunabilir. LanguageCode sadece sistem içerisinde kullanılan dilleri içerir.\",\"type\":\"object\",\"properties\":{\"code\":{\"description\":\"Yabancı Dil bilgisi kodu\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Yabancı Dil bilgisi adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ForeignLangInfoDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"Lorem consequat laboris minim deserunt\",\n \"createdDate\": \"2000-06-12T17:48:29.672Z\",\n \"foreignLang\": {\n \"code\": \"nostrud cillum adipi\",\n \"createdBy\": \"minim non et\",\n \"createdDate\": \"1964-02-29T11:03:29.018Z\",\n \"id\": -26708843,\n \"name\": \"mollit enim magna aliqua\"\n },\n \"id\": 84329432,\n \"lastModifiedBy\": \"quis ut velit\",\n \"lastModifiedDate\": \"1971-03-06T10:34:54.206Z\",\n \"listening\": 53024120,\n \"reading\": 66560444,\n \"speaking\": 54028953,\n \"writing\": 95363741\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/ForeignLangInfoDTO\"}],\"definitions\":{\"ForeignLangInfoDTO\":{\"title\":\"ForeignLangInfoDTO\",\"description\":\"Referans tiplerinden gelicek olan yabancı dil bilgilerini kullanır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"foreignLang\":{\"$ref\":\"#/definitions/ForeignLanguageLOV\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"listening\":{\"format\":\"int32\",\"description\":\"Foreign language listening score\",\"type\":\"integer\"},\"reading\":{\"format\":\"int32\",\"description\":\"Foreign language reading score\",\"type\":\"integer\"},\"speaking\":{\"format\":\"int32\",\"description\":\"Foreign language speaking score\",\"type\":\"integer\"},\"writing\":{\"format\":\"int32\",\"description\":\"Foreign language writing score\",\"type\":\"integer\"}}},\"ForeignLanguageLOV\":{\"title\":\"ForeignLanguageLOV\",\"description\":\"Sabit tanımlanmış yabancı dil bilgisini tutar. Comboboxlar için yabancı dil listesi dönmek için kullanılmaktadır. LanguageCode ile aynı veri değildir. Bu dtoya sağlanan veride olası bütün yabancı diller bulunabilir. LanguageCode sadece sistem içerisinde kullanılan dilleri içerir.\",\"type\":\"object\",\"properties\":{\"code\":{\"description\":\"Yabancı Dil bilgisi kodu\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Yabancı Dil bilgisi adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ForeignLangInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"labore\",\n \"createdDate\": \"2001-11-09T20:21:21.177Z\",\n \"foreignLang\": {\n \"code\": \"ipsum id sint ea\",\n \"createdBy\": \"Duis\",\n \"createdDate\": \"1944-03-24T19:01:20.793Z\",\n \"id\": -76998153,\n \"name\": \"sunt commodo\"\n },\n \"id\": 24361997,\n \"lastModifiedBy\": \"do\",\n \"lastModifiedDate\": \"2007-08-06T18:10:08.481Z\",\n \"listening\": -92251531,\n \"reading\": 14417792,\n \"speaking\": -11198752,\n \"writing\": -22955398\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/ForeignLangInfoDTO\"}],\"definitions\":{\"ForeignLangInfoDTO\":{\"title\":\"ForeignLangInfoDTO\",\"description\":\"Referans tiplerinden gelicek olan yabancı dil bilgilerini kullanır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"foreignLang\":{\"$ref\":\"#/definitions/ForeignLanguageLOV\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"listening\":{\"format\":\"int32\",\"description\":\"Foreign language listening score\",\"type\":\"integer\"},\"reading\":{\"format\":\"int32\",\"description\":\"Foreign language reading score\",\"type\":\"integer\"},\"speaking\":{\"format\":\"int32\",\"description\":\"Foreign language speaking score\",\"type\":\"integer\"},\"writing\":{\"format\":\"int32\",\"description\":\"Foreign language writing score\",\"type\":\"integer\"}}},\"ForeignLanguageLOV\":{\"title\":\"ForeignLanguageLOV\",\"description\":\"Sabit tanımlanmış yabancı dil bilgisini tutar. Comboboxlar için yabancı dil listesi dönmek için kullanılmaktadır. LanguageCode ile aynı veri değildir. Bu dtoya sağlanan veride olası bütün yabancı diller bulunabilir. LanguageCode sadece sistem içerisinde kullanılan dilleri içerir.\",\"type\":\"object\",\"properties\":{\"code\":{\"description\":\"Yabancı Dil bilgisi kodu\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Yabancı Dil bilgisi adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ForeignLangInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "202" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/ForeignLangInfoDTO\"}],\"definitions\":{\"ForeignLangInfoDTO\":{\"title\":\"ForeignLangInfoDTO\",\"description\":\"Referans tiplerinden gelicek olan yabancı dil bilgilerini kullanır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"foreignLang\":{\"$ref\":\"#/definitions/ForeignLanguageLOV\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"listening\":{\"format\":\"int32\",\"description\":\"Foreign language listening score\",\"type\":\"integer\"},\"reading\":{\"format\":\"int32\",\"description\":\"Foreign language reading score\",\"type\":\"integer\"},\"speaking\":{\"format\":\"int32\",\"description\":\"Foreign language speaking score\",\"type\":\"integer\"},\"writing\":{\"format\":\"int32\",\"description\":\"Foreign language writing score\",\"type\":\"integer\"}}},\"ForeignLanguageLOV\":{\"title\":\"ForeignLanguageLOV\",\"description\":\"Sabit tanımlanmış yabancı dil bilgisini tutar. Comboboxlar için yabancı dil listesi dönmek için kullanılmaktadır. LanguageCode ile aynı veri değildir. Bu dtoya sağlanan veride olası bütün yabancı diller bulunabilir. LanguageCode sadece sistem içerisinde kullanılan dilleri içerir.\",\"type\":\"object\",\"properties\":{\"code\":{\"description\":\"Yabancı Dil bilgisi kodu\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Yabancı Dil bilgisi adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ForeignLangInfoDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"dolor nostrud in\",\n \"createdDate\": \"1979-05-12T04:01:48.135Z\",\n \"foreignLang\": {\n \"code\": \"laborum\",\n \"createdBy\": \"proident\",\n \"createdDate\": \"1955-07-23T07:45:22.272Z\",\n \"id\": -34511050,\n \"name\": \"ad\"\n },\n \"id\": 26197046,\n \"lastModifiedBy\": \"occaecat elit et laboris nisi\",\n \"lastModifiedDate\": \"1967-08-01T17:02:02.467Z\",\n \"listening\": -64278644,\n \"reading\": 47247437,\n \"speaking\": -1518843,\n \"writing\": -80478615\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/ForeignLangInfoDTO\"}],\"definitions\":{\"ForeignLangInfoDTO\":{\"title\":\"ForeignLangInfoDTO\",\"description\":\"Referans tiplerinden gelicek olan yabancı dil bilgilerini kullanır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"foreignLang\":{\"$ref\":\"#/definitions/ForeignLanguageLOV\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"listening\":{\"format\":\"int32\",\"description\":\"Foreign language listening score\",\"type\":\"integer\"},\"reading\":{\"format\":\"int32\",\"description\":\"Foreign language reading score\",\"type\":\"integer\"},\"speaking\":{\"format\":\"int32\",\"description\":\"Foreign language speaking score\",\"type\":\"integer\"},\"writing\":{\"format\":\"int32\",\"description\":\"Foreign language writing score\",\"type\":\"integer\"}}},\"ForeignLanguageLOV\":{\"title\":\"ForeignLanguageLOV\",\"description\":\"Sabit tanımlanmış yabancı dil bilgisini tutar. Comboboxlar için yabancı dil listesi dönmek için kullanılmaktadır. LanguageCode ile aynı veri değildir. Bu dtoya sağlanan veride olası bütün yabancı diller bulunabilir. LanguageCode sadece sistem içerisinde kullanılan dilleri içerir.\",\"type\":\"object\",\"properties\":{\"code\":{\"description\":\"Yabancı Dil bilgisi kodu\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Yabancı Dil bilgisi adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ForeignLangInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"Duis\",\n \"createdDate\": \"2006-01-11T16:01:07.450Z\",\n \"foreignLang\": {\n \"code\": \"fugiat in in aliqua\",\n \"createdBy\": \"esse officia qui laboris id\",\n \"createdDate\": \"2002-07-25T09:58:07.725Z\",\n \"id\": 49961498,\n \"name\": \"eu sed laboris\"\n },\n \"id\": 76967255,\n \"lastModifiedBy\": \"sint\",\n \"lastModifiedDate\": \"1956-05-06T05:10:24.165Z\",\n \"listening\": -5401057,\n \"reading\": 10831684,\n \"speaking\": -63328041,\n \"writing\": -8317010\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/ForeignLangInfoDTO\"}],\"definitions\":{\"ForeignLangInfoDTO\":{\"title\":\"ForeignLangInfoDTO\",\"description\":\"Referans tiplerinden gelicek olan yabancı dil bilgilerini kullanır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"foreignLang\":{\"$ref\":\"#/definitions/ForeignLanguageLOV\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"listening\":{\"format\":\"int32\",\"description\":\"Foreign language listening score\",\"type\":\"integer\"},\"reading\":{\"format\":\"int32\",\"description\":\"Foreign language reading score\",\"type\":\"integer\"},\"speaking\":{\"format\":\"int32\",\"description\":\"Foreign language speaking score\",\"type\":\"integer\"},\"writing\":{\"format\":\"int32\",\"description\":\"Foreign language writing score\",\"type\":\"integer\"}}},\"ForeignLanguageLOV\":{\"title\":\"ForeignLanguageLOV\",\"description\":\"Sabit tanımlanmış yabancı dil bilgisini tutar. Comboboxlar için yabancı dil listesi dönmek için kullanılmaktadır. LanguageCode ile aynı veri değildir. Bu dtoya sağlanan veride olası bütün yabancı diller bulunabilir. LanguageCode sadece sistem içerisinde kullanılan dilleri içerir.\",\"type\":\"object\",\"properties\":{\"code\":{\"description\":\"Yabancı Dil bilgisi kodu\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Yabancı Dil bilgisi adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ForeignLangInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"reprehenderit cupidatat Ut incididunt\",\n \"createdDate\": \"2006-01-20T14:10:07.748Z\",\n \"foreignLang\": {\n \"code\": \"non\",\n \"createdBy\": \"nostrud ex\",\n \"createdDate\": \"1958-12-09T02:04:14.006Z\",\n \"id\": -48196398,\n \"name\": \"nostrud\"\n },\n \"id\": -25360629,\n \"lastModifiedBy\": \"mollit\",\n \"lastModifiedDate\": \"1992-12-07T03:11:17.271Z\",\n \"listening\": -23059898,\n \"reading\": -86144490,\n \"speaking\": -33264210,\n \"writing\": 13951653\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/ForeignLangInfoDTO\"}],\"definitions\":{\"ForeignLangInfoDTO\":{\"title\":\"ForeignLangInfoDTO\",\"description\":\"Referans tiplerinden gelicek olan yabancı dil bilgilerini kullanır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"foreignLang\":{\"$ref\":\"#/definitions/ForeignLanguageLOV\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"listening\":{\"format\":\"int32\",\"description\":\"Foreign language listening score\",\"type\":\"integer\"},\"reading\":{\"format\":\"int32\",\"description\":\"Foreign language reading score\",\"type\":\"integer\"},\"speaking\":{\"format\":\"int32\",\"description\":\"Foreign language speaking score\",\"type\":\"integer\"},\"writing\":{\"format\":\"int32\",\"description\":\"Foreign language writing score\",\"type\":\"integer\"}}},\"ForeignLanguageLOV\":{\"title\":\"ForeignLanguageLOV\",\"description\":\"Sabit tanımlanmış yabancı dil bilgisini tutar. Comboboxlar için yabancı dil listesi dönmek için kullanılmaktadır. LanguageCode ile aynı veri değildir. Bu dtoya sağlanan veride olası bütün yabancı diller bulunabilir. LanguageCode sadece sistem içerisinde kullanılan dilleri içerir.\",\"type\":\"object\",\"properties\":{\"code\":{\"description\":\"Yabancı Dil bilgisi kodu\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Yabancı Dil bilgisi adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ForeignLangInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"est culpa cillum\",\n \"createdDate\": \"1948-10-24T01:41:32.825Z\",\n \"foreignLang\": {\n \"code\": \"eu voluptate nisi\",\n \"createdBy\": \"cillum\",\n \"createdDate\": \"1960-02-14T08:19:36.535Z\",\n \"id\": 57666408,\n \"name\": \"amet reprehenderit dolor\"\n },\n \"id\": 31699358,\n \"lastModifiedBy\": \"Excepteur sunt sed\",\n \"lastModifiedDate\": \"1977-07-31T18:00:21.831Z\",\n \"listening\": -53692941,\n \"reading\": 8243612,\n \"speaking\": 44656826,\n \"writing\": -44675374\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/ForeignLangInfoDTO\"}],\"definitions\":{\"ForeignLangInfoDTO\":{\"title\":\"ForeignLangInfoDTO\",\"description\":\"Referans tiplerinden gelicek olan yabancı dil bilgilerini kullanır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"foreignLang\":{\"$ref\":\"#/definitions/ForeignLanguageLOV\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"listening\":{\"format\":\"int32\",\"description\":\"Foreign language listening score\",\"type\":\"integer\"},\"reading\":{\"format\":\"int32\",\"description\":\"Foreign language reading score\",\"type\":\"integer\"},\"speaking\":{\"format\":\"int32\",\"description\":\"Foreign language speaking score\",\"type\":\"integer\"},\"writing\":{\"format\":\"int32\",\"description\":\"Foreign language writing score\",\"type\":\"integer\"}}},\"ForeignLanguageLOV\":{\"title\":\"ForeignLanguageLOV\",\"description\":\"Sabit tanımlanmış yabancı dil bilgisini tutar. Comboboxlar için yabancı dil listesi dönmek için kullanılmaktadır. LanguageCode ile aynı veri değildir. Bu dtoya sağlanan veride olası bütün yabancı diller bulunabilir. LanguageCode sadece sistem içerisinde kullanılan dilleri içerir.\",\"type\":\"object\",\"properties\":{\"code\":{\"description\":\"Yabancı Dil bilgisi kodu\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Yabancı Dil bilgisi adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ForeignLangInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"minim\",\n \"createdDate\": \"1971-12-04T14:56:24.961Z\",\n \"foreignLang\": {\n \"code\": \"adipisicing ipsum veniam incididunt\",\n \"createdBy\": \"fugiat velit ad\",\n \"createdDate\": \"1958-12-02T15:55:26.939Z\",\n \"id\": -70385051,\n \"name\": \"do officia\"\n },\n \"id\": -1663715,\n \"lastModifiedBy\": \"proident in\",\n \"lastModifiedDate\": \"1997-07-12T09:08:19.202Z\",\n \"listening\": -54622886,\n \"reading\": -10464213,\n \"speaking\": -5315549,\n \"writing\": 93683830\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/ForeignLangInfoDTO\"}],\"definitions\":{\"ForeignLangInfoDTO\":{\"title\":\"ForeignLangInfoDTO\",\"description\":\"Referans tiplerinden gelicek olan yabancı dil bilgilerini kullanır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"foreignLang\":{\"$ref\":\"#/definitions/ForeignLanguageLOV\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"listening\":{\"format\":\"int32\",\"description\":\"Foreign language listening score\",\"type\":\"integer\"},\"reading\":{\"format\":\"int32\",\"description\":\"Foreign language reading score\",\"type\":\"integer\"},\"speaking\":{\"format\":\"int32\",\"description\":\"Foreign language speaking score\",\"type\":\"integer\"},\"writing\":{\"format\":\"int32\",\"description\":\"Foreign language writing score\",\"type\":\"integer\"}}},\"ForeignLanguageLOV\":{\"title\":\"ForeignLanguageLOV\",\"description\":\"Sabit tanımlanmış yabancı dil bilgisini tutar. Comboboxlar için yabancı dil listesi dönmek için kullanılmaktadır. LanguageCode ile aynı veri değildir. Bu dtoya sağlanan veride olası bütün yabancı diller bulunabilir. LanguageCode sadece sistem içerisinde kullanılan dilleri içerir.\",\"type\":\"object\",\"properties\":{\"code\":{\"description\":\"Yabancı Dil bilgisi kodu\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Yabancı Dil bilgisi adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ForeignLangInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz. " + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Personelin yabancı dil bilgisini siler." + }, + "id": { + "element": "string", + "content": "deleteTeacherForeignLanguageInfo" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Personels Foreign language information id" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "foreignLanguageId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Personel ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Personelin yabancı dil bilgisini siler." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "204" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz. " + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/teachers/{id}/general-info" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Personele ait genel bilgileri getirir" + }, + "id": { + "element": "string", + "content": "getTeacherGeneralInfo" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Personel ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Personele ait genel bilgileri getiren servistir. `PersonalGeneralInfoDTO` objesini döner. Örnek: eğitim durumu, ehliyet, çocuk sayısı, vs.." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem başarılı." + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/PersonalGeneralInfoDTO\"}],\"definitions\":{\"PersonalGeneralInfoDTO\":{\"title\":\"PersonalGeneralInfoDTO\",\"description\":\"Personele ait genel tanımları tutar.( Hocaefendi, eğitim sorumlusu vb. )\",\"type\":\"object\",\"properties\":{\"childrenCount\":{\"format\":\"int32\",\"description\":\"Cocuk sayisi\",\"type\":\"integer\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"driverLicense\":{\"description\":\"Surucu belgeleri\",\"type\":\"array\",\"items\":{\"type\":\"string\"}},\"employmentStatus\":{\"description\":\"Vazife durumu\",\"type\":\"boolean\"},\"houseOwner\":{\"description\":\"Personelin ev sahipligi bilgisi\",\"type\":\"boolean\"},\"insurance\":{\"description\":\"Sigortalilik durumu\",\"type\":\"boolean\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"residenceType\":{\"$ref\":\"#/definitions/ResidenceTypeLOV\"}}},\"ResidenceTypeLOV\":{\"title\":\"ResidenceTypeLOV\",\"description\":\"Ikamet tür tanımlarını tutar. Örneğin; Kira, Kendi evi \",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Ikamet tür adı\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/PersonalGeneralInfoDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz. " + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Personelin genel bilgileri düzenler." + }, + "id": { + "element": "string", + "content": "updateTeacherGeneralInfo" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Personel ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Personele ait genel bilgilerin güncellendiği servistir. `PersonalGeneralInfoDTO` objesi kullanılarak güncelleme yapılır. Personel genel bilgilerinin Post metodu yoktur. (yeni ekleme). Personel ilk kayıt yapılırken bu bilgiler kaydedilmiştir. Personel genel bilgileri hiç kaydedilmemişse profil ekranı açıldığında genel bilgilerdeki ilgili başlıklar gelir. Karşılıkları boş olur. Burada yapılan düzenleme güncelleme yerine geçer." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"childrenCount\": -10230548,\n \"createdBy\": \"consectetur nostrud magna\",\n \"createdDate\": \"1959-11-10T08:13:52.066Z\",\n \"driverLicense\": [],\n \"employmentStatus\": false,\n \"houseOwner\": true,\n \"insurance\": true,\n \"lastModifiedBy\": \"irure labore non\",\n \"lastModifiedDate\": \"1998-07-27T20:48:50.698Z\",\n \"residenceType\": {\n \"createdBy\": \"qui cillum minim in commodo\",\n \"createdDate\": \"2000-04-08T01:56:00.129Z\",\n \"id\": 32331850,\n \"name\": \"Ut in exercitation d\"\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/PersonalGeneralInfoDTO\"}],\"definitions\":{\"PersonalGeneralInfoDTO\":{\"title\":\"PersonalGeneralInfoDTO\",\"description\":\"Personele ait genel tanımları tutar.( Hocaefendi, eğitim sorumlusu vb. )\",\"type\":\"object\",\"properties\":{\"childrenCount\":{\"format\":\"int32\",\"description\":\"Cocuk sayisi\",\"type\":\"integer\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"driverLicense\":{\"description\":\"Surucu belgeleri\",\"type\":\"array\",\"items\":{\"type\":\"string\"}},\"employmentStatus\":{\"description\":\"Vazife durumu\",\"type\":\"boolean\"},\"houseOwner\":{\"description\":\"Personelin ev sahipligi bilgisi\",\"type\":\"boolean\"},\"insurance\":{\"description\":\"Sigortalilik durumu\",\"type\":\"boolean\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"residenceType\":{\"$ref\":\"#/definitions/ResidenceTypeLOV\"}}},\"ResidenceTypeLOV\":{\"title\":\"ResidenceTypeLOV\",\"description\":\"Ikamet tür tanımlarını tutar. Örneğin; Kira, Kendi evi \",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Ikamet tür adı\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/PersonalGeneralInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/PersonalGeneralInfoDTO\"}],\"definitions\":{\"PersonalGeneralInfoDTO\":{\"title\":\"PersonalGeneralInfoDTO\",\"description\":\"Personele ait genel tanımları tutar.( Hocaefendi, eğitim sorumlusu vb. )\",\"type\":\"object\",\"properties\":{\"childrenCount\":{\"format\":\"int32\",\"description\":\"Cocuk sayisi\",\"type\":\"integer\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"driverLicense\":{\"description\":\"Surucu belgeleri\",\"type\":\"array\",\"items\":{\"type\":\"string\"}},\"employmentStatus\":{\"description\":\"Vazife durumu\",\"type\":\"boolean\"},\"houseOwner\":{\"description\":\"Personelin ev sahipligi bilgisi\",\"type\":\"boolean\"},\"insurance\":{\"description\":\"Sigortalilik durumu\",\"type\":\"boolean\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"residenceType\":{\"$ref\":\"#/definitions/ResidenceTypeLOV\"}}},\"ResidenceTypeLOV\":{\"title\":\"ResidenceTypeLOV\",\"description\":\"Ikamet tür tanımlarını tutar. Örneğin; Kira, Kendi evi \",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Ikamet tür adı\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/PersonalGeneralInfoDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"childrenCount\": 48405695,\n \"createdBy\": \"ea Lorem occaecat\",\n \"createdDate\": \"1942-09-17T11:13:22.517Z\",\n \"driverLicense\": [],\n \"employmentStatus\": false,\n \"houseOwner\": false,\n \"insurance\": true,\n \"lastModifiedBy\": \"Duis deserunt Ut non\",\n \"lastModifiedDate\": \"1972-01-31T16:38:05.442Z\",\n \"residenceType\": {\n \"createdBy\": \"veniam magna adipisicing occaecat nulla\",\n \"createdDate\": \"2015-06-03T21:11:44.927Z\",\n \"id\": -82192973,\n \"name\": \"Lorem ut qui\"\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/PersonalGeneralInfoDTO\"}],\"definitions\":{\"PersonalGeneralInfoDTO\":{\"title\":\"PersonalGeneralInfoDTO\",\"description\":\"Personele ait genel tanımları tutar.( Hocaefendi, eğitim sorumlusu vb. )\",\"type\":\"object\",\"properties\":{\"childrenCount\":{\"format\":\"int32\",\"description\":\"Cocuk sayisi\",\"type\":\"integer\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"driverLicense\":{\"description\":\"Surucu belgeleri\",\"type\":\"array\",\"items\":{\"type\":\"string\"}},\"employmentStatus\":{\"description\":\"Vazife durumu\",\"type\":\"boolean\"},\"houseOwner\":{\"description\":\"Personelin ev sahipligi bilgisi\",\"type\":\"boolean\"},\"insurance\":{\"description\":\"Sigortalilik durumu\",\"type\":\"boolean\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"residenceType\":{\"$ref\":\"#/definitions/ResidenceTypeLOV\"}}},\"ResidenceTypeLOV\":{\"title\":\"ResidenceTypeLOV\",\"description\":\"Ikamet tür tanımlarını tutar. Örneğin; Kira, Kendi evi \",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Ikamet tür adı\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/PersonalGeneralInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"childrenCount\": -84749264,\n \"createdBy\": \"pariatur ullamco mollit qui sunt\",\n \"createdDate\": \"2018-10-10T08:05:50.158Z\",\n \"driverLicense\": [],\n \"employmentStatus\": true,\n \"houseOwner\": true,\n \"insurance\": true,\n \"lastModifiedBy\": \"in\",\n \"lastModifiedDate\": \"1947-12-29T11:53:45.289Z\",\n \"residenceType\": {\n \"createdBy\": \"pariatur quis reprehenderit\",\n \"createdDate\": \"1997-09-24T06:15:25.988Z\",\n \"id\": 43549972,\n \"name\": \"ut cillum dolor laborum quis\"\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/PersonalGeneralInfoDTO\"}],\"definitions\":{\"PersonalGeneralInfoDTO\":{\"title\":\"PersonalGeneralInfoDTO\",\"description\":\"Personele ait genel tanımları tutar.( Hocaefendi, eğitim sorumlusu vb. )\",\"type\":\"object\",\"properties\":{\"childrenCount\":{\"format\":\"int32\",\"description\":\"Cocuk sayisi\",\"type\":\"integer\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"driverLicense\":{\"description\":\"Surucu belgeleri\",\"type\":\"array\",\"items\":{\"type\":\"string\"}},\"employmentStatus\":{\"description\":\"Vazife durumu\",\"type\":\"boolean\"},\"houseOwner\":{\"description\":\"Personelin ev sahipligi bilgisi\",\"type\":\"boolean\"},\"insurance\":{\"description\":\"Sigortalilik durumu\",\"type\":\"boolean\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"residenceType\":{\"$ref\":\"#/definitions/ResidenceTypeLOV\"}}},\"ResidenceTypeLOV\":{\"title\":\"ResidenceTypeLOV\",\"description\":\"Ikamet tür tanımlarını tutar. Örneğin; Kira, Kendi evi \",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Ikamet tür adı\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/PersonalGeneralInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "202" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/PersonalGeneralInfoDTO\"}],\"definitions\":{\"PersonalGeneralInfoDTO\":{\"title\":\"PersonalGeneralInfoDTO\",\"description\":\"Personele ait genel tanımları tutar.( Hocaefendi, eğitim sorumlusu vb. )\",\"type\":\"object\",\"properties\":{\"childrenCount\":{\"format\":\"int32\",\"description\":\"Cocuk sayisi\",\"type\":\"integer\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"driverLicense\":{\"description\":\"Surucu belgeleri\",\"type\":\"array\",\"items\":{\"type\":\"string\"}},\"employmentStatus\":{\"description\":\"Vazife durumu\",\"type\":\"boolean\"},\"houseOwner\":{\"description\":\"Personelin ev sahipligi bilgisi\",\"type\":\"boolean\"},\"insurance\":{\"description\":\"Sigortalilik durumu\",\"type\":\"boolean\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"residenceType\":{\"$ref\":\"#/definitions/ResidenceTypeLOV\"}}},\"ResidenceTypeLOV\":{\"title\":\"ResidenceTypeLOV\",\"description\":\"Ikamet tür tanımlarını tutar. Örneğin; Kira, Kendi evi \",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Ikamet tür adı\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/PersonalGeneralInfoDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"childrenCount\": -94771805,\n \"createdBy\": \"anim\",\n \"createdDate\": \"1965-01-10T02:33:11.486Z\",\n \"driverLicense\": [],\n \"employmentStatus\": true,\n \"houseOwner\": true,\n \"insurance\": false,\n \"lastModifiedBy\": \"reprehen\",\n \"lastModifiedDate\": \"1948-02-09T20:20:11.660Z\",\n \"residenceType\": {\n \"createdBy\": \"fugiat\",\n \"createdDate\": \"1955-07-20T23:20:12.999Z\",\n \"id\": -12310662,\n \"name\": \"commodo veniam aute\"\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/PersonalGeneralInfoDTO\"}],\"definitions\":{\"PersonalGeneralInfoDTO\":{\"title\":\"PersonalGeneralInfoDTO\",\"description\":\"Personele ait genel tanımları tutar.( Hocaefendi, eğitim sorumlusu vb. )\",\"type\":\"object\",\"properties\":{\"childrenCount\":{\"format\":\"int32\",\"description\":\"Cocuk sayisi\",\"type\":\"integer\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"driverLicense\":{\"description\":\"Surucu belgeleri\",\"type\":\"array\",\"items\":{\"type\":\"string\"}},\"employmentStatus\":{\"description\":\"Vazife durumu\",\"type\":\"boolean\"},\"houseOwner\":{\"description\":\"Personelin ev sahipligi bilgisi\",\"type\":\"boolean\"},\"insurance\":{\"description\":\"Sigortalilik durumu\",\"type\":\"boolean\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"residenceType\":{\"$ref\":\"#/definitions/ResidenceTypeLOV\"}}},\"ResidenceTypeLOV\":{\"title\":\"ResidenceTypeLOV\",\"description\":\"Ikamet tür tanımlarını tutar. Örneğin; Kira, Kendi evi \",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Ikamet tür adı\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/PersonalGeneralInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"childrenCount\": -10213744,\n \"createdBy\": \"voluptate\",\n \"createdDate\": \"1983-11-10T23:00:18.858Z\",\n \"driverLicense\": [],\n \"employmentStatus\": false,\n \"houseOwner\": false,\n \"insurance\": false,\n \"lastModifiedBy\": \"l\",\n \"lastModifiedDate\": \"1994-07-15T04:37:45.705Z\",\n \"residenceType\": {\n \"createdBy\": \"sunt aliqua\",\n \"createdDate\": \"2011-09-05T08:25:17.928Z\",\n \"id\": 56904411,\n \"name\": \"e\"\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/PersonalGeneralInfoDTO\"}],\"definitions\":{\"PersonalGeneralInfoDTO\":{\"title\":\"PersonalGeneralInfoDTO\",\"description\":\"Personele ait genel tanımları tutar.( Hocaefendi, eğitim sorumlusu vb. )\",\"type\":\"object\",\"properties\":{\"childrenCount\":{\"format\":\"int32\",\"description\":\"Cocuk sayisi\",\"type\":\"integer\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"driverLicense\":{\"description\":\"Surucu belgeleri\",\"type\":\"array\",\"items\":{\"type\":\"string\"}},\"employmentStatus\":{\"description\":\"Vazife durumu\",\"type\":\"boolean\"},\"houseOwner\":{\"description\":\"Personelin ev sahipligi bilgisi\",\"type\":\"boolean\"},\"insurance\":{\"description\":\"Sigortalilik durumu\",\"type\":\"boolean\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"residenceType\":{\"$ref\":\"#/definitions/ResidenceTypeLOV\"}}},\"ResidenceTypeLOV\":{\"title\":\"ResidenceTypeLOV\",\"description\":\"Ikamet tür tanımlarını tutar. Örneğin; Kira, Kendi evi \",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Ikamet tür adı\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/PersonalGeneralInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"childrenCount\": 60177834,\n \"createdBy\": \"labore aute tempor\",\n \"createdDate\": \"1997-07-21T21:46:25.548Z\",\n \"driverLicense\": [],\n \"employmentStatus\": false,\n \"houseOwner\": true,\n \"insurance\": false,\n \"lastModifiedBy\": \"dolore dolore magna sunt\",\n \"lastModifiedDate\": \"2010-07-30T09:58:12.067Z\",\n \"residenceType\": {\n \"createdBy\": \"dolor in\",\n \"createdDate\": \"1953-10-30T18:02:16.139Z\",\n \"id\": 69228116,\n \"name\": \"elit dolore sit pariatur nisi\"\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/PersonalGeneralInfoDTO\"}],\"definitions\":{\"PersonalGeneralInfoDTO\":{\"title\":\"PersonalGeneralInfoDTO\",\"description\":\"Personele ait genel tanımları tutar.( Hocaefendi, eğitim sorumlusu vb. )\",\"type\":\"object\",\"properties\":{\"childrenCount\":{\"format\":\"int32\",\"description\":\"Cocuk sayisi\",\"type\":\"integer\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"driverLicense\":{\"description\":\"Surucu belgeleri\",\"type\":\"array\",\"items\":{\"type\":\"string\"}},\"employmentStatus\":{\"description\":\"Vazife durumu\",\"type\":\"boolean\"},\"houseOwner\":{\"description\":\"Personelin ev sahipligi bilgisi\",\"type\":\"boolean\"},\"insurance\":{\"description\":\"Sigortalilik durumu\",\"type\":\"boolean\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"residenceType\":{\"$ref\":\"#/definitions/ResidenceTypeLOV\"}}},\"ResidenceTypeLOV\":{\"title\":\"ResidenceTypeLOV\",\"description\":\"Ikamet tür tanımlarını tutar. Örneğin; Kira, Kendi evi \",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Ikamet tür adı\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/PersonalGeneralInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"childrenCount\": -15672427,\n \"createdBy\": \"tempor dolore consectetu\",\n \"createdDate\": \"1984-06-25T21:27:53.523Z\",\n \"driverLicense\": [],\n \"employmentStatus\": false,\n \"houseOwner\": false,\n \"insurance\": true,\n \"lastModifiedBy\": \"pariatur amet ad cillum\",\n \"lastModifiedDate\": \"2000-01-24T20:37:31.023Z\",\n \"residenceType\": {\n \"createdBy\": \"do labore enim\",\n \"createdDate\": \"2011-09-28T01:01:39.245Z\",\n \"id\": 36652961,\n \"name\": \"et esse\"\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/PersonalGeneralInfoDTO\"}],\"definitions\":{\"PersonalGeneralInfoDTO\":{\"title\":\"PersonalGeneralInfoDTO\",\"description\":\"Personele ait genel tanımları tutar.( Hocaefendi, eğitim sorumlusu vb. )\",\"type\":\"object\",\"properties\":{\"childrenCount\":{\"format\":\"int32\",\"description\":\"Cocuk sayisi\",\"type\":\"integer\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"driverLicense\":{\"description\":\"Surucu belgeleri\",\"type\":\"array\",\"items\":{\"type\":\"string\"}},\"employmentStatus\":{\"description\":\"Vazife durumu\",\"type\":\"boolean\"},\"houseOwner\":{\"description\":\"Personelin ev sahipligi bilgisi\",\"type\":\"boolean\"},\"insurance\":{\"description\":\"Sigortalilik durumu\",\"type\":\"boolean\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"residenceType\":{\"$ref\":\"#/definitions/ResidenceTypeLOV\"}}},\"ResidenceTypeLOV\":{\"title\":\"ResidenceTypeLOV\",\"description\":\"Ikamet tür tanımlarını tutar. Örneğin; Kira, Kendi evi \",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Ikamet tür adı\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/PersonalGeneralInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"childrenCount\": -1638953,\n \"createdBy\": \"in\",\n \"createdDate\": \"1989-11-21T07:46:51.258Z\",\n \"driverLicense\": [],\n \"employmentStatus\": true,\n \"houseOwner\": true,\n \"insurance\": true,\n \"lastModifiedBy\": \"Duis ea\",\n \"lastModifiedDate\": \"1966-01-24T00:25:29.220Z\",\n \"residenceType\": {\n \"createdBy\": \"ut nostrud velit\",\n \"createdDate\": \"1965-12-26T00:48:16.218Z\",\n \"id\": 35149020,\n \"name\": \"mollit labore commodo in ex\"\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/PersonalGeneralInfoDTO\"}],\"definitions\":{\"PersonalGeneralInfoDTO\":{\"title\":\"PersonalGeneralInfoDTO\",\"description\":\"Personele ait genel tanımları tutar.( Hocaefendi, eğitim sorumlusu vb. )\",\"type\":\"object\",\"properties\":{\"childrenCount\":{\"format\":\"int32\",\"description\":\"Cocuk sayisi\",\"type\":\"integer\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"driverLicense\":{\"description\":\"Surucu belgeleri\",\"type\":\"array\",\"items\":{\"type\":\"string\"}},\"employmentStatus\":{\"description\":\"Vazife durumu\",\"type\":\"boolean\"},\"houseOwner\":{\"description\":\"Personelin ev sahipligi bilgisi\",\"type\":\"boolean\"},\"insurance\":{\"description\":\"Sigortalilik durumu\",\"type\":\"boolean\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"residenceType\":{\"$ref\":\"#/definitions/ResidenceTypeLOV\"}}},\"ResidenceTypeLOV\":{\"title\":\"ResidenceTypeLOV\",\"description\":\"Ikamet tür tanımlarını tutar. Örneğin; Kira, Kendi evi \",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Ikamet tür adı\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/PersonalGeneralInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz. " + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/teachers/{id}/health" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Personelin saglık bilgisini verir. Mevcut ve geçirdiği rahatsızlıkları barındırmaktadır." + }, + "id": { + "element": "string", + "content": "getTeacherHealthInfo" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Teacher ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Gets one `HealthInfo` of `Teacher`." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "`HealthInfo` entity of `Teacher`." + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/HealthInfoDTO\"}],\"definitions\":{\"HealthInfoDTO\":{\"title\":\"HealthInfoDTO\",\"description\":\"Kisiye ait saglik bilgilerini tutar.\",\"type\":\"object\",\"properties\":{\"bloodGroup\":{\"$ref\":\"#/definitions/BloodGroupLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"diseases\":{\"description\":\"Disease informations\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/HealthProblemDTO\"}},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"length\":{\"format\":\"int64\",\"description\":\"Body length of person\",\"type\":\"integer\"},\"lengthMeasurementUnit\":{\"$ref\":\"#/definitions/LengthMeasurementUnitLOV\"},\"weight\":{\"format\":\"double\",\"description\":\"Body weight of person\",\"type\":\"number\"},\"weightMeasurementUnit\":{\"$ref\":\"#/definitions/WeightMeasurementUnitLOV\"}}},\"WeightMeasurementUnitLOV\":{\"title\":\"WeightMeasurementUnitLOV\",\"description\":\"Ağırlık ölçü birimleridir. Ölçüm sistemi farketmez. Örneğin : kg, gr, ton, galon vb..\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Agirlik birim adi\",\"type\":\"string\"}}},\"LengthMeasurementUnitLOV\":{\"title\":\"LengthMeasurementUnitLOV\",\"description\":\"Uzunluk ölçü birimleridir. Ölçüm sistemi farketmez. Örneğin : cm, metre, desimetre, mil, km vb.. \",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Adi\",\"type\":\"string\"}}},\"HealthProblemDTO\":{\"title\":\"HealthProblemDTO\",\"description\":\"Kişilere ait sağlık problemlerinin tanımını tutar. Hastalık tipi örnek olarak : Geçirdiği rahatsızlıklar, devam eden rahatsızlıklar olabilir. Hastalık devamlılığı türüdür.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Geçirilen rahatsızlıkla ilgili açıklama ve notlar.\",\"type\":\"string\"},\"disease\":{\"$ref\":\"#/definitions/DiseaseLOV\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"type\":{\"$ref\":\"#/definitions/HealthProblemTypeLOV\"}}},\"HealthProblemTypeLOV\":{\"title\":\"HealthProblemTypeLOV\",\"description\":\"Hastalık türüdür. Örneğin; Geçirilmiş rahatsızlıklar, devam eden rahatsızlıklar vb.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Hastalık türü adı\",\"type\":\"string\"}}},\"DiseaseLOV\":{\"title\":\"DiseaseLOV\",\"description\":\"Hastalık bilgilerini tutar. Hastalıklar etiket olarak tanımlanabilir.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Hastaligin adi\",\"type\":\"string\"}}},\"BloodGroupLOV\":{\"title\":\"BloodGroupLOV\",\"description\":\"Kan grubu tanımıdır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Kan grubu adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/HealthInfoDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/teachers/{id}/health/general" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Personelin genel sağlık bilgilerini günceller" + }, + "id": { + "element": "string", + "content": "updateTeacherGeneralHealthInfo" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Personel ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Personelin genel saglik bilgilerinin guncellendigi metod. Ekleme metoduna gerek yoktur. eklerken de guncellerken de bu metod kullanilacaktir." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"bloodGroup\": {\n \"createdBy\": \"amet culpa aute est\",\n \"createdDate\": \"1968-08-25T18:23:44.736Z\",\n \"id\": -53729582,\n \"name\": \"sit de\"\n },\n \"createdBy\": \"deserunt esse Excepteur fugiat\",\n \"createdDate\": \"2016-08-02T05:58:32.650Z\",\n \"id\": 30410523,\n \"lastModifiedBy\": \"dolore\",\n \"lastModifiedDate\": \"2006-05-02T05:05:33.113Z\",\n \"length\": -54307808,\n \"lengthMeasurementUnit\": {\n \"createdBy\": \"eiusmod commodo\",\n \"createdDate\": \"2006-07-24T16:02:58.262Z\",\n \"id\": -77707904,\n \"name\": \"Ut eiusmod proident labore\"\n },\n \"weight\": -95682112.91027881,\n \"weightMeasurementUnit\": {\n \"createdBy\": \"ut sit exercitation officia\",\n \"createdDate\": \"2011-01-01T04:59:34.941Z\",\n \"id\": 16978411,\n \"name\": \"laborum\"\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/GeneralHealthInfoDTO\"}],\"definitions\":{\"GeneralHealthInfoDTO\":{\"title\":\"GeneralHealthInfoDTO\",\"description\":\"Kisiye ait bedeni saglik bilgilerini tutar. Boy kilo kan grubu gibi. Rahatsızlık bilgilerini barındırmaz.\",\"type\":\"object\",\"properties\":{\"bloodGroup\":{\"$ref\":\"#/definitions/BloodGroupLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"length\":{\"format\":\"int64\",\"description\":\"Body length of person\",\"type\":\"integer\"},\"lengthMeasurementUnit\":{\"$ref\":\"#/definitions/LengthMeasurementUnitLOV\"},\"weight\":{\"format\":\"double\",\"description\":\"Body weight of person\",\"type\":\"number\"},\"weightMeasurementUnit\":{\"$ref\":\"#/definitions/WeightMeasurementUnitLOV\"}}},\"WeightMeasurementUnitLOV\":{\"title\":\"WeightMeasurementUnitLOV\",\"description\":\"Ağırlık ölçü birimleridir. Ölçüm sistemi farketmez. Örneğin : kg, gr, ton, galon vb..\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Agirlik birim adi\",\"type\":\"string\"}}},\"LengthMeasurementUnitLOV\":{\"title\":\"LengthMeasurementUnitLOV\",\"description\":\"Uzunluk ölçü birimleridir. Ölçüm sistemi farketmez. Örneğin : cm, metre, desimetre, mil, km vb.. \",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Adi\",\"type\":\"string\"}}},\"BloodGroupLOV\":{\"title\":\"BloodGroupLOV\",\"description\":\"Kan grubu tanımıdır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Kan grubu adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/GeneralHealthInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/GeneralHealthInfoDTO\"}],\"definitions\":{\"GeneralHealthInfoDTO\":{\"title\":\"GeneralHealthInfoDTO\",\"description\":\"Kisiye ait bedeni saglik bilgilerini tutar. Boy kilo kan grubu gibi. Rahatsızlık bilgilerini barındırmaz.\",\"type\":\"object\",\"properties\":{\"bloodGroup\":{\"$ref\":\"#/definitions/BloodGroupLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"length\":{\"format\":\"int64\",\"description\":\"Body length of person\",\"type\":\"integer\"},\"lengthMeasurementUnit\":{\"$ref\":\"#/definitions/LengthMeasurementUnitLOV\"},\"weight\":{\"format\":\"double\",\"description\":\"Body weight of person\",\"type\":\"number\"},\"weightMeasurementUnit\":{\"$ref\":\"#/definitions/WeightMeasurementUnitLOV\"}}},\"WeightMeasurementUnitLOV\":{\"title\":\"WeightMeasurementUnitLOV\",\"description\":\"Ağırlık ölçü birimleridir. Ölçüm sistemi farketmez. Örneğin : kg, gr, ton, galon vb..\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Agirlik birim adi\",\"type\":\"string\"}}},\"LengthMeasurementUnitLOV\":{\"title\":\"LengthMeasurementUnitLOV\",\"description\":\"Uzunluk ölçü birimleridir. Ölçüm sistemi farketmez. Örneğin : cm, metre, desimetre, mil, km vb.. \",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Adi\",\"type\":\"string\"}}},\"BloodGroupLOV\":{\"title\":\"BloodGroupLOV\",\"description\":\"Kan grubu tanımıdır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Kan grubu adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/GeneralHealthInfoDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"bloodGroup\": {\n \"createdBy\": \"ex consequat anim in ad\",\n \"createdDate\": \"1943-04-26T09:54:52.570Z\",\n \"id\": 6442086,\n \"name\": \"id\"\n },\n \"createdBy\": \"cillum\",\n \"createdDate\": \"2013-07-19T00:12:31.909Z\",\n \"id\": -27148299,\n \"lastModifiedBy\": \"mollit Ut Lorem\",\n \"lastModifiedDate\": \"1940-10-30T13:55:56.439Z\",\n \"length\": 89885980,\n \"lengthMeasurementUnit\": {\n \"createdBy\": \"ex est\",\n \"createdDate\": \"1951-08-17T09:02:55.110Z\",\n \"id\": -54005332,\n \"name\": \"enim non ullamco dolor\"\n },\n \"weight\": -65210901.2577196,\n \"weightMeasurementUnit\": {\n \"createdBy\": \"eiusmod\",\n \"createdDate\": \"1947-02-20T14:11:44.679Z\",\n \"id\": 12009690,\n \"name\": \"ad velit sit laboris\"\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/GeneralHealthInfoDTO\"}],\"definitions\":{\"GeneralHealthInfoDTO\":{\"title\":\"GeneralHealthInfoDTO\",\"description\":\"Kisiye ait bedeni saglik bilgilerini tutar. Boy kilo kan grubu gibi. Rahatsızlık bilgilerini barındırmaz.\",\"type\":\"object\",\"properties\":{\"bloodGroup\":{\"$ref\":\"#/definitions/BloodGroupLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"length\":{\"format\":\"int64\",\"description\":\"Body length of person\",\"type\":\"integer\"},\"lengthMeasurementUnit\":{\"$ref\":\"#/definitions/LengthMeasurementUnitLOV\"},\"weight\":{\"format\":\"double\",\"description\":\"Body weight of person\",\"type\":\"number\"},\"weightMeasurementUnit\":{\"$ref\":\"#/definitions/WeightMeasurementUnitLOV\"}}},\"WeightMeasurementUnitLOV\":{\"title\":\"WeightMeasurementUnitLOV\",\"description\":\"Ağırlık ölçü birimleridir. Ölçüm sistemi farketmez. Örneğin : kg, gr, ton, galon vb..\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Agirlik birim adi\",\"type\":\"string\"}}},\"LengthMeasurementUnitLOV\":{\"title\":\"LengthMeasurementUnitLOV\",\"description\":\"Uzunluk ölçü birimleridir. Ölçüm sistemi farketmez. Örneğin : cm, metre, desimetre, mil, km vb.. \",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Adi\",\"type\":\"string\"}}},\"BloodGroupLOV\":{\"title\":\"BloodGroupLOV\",\"description\":\"Kan grubu tanımıdır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Kan grubu adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/GeneralHealthInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"bloodGroup\": {\n \"createdBy\": \"ipsum tempor\",\n \"createdDate\": \"1964-01-10T18:59:24.734Z\",\n \"id\": 57703228,\n \"name\": \"ut\"\n },\n \"createdBy\": \"ad\",\n \"createdDate\": \"1960-11-22T07:52:00.447Z\",\n \"id\": 16366921,\n \"lastModifiedBy\": \"proident laboris sit ipsum officia\",\n \"lastModifiedDate\": \"2010-07-04T01:59:12.564Z\",\n \"length\": -5736329,\n \"lengthMeasurementUnit\": {\n \"createdBy\": \"ea anim\",\n \"createdDate\": \"1990-09-08T23:34:12.526Z\",\n \"id\": 39193904,\n \"name\": \"enim ut in\"\n },\n \"weight\": 42701614.6471127,\n \"weightMeasurementUnit\": {\n \"createdBy\": \"eni\",\n \"createdDate\": \"1975-04-30T01:13:22.033Z\",\n \"id\": -75900952,\n \"name\": \"cupid\"\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/GeneralHealthInfoDTO\"}],\"definitions\":{\"GeneralHealthInfoDTO\":{\"title\":\"GeneralHealthInfoDTO\",\"description\":\"Kisiye ait bedeni saglik bilgilerini tutar. Boy kilo kan grubu gibi. Rahatsızlık bilgilerini barındırmaz.\",\"type\":\"object\",\"properties\":{\"bloodGroup\":{\"$ref\":\"#/definitions/BloodGroupLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"length\":{\"format\":\"int64\",\"description\":\"Body length of person\",\"type\":\"integer\"},\"lengthMeasurementUnit\":{\"$ref\":\"#/definitions/LengthMeasurementUnitLOV\"},\"weight\":{\"format\":\"double\",\"description\":\"Body weight of person\",\"type\":\"number\"},\"weightMeasurementUnit\":{\"$ref\":\"#/definitions/WeightMeasurementUnitLOV\"}}},\"WeightMeasurementUnitLOV\":{\"title\":\"WeightMeasurementUnitLOV\",\"description\":\"Ağırlık ölçü birimleridir. Ölçüm sistemi farketmez. Örneğin : kg, gr, ton, galon vb..\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Agirlik birim adi\",\"type\":\"string\"}}},\"LengthMeasurementUnitLOV\":{\"title\":\"LengthMeasurementUnitLOV\",\"description\":\"Uzunluk ölçü birimleridir. Ölçüm sistemi farketmez. Örneğin : cm, metre, desimetre, mil, km vb.. \",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Adi\",\"type\":\"string\"}}},\"BloodGroupLOV\":{\"title\":\"BloodGroupLOV\",\"description\":\"Kan grubu tanımıdır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Kan grubu adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/GeneralHealthInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "202" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/GeneralHealthInfoDTO\"}],\"definitions\":{\"GeneralHealthInfoDTO\":{\"title\":\"GeneralHealthInfoDTO\",\"description\":\"Kisiye ait bedeni saglik bilgilerini tutar. Boy kilo kan grubu gibi. Rahatsızlık bilgilerini barındırmaz.\",\"type\":\"object\",\"properties\":{\"bloodGroup\":{\"$ref\":\"#/definitions/BloodGroupLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"length\":{\"format\":\"int64\",\"description\":\"Body length of person\",\"type\":\"integer\"},\"lengthMeasurementUnit\":{\"$ref\":\"#/definitions/LengthMeasurementUnitLOV\"},\"weight\":{\"format\":\"double\",\"description\":\"Body weight of person\",\"type\":\"number\"},\"weightMeasurementUnit\":{\"$ref\":\"#/definitions/WeightMeasurementUnitLOV\"}}},\"WeightMeasurementUnitLOV\":{\"title\":\"WeightMeasurementUnitLOV\",\"description\":\"Ağırlık ölçü birimleridir. Ölçüm sistemi farketmez. Örneğin : kg, gr, ton, galon vb..\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Agirlik birim adi\",\"type\":\"string\"}}},\"LengthMeasurementUnitLOV\":{\"title\":\"LengthMeasurementUnitLOV\",\"description\":\"Uzunluk ölçü birimleridir. Ölçüm sistemi farketmez. Örneğin : cm, metre, desimetre, mil, km vb.. \",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Adi\",\"type\":\"string\"}}},\"BloodGroupLOV\":{\"title\":\"BloodGroupLOV\",\"description\":\"Kan grubu tanımıdır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Kan grubu adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/GeneralHealthInfoDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"bloodGroup\": {\n \"createdBy\": \"quis nisi sit aute occaecat\",\n \"createdDate\": \"1993-12-22T18:48:21.695Z\",\n \"id\": 62494413,\n \"name\": \"anim Excepteur nostrud Ut culpa\"\n },\n \"createdBy\": \"incididunt\",\n \"createdDate\": \"1982-04-14T08:34:39.209Z\",\n \"id\": 70981589,\n \"lastModifiedBy\": \"ad\",\n \"lastModifiedDate\": \"1945-10-05T12:50:25.465Z\",\n \"length\": -22505086,\n \"lengthMeasurementUnit\": {\n \"createdBy\": \"sint adipisicing\",\n \"createdDate\": \"1977-07-14T20:30:56.657Z\",\n \"id\": 71005321,\n \"name\": \"in laborum\"\n },\n \"weight\": -71453588.29140358,\n \"weightMeasurementUnit\": {\n \"createdBy\": \"culpa nulla nisi\",\n \"createdDate\": \"2009-01-15T05:49:30.808Z\",\n \"id\": -4421882,\n \"name\": \"deserunt pariatur\"\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/GeneralHealthInfoDTO\"}],\"definitions\":{\"GeneralHealthInfoDTO\":{\"title\":\"GeneralHealthInfoDTO\",\"description\":\"Kisiye ait bedeni saglik bilgilerini tutar. Boy kilo kan grubu gibi. Rahatsızlık bilgilerini barındırmaz.\",\"type\":\"object\",\"properties\":{\"bloodGroup\":{\"$ref\":\"#/definitions/BloodGroupLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"length\":{\"format\":\"int64\",\"description\":\"Body length of person\",\"type\":\"integer\"},\"lengthMeasurementUnit\":{\"$ref\":\"#/definitions/LengthMeasurementUnitLOV\"},\"weight\":{\"format\":\"double\",\"description\":\"Body weight of person\",\"type\":\"number\"},\"weightMeasurementUnit\":{\"$ref\":\"#/definitions/WeightMeasurementUnitLOV\"}}},\"WeightMeasurementUnitLOV\":{\"title\":\"WeightMeasurementUnitLOV\",\"description\":\"Ağırlık ölçü birimleridir. Ölçüm sistemi farketmez. Örneğin : kg, gr, ton, galon vb..\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Agirlik birim adi\",\"type\":\"string\"}}},\"LengthMeasurementUnitLOV\":{\"title\":\"LengthMeasurementUnitLOV\",\"description\":\"Uzunluk ölçü birimleridir. Ölçüm sistemi farketmez. Örneğin : cm, metre, desimetre, mil, km vb.. \",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Adi\",\"type\":\"string\"}}},\"BloodGroupLOV\":{\"title\":\"BloodGroupLOV\",\"description\":\"Kan grubu tanımıdır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Kan grubu adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/GeneralHealthInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"bloodGroup\": {\n \"createdBy\": \"irure eu nostrud\",\n \"createdDate\": \"1978-04-29T10:27:21.991Z\",\n \"id\": 76527728,\n \"name\": \"labore\"\n },\n \"createdBy\": \"adipisic\",\n \"createdDate\": \"1962-05-10T08:06:23.673Z\",\n \"id\": -28965586,\n \"lastModifiedBy\": \"do amet Ut mollit sed\",\n \"lastModifiedDate\": \"1997-01-06T02:04:43.023Z\",\n \"length\": -93330551,\n \"lengthMeasurementUnit\": {\n \"createdBy\": \"occaecat nostrud do Lorem officia\",\n \"createdDate\": \"1962-08-24T05:18:20.951Z\",\n \"id\": -16907252,\n \"name\": \"labore consequat voluptate esse\"\n },\n \"weight\": 1353843.4894504845,\n \"weightMeasurementUnit\": {\n \"createdBy\": \"esse consectetur mollit enim\",\n \"createdDate\": \"2003-01-27T21:50:27.812Z\",\n \"id\": -14026710,\n \"name\": \"in sint dolore labore officia\"\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/GeneralHealthInfoDTO\"}],\"definitions\":{\"GeneralHealthInfoDTO\":{\"title\":\"GeneralHealthInfoDTO\",\"description\":\"Kisiye ait bedeni saglik bilgilerini tutar. Boy kilo kan grubu gibi. Rahatsızlık bilgilerini barındırmaz.\",\"type\":\"object\",\"properties\":{\"bloodGroup\":{\"$ref\":\"#/definitions/BloodGroupLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"length\":{\"format\":\"int64\",\"description\":\"Body length of person\",\"type\":\"integer\"},\"lengthMeasurementUnit\":{\"$ref\":\"#/definitions/LengthMeasurementUnitLOV\"},\"weight\":{\"format\":\"double\",\"description\":\"Body weight of person\",\"type\":\"number\"},\"weightMeasurementUnit\":{\"$ref\":\"#/definitions/WeightMeasurementUnitLOV\"}}},\"WeightMeasurementUnitLOV\":{\"title\":\"WeightMeasurementUnitLOV\",\"description\":\"Ağırlık ölçü birimleridir. Ölçüm sistemi farketmez. Örneğin : kg, gr, ton, galon vb..\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Agirlik birim adi\",\"type\":\"string\"}}},\"LengthMeasurementUnitLOV\":{\"title\":\"LengthMeasurementUnitLOV\",\"description\":\"Uzunluk ölçü birimleridir. Ölçüm sistemi farketmez. Örneğin : cm, metre, desimetre, mil, km vb.. \",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Adi\",\"type\":\"string\"}}},\"BloodGroupLOV\":{\"title\":\"BloodGroupLOV\",\"description\":\"Kan grubu tanımıdır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Kan grubu adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/GeneralHealthInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"bloodGroup\": {\n \"createdBy\": \"deserunt sit aliqua nostrud\",\n \"createdDate\": \"1959-09-20T16:00:40.706Z\",\n \"id\": -77788390,\n \"name\": \"labore elit commodo magna\"\n },\n \"createdBy\": \"commodo\",\n \"createdDate\": \"2011-07-11T08:22:08.266Z\",\n \"id\": 67580701,\n \"lastModifiedBy\": \"fugiat\",\n \"lastModifiedDate\": \"1961-05-22T20:46:32.012Z\",\n \"length\": -81776623,\n \"lengthMeasurementUnit\": {\n \"createdBy\": \"commodo eu\",\n \"createdDate\": \"1951-02-21T13:13:28.209Z\",\n \"id\": 501918,\n \"name\": \"enim adipisicing et nisi pariatur\"\n },\n \"weight\": -95188127.8709223,\n \"weightMeasurementUnit\": {\n \"createdBy\": \"enim sint aliqua\",\n \"createdDate\": \"1972-01-31T07:28:12.501Z\",\n \"id\": 18005645,\n \"name\": \"exercitation\"\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/GeneralHealthInfoDTO\"}],\"definitions\":{\"GeneralHealthInfoDTO\":{\"title\":\"GeneralHealthInfoDTO\",\"description\":\"Kisiye ait bedeni saglik bilgilerini tutar. Boy kilo kan grubu gibi. Rahatsızlık bilgilerini barındırmaz.\",\"type\":\"object\",\"properties\":{\"bloodGroup\":{\"$ref\":\"#/definitions/BloodGroupLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"length\":{\"format\":\"int64\",\"description\":\"Body length of person\",\"type\":\"integer\"},\"lengthMeasurementUnit\":{\"$ref\":\"#/definitions/LengthMeasurementUnitLOV\"},\"weight\":{\"format\":\"double\",\"description\":\"Body weight of person\",\"type\":\"number\"},\"weightMeasurementUnit\":{\"$ref\":\"#/definitions/WeightMeasurementUnitLOV\"}}},\"WeightMeasurementUnitLOV\":{\"title\":\"WeightMeasurementUnitLOV\",\"description\":\"Ağırlık ölçü birimleridir. Ölçüm sistemi farketmez. Örneğin : kg, gr, ton, galon vb..\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Agirlik birim adi\",\"type\":\"string\"}}},\"LengthMeasurementUnitLOV\":{\"title\":\"LengthMeasurementUnitLOV\",\"description\":\"Uzunluk ölçü birimleridir. Ölçüm sistemi farketmez. Örneğin : cm, metre, desimetre, mil, km vb.. \",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Adi\",\"type\":\"string\"}}},\"BloodGroupLOV\":{\"title\":\"BloodGroupLOV\",\"description\":\"Kan grubu tanımıdır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Kan grubu adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/GeneralHealthInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"bloodGroup\": {\n \"createdBy\": \"esse\",\n \"createdDate\": \"1972-06-19T10:13:40.711Z\",\n \"id\": 41746868,\n \"name\": \"irure vo\"\n },\n \"createdBy\": \"eiusmod ad\",\n \"createdDate\": \"1950-07-20T12:20:25.853Z\",\n \"id\": -30083679,\n \"lastModifiedBy\": \"nostrud labore Duis nisi ea\",\n \"lastModifiedDate\": \"1970-07-07T21:46:31.076Z\",\n \"length\": 5141309,\n \"lengthMeasurementUnit\": {\n \"createdBy\": \"minim Excepteur occaecat ea nostrud\",\n \"createdDate\": \"2014-10-05T13:01:46.972Z\",\n \"id\": 25558198,\n \"name\": \"quis\"\n },\n \"weight\": 18589275.333918303,\n \"weightMeasurementUnit\": {\n \"createdBy\": \"culpa est sint pariatur\",\n \"createdDate\": \"1953-03-23T06:44:56.174Z\",\n \"id\": 34678064,\n \"name\": \"deserunt nulla aliquip\"\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/GeneralHealthInfoDTO\"}],\"definitions\":{\"GeneralHealthInfoDTO\":{\"title\":\"GeneralHealthInfoDTO\",\"description\":\"Kisiye ait bedeni saglik bilgilerini tutar. Boy kilo kan grubu gibi. Rahatsızlık bilgilerini barındırmaz.\",\"type\":\"object\",\"properties\":{\"bloodGroup\":{\"$ref\":\"#/definitions/BloodGroupLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"length\":{\"format\":\"int64\",\"description\":\"Body length of person\",\"type\":\"integer\"},\"lengthMeasurementUnit\":{\"$ref\":\"#/definitions/LengthMeasurementUnitLOV\"},\"weight\":{\"format\":\"double\",\"description\":\"Body weight of person\",\"type\":\"number\"},\"weightMeasurementUnit\":{\"$ref\":\"#/definitions/WeightMeasurementUnitLOV\"}}},\"WeightMeasurementUnitLOV\":{\"title\":\"WeightMeasurementUnitLOV\",\"description\":\"Ağırlık ölçü birimleridir. Ölçüm sistemi farketmez. Örneğin : kg, gr, ton, galon vb..\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Agirlik birim adi\",\"type\":\"string\"}}},\"LengthMeasurementUnitLOV\":{\"title\":\"LengthMeasurementUnitLOV\",\"description\":\"Uzunluk ölçü birimleridir. Ölçüm sistemi farketmez. Örneğin : cm, metre, desimetre, mil, km vb.. \",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Adi\",\"type\":\"string\"}}},\"BloodGroupLOV\":{\"title\":\"BloodGroupLOV\",\"description\":\"Kan grubu tanımıdır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Kan grubu adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/GeneralHealthInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"bloodGroup\": {\n \"createdBy\": \"consectetur veniam pariatur exercitatio\",\n \"createdDate\": \"1959-01-11T08:50:40.478Z\",\n \"id\": -27310334,\n \"name\": \"in qui officia\"\n },\n \"createdBy\": \"dolore in consequat dolor voluptate\",\n \"createdDate\": \"1997-05-30T10:33:00.504Z\",\n \"id\": 73579773,\n \"lastModifiedBy\": \"sit ut irure ea laborum\",\n \"lastModifiedDate\": \"1978-04-18T01:58:49.521Z\",\n \"length\": -85727905,\n \"lengthMeasurementUnit\": {\n \"createdBy\": \"nostrud proident in\",\n \"createdDate\": \"1964-01-19T10:17:42.604Z\",\n \"id\": 35700211,\n \"name\": \"eu magna incididunt\"\n },\n \"weight\": -80260858.3058744,\n \"weightMeasurementUnit\": {\n \"createdBy\": \"sit el\",\n \"createdDate\": \"1981-11-18T17:17:36.376Z\",\n \"id\": 86911646,\n \"name\": \"voluptate dolor\"\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/GeneralHealthInfoDTO\"}],\"definitions\":{\"GeneralHealthInfoDTO\":{\"title\":\"GeneralHealthInfoDTO\",\"description\":\"Kisiye ait bedeni saglik bilgilerini tutar. Boy kilo kan grubu gibi. Rahatsızlık bilgilerini barındırmaz.\",\"type\":\"object\",\"properties\":{\"bloodGroup\":{\"$ref\":\"#/definitions/BloodGroupLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"length\":{\"format\":\"int64\",\"description\":\"Body length of person\",\"type\":\"integer\"},\"lengthMeasurementUnit\":{\"$ref\":\"#/definitions/LengthMeasurementUnitLOV\"},\"weight\":{\"format\":\"double\",\"description\":\"Body weight of person\",\"type\":\"number\"},\"weightMeasurementUnit\":{\"$ref\":\"#/definitions/WeightMeasurementUnitLOV\"}}},\"WeightMeasurementUnitLOV\":{\"title\":\"WeightMeasurementUnitLOV\",\"description\":\"Ağırlık ölçü birimleridir. Ölçüm sistemi farketmez. Örneğin : kg, gr, ton, galon vb..\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Agirlik birim adi\",\"type\":\"string\"}}},\"LengthMeasurementUnitLOV\":{\"title\":\"LengthMeasurementUnitLOV\",\"description\":\"Uzunluk ölçü birimleridir. Ölçüm sistemi farketmez. Örneğin : cm, metre, desimetre, mil, km vb.. \",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Adi\",\"type\":\"string\"}}},\"BloodGroupLOV\":{\"title\":\"BloodGroupLOV\",\"description\":\"Kan grubu tanımıdır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Kan grubu adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/GeneralHealthInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz." + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/teachers/{id}/health/problem" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Personelin geçirdiği rahatsızlık veya devam eden rahatsızlık bilgisi ekler" + }, + "id": { + "element": "string", + "content": "createTeacherHealthProblem" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Personel ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Personelin geçirdiği rahatsızlık veya devam eden rahatsızlık bilgisi ekler. Geçirilen hastalığın isim bilgisi sistemde yoksa o an sisteme yeni bir kayıt olarak kaydedilir." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"velit in amet\",\n \"createdDate\": \"1982-08-27T05:52:05.320Z\",\n \"description\": \"id aliquip fugiat irure\",\n \"disease\": {\n \"id\": -17399318,\n \"name\": \"commodo exercitation occaecat sed velit\"\n },\n \"id\": 83086383,\n \"lastModifiedBy\": \"fugiat\",\n \"lastModifiedDate\": \"1988-04-26T02:41:17.844Z\",\n \"type\": {\n \"createdBy\": \"adipisicing\",\n \"createdDate\": \"1953-04-14T03:22:04.067Z\",\n \"id\": 52308163,\n \"name\": \"magna non consequat\"\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/HealthProblemDTO\"}],\"definitions\":{\"HealthProblemDTO\":{\"title\":\"HealthProblemDTO\",\"description\":\"Kişilere ait sağlık problemlerinin tanımını tutar. Hastalık tipi örnek olarak : Geçirdiği rahatsızlıklar, devam eden rahatsızlıklar olabilir. Hastalık devamlılığı türüdür.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Geçirilen rahatsızlıkla ilgili açıklama ve notlar.\",\"type\":\"string\"},\"disease\":{\"$ref\":\"#/definitions/DiseaseLOV\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"type\":{\"$ref\":\"#/definitions/HealthProblemTypeLOV\"}}},\"HealthProblemTypeLOV\":{\"title\":\"HealthProblemTypeLOV\",\"description\":\"Hastalık türüdür. Örneğin; Geçirilmiş rahatsızlıklar, devam eden rahatsızlıklar vb.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Hastalık türü adı\",\"type\":\"string\"}}},\"DiseaseLOV\":{\"title\":\"DiseaseLOV\",\"description\":\"Hastalık bilgilerini tutar. Hastalıklar etiket olarak tanımlanabilir.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Hastaligin adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/HealthProblemDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/HealthInfoDTO\"}],\"definitions\":{\"HealthInfoDTO\":{\"title\":\"HealthInfoDTO\",\"description\":\"Kisiye ait saglik bilgilerini tutar.\",\"type\":\"object\",\"properties\":{\"bloodGroup\":{\"$ref\":\"#/definitions/BloodGroupLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"diseases\":{\"description\":\"Disease informations\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/HealthProblemDTO\"}},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"length\":{\"format\":\"int64\",\"description\":\"Body length of person\",\"type\":\"integer\"},\"lengthMeasurementUnit\":{\"$ref\":\"#/definitions/LengthMeasurementUnitLOV\"},\"weight\":{\"format\":\"double\",\"description\":\"Body weight of person\",\"type\":\"number\"},\"weightMeasurementUnit\":{\"$ref\":\"#/definitions/WeightMeasurementUnitLOV\"}}},\"WeightMeasurementUnitLOV\":{\"title\":\"WeightMeasurementUnitLOV\",\"description\":\"Ağırlık ölçü birimleridir. Ölçüm sistemi farketmez. Örneğin : kg, gr, ton, galon vb..\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Agirlik birim adi\",\"type\":\"string\"}}},\"LengthMeasurementUnitLOV\":{\"title\":\"LengthMeasurementUnitLOV\",\"description\":\"Uzunluk ölçü birimleridir. Ölçüm sistemi farketmez. Örneğin : cm, metre, desimetre, mil, km vb.. \",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Adi\",\"type\":\"string\"}}},\"HealthProblemDTO\":{\"title\":\"HealthProblemDTO\",\"description\":\"Kişilere ait sağlık problemlerinin tanımını tutar. Hastalık tipi örnek olarak : Geçirdiği rahatsızlıklar, devam eden rahatsızlıklar olabilir. Hastalık devamlılığı türüdür.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Geçirilen rahatsızlıkla ilgili açıklama ve notlar.\",\"type\":\"string\"},\"disease\":{\"$ref\":\"#/definitions/DiseaseLOV\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"type\":{\"$ref\":\"#/definitions/HealthProblemTypeLOV\"}}},\"HealthProblemTypeLOV\":{\"title\":\"HealthProblemTypeLOV\",\"description\":\"Hastalık türüdür. Örneğin; Geçirilmiş rahatsızlıklar, devam eden rahatsızlıklar vb.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Hastalık türü adı\",\"type\":\"string\"}}},\"DiseaseLOV\":{\"title\":\"DiseaseLOV\",\"description\":\"Hastalık bilgilerini tutar. Hastalıklar etiket olarak tanımlanabilir.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Hastaligin adi\",\"type\":\"string\"}}},\"BloodGroupLOV\":{\"title\":\"BloodGroupLOV\",\"description\":\"Kan grubu tanımıdır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Kan grubu adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/HealthInfoDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"dolor nulla adipisicing\",\n \"createdDate\": \"1958-03-26T01:15:24.122Z\",\n \"description\": \"reprehenderit dolor\",\n \"disease\": {\n \"id\": 76034273,\n \"name\": \"incididunt Ut magna nisi\"\n },\n \"id\": -41000263,\n \"lastModifiedBy\": \"officia ea Excepteur incididunt sit\",\n \"lastModifiedDate\": \"1997-01-15T18:54:04.658Z\",\n \"type\": {\n \"createdBy\": \"aliquip ea\",\n \"createdDate\": \"2015-01-17T23:28:12.302Z\",\n \"id\": -77484283,\n \"name\": \"enim proident dolore deserunt cupidatat\"\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/HealthProblemDTO\"}],\"definitions\":{\"HealthProblemDTO\":{\"title\":\"HealthProblemDTO\",\"description\":\"Kişilere ait sağlık problemlerinin tanımını tutar. Hastalık tipi örnek olarak : Geçirdiği rahatsızlıklar, devam eden rahatsızlıklar olabilir. Hastalık devamlılığı türüdür.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Geçirilen rahatsızlıkla ilgili açıklama ve notlar.\",\"type\":\"string\"},\"disease\":{\"$ref\":\"#/definitions/DiseaseLOV\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"type\":{\"$ref\":\"#/definitions/HealthProblemTypeLOV\"}}},\"HealthProblemTypeLOV\":{\"title\":\"HealthProblemTypeLOV\",\"description\":\"Hastalık türüdür. Örneğin; Geçirilmiş rahatsızlıklar, devam eden rahatsızlıklar vb.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Hastalık türü adı\",\"type\":\"string\"}}},\"DiseaseLOV\":{\"title\":\"DiseaseLOV\",\"description\":\"Hastalık bilgilerini tutar. Hastalıklar etiket olarak tanımlanabilir.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Hastaligin adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/HealthProblemDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/HealthInfoDTO\"}],\"definitions\":{\"HealthInfoDTO\":{\"title\":\"HealthInfoDTO\",\"description\":\"Kisiye ait saglik bilgilerini tutar.\",\"type\":\"object\",\"properties\":{\"bloodGroup\":{\"$ref\":\"#/definitions/BloodGroupLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"diseases\":{\"description\":\"Disease informations\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/HealthProblemDTO\"}},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"length\":{\"format\":\"int64\",\"description\":\"Body length of person\",\"type\":\"integer\"},\"lengthMeasurementUnit\":{\"$ref\":\"#/definitions/LengthMeasurementUnitLOV\"},\"weight\":{\"format\":\"double\",\"description\":\"Body weight of person\",\"type\":\"number\"},\"weightMeasurementUnit\":{\"$ref\":\"#/definitions/WeightMeasurementUnitLOV\"}}},\"WeightMeasurementUnitLOV\":{\"title\":\"WeightMeasurementUnitLOV\",\"description\":\"Ağırlık ölçü birimleridir. Ölçüm sistemi farketmez. Örneğin : kg, gr, ton, galon vb..\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Agirlik birim adi\",\"type\":\"string\"}}},\"LengthMeasurementUnitLOV\":{\"title\":\"LengthMeasurementUnitLOV\",\"description\":\"Uzunluk ölçü birimleridir. Ölçüm sistemi farketmez. Örneğin : cm, metre, desimetre, mil, km vb.. \",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Adi\",\"type\":\"string\"}}},\"HealthProblemDTO\":{\"title\":\"HealthProblemDTO\",\"description\":\"Kişilere ait sağlık problemlerinin tanımını tutar. Hastalık tipi örnek olarak : Geçirdiği rahatsızlıklar, devam eden rahatsızlıklar olabilir. Hastalık devamlılığı türüdür.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Geçirilen rahatsızlıkla ilgili açıklama ve notlar.\",\"type\":\"string\"},\"disease\":{\"$ref\":\"#/definitions/DiseaseLOV\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"type\":{\"$ref\":\"#/definitions/HealthProblemTypeLOV\"}}},\"HealthProblemTypeLOV\":{\"title\":\"HealthProblemTypeLOV\",\"description\":\"Hastalık türüdür. Örneğin; Geçirilmiş rahatsızlıklar, devam eden rahatsızlıklar vb.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Hastalık türü adı\",\"type\":\"string\"}}},\"DiseaseLOV\":{\"title\":\"DiseaseLOV\",\"description\":\"Hastalık bilgilerini tutar. Hastalıklar etiket olarak tanımlanabilir.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Hastaligin adi\",\"type\":\"string\"}}},\"BloodGroupLOV\":{\"title\":\"BloodGroupLOV\",\"description\":\"Kan grubu tanımıdır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Kan grubu adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/HealthInfoDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"velit ut\",\n \"createdDate\": \"1943-04-28T02:57:09.837Z\",\n \"description\": \"magna do\",\n \"disease\": {\n \"id\": -95489442,\n \"name\": \"tempor velit adipisic\"\n },\n \"id\": 15270993,\n \"lastModifiedBy\": \"ut eiusmod nis\",\n \"lastModifiedDate\": \"1969-04-04T20:41:10.207Z\",\n \"type\": {\n \"createdBy\": \"qui\",\n \"createdDate\": \"1962-05-20T02:34:34.521Z\",\n \"id\": -34005863,\n \"name\": \"id ea exercitation\"\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/HealthProblemDTO\"}],\"definitions\":{\"HealthProblemDTO\":{\"title\":\"HealthProblemDTO\",\"description\":\"Kişilere ait sağlık problemlerinin tanımını tutar. Hastalık tipi örnek olarak : Geçirdiği rahatsızlıklar, devam eden rahatsızlıklar olabilir. Hastalık devamlılığı türüdür.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Geçirilen rahatsızlıkla ilgili açıklama ve notlar.\",\"type\":\"string\"},\"disease\":{\"$ref\":\"#/definitions/DiseaseLOV\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"type\":{\"$ref\":\"#/definitions/HealthProblemTypeLOV\"}}},\"HealthProblemTypeLOV\":{\"title\":\"HealthProblemTypeLOV\",\"description\":\"Hastalık türüdür. Örneğin; Geçirilmiş rahatsızlıklar, devam eden rahatsızlıklar vb.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Hastalık türü adı\",\"type\":\"string\"}}},\"DiseaseLOV\":{\"title\":\"DiseaseLOV\",\"description\":\"Hastalık bilgilerini tutar. Hastalıklar etiket olarak tanımlanabilir.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Hastaligin adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/HealthProblemDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz giriş." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"in qui sit dolore\",\n \"createdDate\": \"1964-07-05T00:51:24.269Z\",\n \"description\": \"ex officia Lorem quis\",\n \"disease\": {\n \"id\": -68499729,\n \"name\": \"ipsum consectetur culpa est occaecat\"\n },\n \"id\": -41528493,\n \"lastModifiedBy\": \"aliqua Duis\",\n \"lastModifiedDate\": \"2017-07-29T05:00:25.070Z\",\n \"type\": {\n \"createdBy\": \"laborum proident eu officia\",\n \"createdDate\": \"1952-05-08T08:59:51.663Z\",\n \"id\": -95796428,\n \"name\": \"esse quis\"\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/HealthProblemDTO\"}],\"definitions\":{\"HealthProblemDTO\":{\"title\":\"HealthProblemDTO\",\"description\":\"Kişilere ait sağlık problemlerinin tanımını tutar. Hastalık tipi örnek olarak : Geçirdiği rahatsızlıklar, devam eden rahatsızlıklar olabilir. Hastalık devamlılığı türüdür.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Geçirilen rahatsızlıkla ilgili açıklama ve notlar.\",\"type\":\"string\"},\"disease\":{\"$ref\":\"#/definitions/DiseaseLOV\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"type\":{\"$ref\":\"#/definitions/HealthProblemTypeLOV\"}}},\"HealthProblemTypeLOV\":{\"title\":\"HealthProblemTypeLOV\",\"description\":\"Hastalık türüdür. Örneğin; Geçirilmiş rahatsızlıklar, devam eden rahatsızlıklar vb.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Hastalık türü adı\",\"type\":\"string\"}}},\"DiseaseLOV\":{\"title\":\"DiseaseLOV\",\"description\":\"Hastalık bilgilerini tutar. Hastalıklar etiket olarak tanımlanabilir.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Hastaligin adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/HealthProblemDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"nulla velit irure Excepteur nostrud\",\n \"createdDate\": \"1944-01-06T16:55:07.760Z\",\n \"description\": \"Excepteur ad\",\n \"disease\": {\n \"id\": -82759303,\n \"name\": \"dolor ullamco officia tempor dolor\"\n },\n \"id\": -5908665,\n \"lastModifiedBy\": \"reprehenderit ea qui\",\n \"lastModifiedDate\": \"1996-08-27T23:31:37.729Z\",\n \"type\": {\n \"createdBy\": \"incididunt fugiat nisi velit culpa\",\n \"createdDate\": \"1964-11-07T23:40:09.962Z\",\n \"id\": -11316839,\n \"name\": \"fugiat dolore mollit\"\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/HealthProblemDTO\"}],\"definitions\":{\"HealthProblemDTO\":{\"title\":\"HealthProblemDTO\",\"description\":\"Kişilere ait sağlık problemlerinin tanımını tutar. Hastalık tipi örnek olarak : Geçirdiği rahatsızlıklar, devam eden rahatsızlıklar olabilir. Hastalık devamlılığı türüdür.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Geçirilen rahatsızlıkla ilgili açıklama ve notlar.\",\"type\":\"string\"},\"disease\":{\"$ref\":\"#/definitions/DiseaseLOV\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"type\":{\"$ref\":\"#/definitions/HealthProblemTypeLOV\"}}},\"HealthProblemTypeLOV\":{\"title\":\"HealthProblemTypeLOV\",\"description\":\"Hastalık türüdür. Örneğin; Geçirilmiş rahatsızlıklar, devam eden rahatsızlıklar vb.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Hastalık türü adı\",\"type\":\"string\"}}},\"DiseaseLOV\":{\"title\":\"DiseaseLOV\",\"description\":\"Hastalık bilgilerini tutar. Hastalıklar etiket olarak tanımlanabilir.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Hastaligin adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/HealthProblemDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"consectetur nostrud occaecat commodo cupidatat\",\n \"createdDate\": \"1973-05-03T21:14:36.936Z\",\n \"description\": \"ea elit\",\n \"disease\": {\n \"id\": -22730880,\n \"name\": \"velit eiusmod\"\n },\n \"id\": -50535058,\n \"lastModifiedBy\": \"esse est sint\",\n \"lastModifiedDate\": \"1990-08-10T17:56:16.752Z\",\n \"type\": {\n \"createdBy\": \"non occaecat nisi\",\n \"createdDate\": \"2003-02-19T12:38:33.531Z\",\n \"id\": -87317278,\n \"name\": \"\"\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/HealthProblemDTO\"}],\"definitions\":{\"HealthProblemDTO\":{\"title\":\"HealthProblemDTO\",\"description\":\"Kişilere ait sağlık problemlerinin tanımını tutar. Hastalık tipi örnek olarak : Geçirdiği rahatsızlıklar, devam eden rahatsızlıklar olabilir. Hastalık devamlılığı türüdür.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Geçirilen rahatsızlıkla ilgili açıklama ve notlar.\",\"type\":\"string\"},\"disease\":{\"$ref\":\"#/definitions/DiseaseLOV\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"type\":{\"$ref\":\"#/definitions/HealthProblemTypeLOV\"}}},\"HealthProblemTypeLOV\":{\"title\":\"HealthProblemTypeLOV\",\"description\":\"Hastalık türüdür. Örneğin; Geçirilmiş rahatsızlıklar, devam eden rahatsızlıklar vb.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Hastalık türü adı\",\"type\":\"string\"}}},\"DiseaseLOV\":{\"title\":\"DiseaseLOV\",\"description\":\"Hastalık bilgilerini tutar. Hastalıklar etiket olarak tanımlanabilir.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Hastaligin adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/HealthProblemDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Business exception" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"Ut deserunt sint pariatur culpa\",\n \"createdDate\": \"2002-09-08T06:56:51.834Z\",\n \"description\": \"sit culpa id mollit\",\n \"disease\": {\n \"id\": -4776278,\n \"name\": \"cupidatat dolore\"\n },\n \"id\": 90656823,\n \"lastModifiedBy\": \"Excepteur non ad ut\",\n \"lastModifiedDate\": \"2015-04-20T00:12:16.089Z\",\n \"type\": {\n \"createdBy\": \"Lorem et Ut d\",\n \"createdDate\": \"1946-10-31T09:09:57.790Z\",\n \"id\": -73452175,\n \"name\": \"cupidatat sunt nulla mollit aliquip\"\n }\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/HealthProblemDTO\"}],\"definitions\":{\"HealthProblemDTO\":{\"title\":\"HealthProblemDTO\",\"description\":\"Kişilere ait sağlık problemlerinin tanımını tutar. Hastalık tipi örnek olarak : Geçirdiği rahatsızlıklar, devam eden rahatsızlıklar olabilir. Hastalık devamlılığı türüdür.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Geçirilen rahatsızlıkla ilgili açıklama ve notlar.\",\"type\":\"string\"},\"disease\":{\"$ref\":\"#/definitions/DiseaseLOV\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"type\":{\"$ref\":\"#/definitions/HealthProblemTypeLOV\"}}},\"HealthProblemTypeLOV\":{\"title\":\"HealthProblemTypeLOV\",\"description\":\"Hastalık türüdür. Örneğin; Geçirilmiş rahatsızlıklar, devam eden rahatsızlıklar vb.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Hastalık türü adı\",\"type\":\"string\"}}},\"DiseaseLOV\":{\"title\":\"DiseaseLOV\",\"description\":\"Hastalık bilgilerini tutar. Hastalıklar etiket olarak tanımlanabilir.\",\"type\":\"object\",\"properties\":{\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Hastaligin adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/HealthProblemDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "Sunucu hatası" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/teachers/{id}/health/problem/{healthProblemId}" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Personele ait belirtilen rahatsızlık bilgisini siler" + }, + "id": { + "element": "string", + "content": "deleteTeacherHealthProblem" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Unique Health Problem Indentifier" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "healthProblemId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Personel ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Personele ait belirtilen rahatsızlık bilgisini siler" + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "204" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz. " + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/teachers/{id}/identification-info" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Personelin genel kimlik bilgisini günceller" + }, + "id": { + "element": "string", + "content": "updateTeacherIdentificationInfo" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Personel ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Personelin genel kimlik bilgisinin güncellendiği servistir. `IdentificationInfoDTO` objesi kullanılarak güncelleme yapılır." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"birthDate\": \"2000-02-12T02:12:33.629Z\",\n \"birthPlaceName\": \"dolor nostrud ad ipsum ea\",\n \"citizenNumber\": \"do minim laborum consequat\",\n \"citizenshipId\": {\n \"createdBy\": \"aliquip culpa veniam consectetur Exce\",\n \"createdDate\": \"1977-12-16T04:58:14.182Z\",\n \"id\": -2423329,\n \"name\": \"occaecat\"\n },\n \"createdBy\": \"veniam sint aute dolor\",\n \"createdDate\": \"2004-11-18T09:58:39.523Z\",\n \"firstName\": \"ex aliqua\",\n \"gender\": {\n \"createdBy\": \"sint pariatur\",\n \"createdDate\": \"2012-07-26T10:07:15.472Z\",\n \"id\": -99104159,\n \"name\": \"sit aliquip nostrud amet\"\n },\n \"lastModifiedBy\": \"dolor officia consectetur quis\",\n \"lastModifiedDate\": \"1978-07-05T20:11:23.409Z\",\n \"lastName\": \"quis\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/IdentificationInfoDTO\"}],\"definitions\":{\"IdentificationInfoDTO\":{\"title\":\"IdentificationInfoDTO\",\"description\":\"Kisiye ait kimlik bilgilerini tutar.\",\"type\":\"object\",\"properties\":{\"birthDate\":{\"format\":\"date-time\",\"description\":\"Dogum Tarihi\",\"type\":\"string\"},\"birthPlaceName\":{\"description\":\"Dogum Yeri adi\",\"type\":\"string\"},\"citizenNumber\":{\"description\":\"Vatandaslik numarasi\",\"type\":\"string\"},\"citizenshipId\":{\"$ref\":\"#/definitions/CitizenshipLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adi\",\"type\":\"string\"},\"gender\":{\"$ref\":\"#/definitions/GenderLOV\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadi\",\"type\":\"string\"}}},\"GenderLOV\":{\"title\":\"GenderLOV\",\"description\":\"Cinsiyet tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Cinsiyet adi\",\"type\":\"string\"}}},\"CitizenshipLOV\":{\"title\":\"CitizenshipLOV\",\"description\":\"Vatandaşlık bilgilerini taşır\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Vatan adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/IdentificationInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/IdentificationInfoDTO\"}],\"definitions\":{\"IdentificationInfoDTO\":{\"title\":\"IdentificationInfoDTO\",\"description\":\"Kisiye ait kimlik bilgilerini tutar.\",\"type\":\"object\",\"properties\":{\"birthDate\":{\"format\":\"date-time\",\"description\":\"Dogum Tarihi\",\"type\":\"string\"},\"birthPlaceName\":{\"description\":\"Dogum Yeri adi\",\"type\":\"string\"},\"citizenNumber\":{\"description\":\"Vatandaslik numarasi\",\"type\":\"string\"},\"citizenshipId\":{\"$ref\":\"#/definitions/CitizenshipLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adi\",\"type\":\"string\"},\"gender\":{\"$ref\":\"#/definitions/GenderLOV\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadi\",\"type\":\"string\"}}},\"GenderLOV\":{\"title\":\"GenderLOV\",\"description\":\"Cinsiyet tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Cinsiyet adi\",\"type\":\"string\"}}},\"CitizenshipLOV\":{\"title\":\"CitizenshipLOV\",\"description\":\"Vatandaşlık bilgilerini taşır\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Vatan adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/IdentificationInfoDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"birthDate\": \"1966-07-02T17:41:11.373Z\",\n \"birthPlaceName\": \"con\",\n \"citizenNumber\": \"veniam dolore deserunt\",\n \"citizenshipId\": {\n \"createdBy\": \"enim aliquip deserunt ex consectetur\",\n \"createdDate\": \"1973-02-28T12:03:07.843Z\",\n \"id\": 11137296,\n \"name\": \"qui\"\n },\n \"createdBy\": \"ex in al\",\n \"createdDate\": \"2002-02-27T01:02:59.585Z\",\n \"firstName\": \"aliquip mollit nisi\",\n \"gender\": {\n \"createdBy\": \"dolore cillum ut Duis\",\n \"createdDate\": \"1962-10-06T06:01:20.259Z\",\n \"id\": -98570827,\n \"name\": \"sint velit\"\n },\n \"lastModifiedBy\": \"in veniam Duis magna\",\n \"lastModifiedDate\": \"1945-03-09T15:20:37.223Z\",\n \"lastName\": \"tempor\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/IdentificationInfoDTO\"}],\"definitions\":{\"IdentificationInfoDTO\":{\"title\":\"IdentificationInfoDTO\",\"description\":\"Kisiye ait kimlik bilgilerini tutar.\",\"type\":\"object\",\"properties\":{\"birthDate\":{\"format\":\"date-time\",\"description\":\"Dogum Tarihi\",\"type\":\"string\"},\"birthPlaceName\":{\"description\":\"Dogum Yeri adi\",\"type\":\"string\"},\"citizenNumber\":{\"description\":\"Vatandaslik numarasi\",\"type\":\"string\"},\"citizenshipId\":{\"$ref\":\"#/definitions/CitizenshipLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adi\",\"type\":\"string\"},\"gender\":{\"$ref\":\"#/definitions/GenderLOV\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadi\",\"type\":\"string\"}}},\"GenderLOV\":{\"title\":\"GenderLOV\",\"description\":\"Cinsiyet tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Cinsiyet adi\",\"type\":\"string\"}}},\"CitizenshipLOV\":{\"title\":\"CitizenshipLOV\",\"description\":\"Vatandaşlık bilgilerini taşır\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Vatan adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/IdentificationInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"birthDate\": \"1994-12-20T05:54:31.841Z\",\n \"birthPlaceName\": \"fugiat culpa\",\n \"citizenNumber\": \"aute Excepteur\",\n \"citizenshipId\": {\n \"createdBy\": \"irure Lorem\",\n \"createdDate\": \"2001-05-14T10:26:01.100Z\",\n \"id\": 63073113,\n \"name\": \"proident ut Lorem dolor adipisicing\"\n },\n \"createdBy\": \"ut occaecat dolor\",\n \"createdDate\": \"1966-03-24T08:38:55.813Z\",\n \"firstName\": \"id incidid\",\n \"gender\": {\n \"createdBy\": \"consectetur Ut amet tempor\",\n \"createdDate\": \"1967-04-07T07:01:30.262Z\",\n \"id\": -65935154,\n \"name\": \"consequat Excepteur ullamco cillum\"\n },\n \"lastModifiedBy\": \"ex aliquip\",\n \"lastModifiedDate\": \"1963-12-27T06:20:21.047Z\",\n \"lastName\": \"do in occaecat voluptate sunt\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/IdentificationInfoDTO\"}],\"definitions\":{\"IdentificationInfoDTO\":{\"title\":\"IdentificationInfoDTO\",\"description\":\"Kisiye ait kimlik bilgilerini tutar.\",\"type\":\"object\",\"properties\":{\"birthDate\":{\"format\":\"date-time\",\"description\":\"Dogum Tarihi\",\"type\":\"string\"},\"birthPlaceName\":{\"description\":\"Dogum Yeri adi\",\"type\":\"string\"},\"citizenNumber\":{\"description\":\"Vatandaslik numarasi\",\"type\":\"string\"},\"citizenshipId\":{\"$ref\":\"#/definitions/CitizenshipLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adi\",\"type\":\"string\"},\"gender\":{\"$ref\":\"#/definitions/GenderLOV\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadi\",\"type\":\"string\"}}},\"GenderLOV\":{\"title\":\"GenderLOV\",\"description\":\"Cinsiyet tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Cinsiyet adi\",\"type\":\"string\"}}},\"CitizenshipLOV\":{\"title\":\"CitizenshipLOV\",\"description\":\"Vatandaşlık bilgilerini taşır\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Vatan adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/IdentificationInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "202" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/IdentificationInfoDTO\"}],\"definitions\":{\"IdentificationInfoDTO\":{\"title\":\"IdentificationInfoDTO\",\"description\":\"Kisiye ait kimlik bilgilerini tutar.\",\"type\":\"object\",\"properties\":{\"birthDate\":{\"format\":\"date-time\",\"description\":\"Dogum Tarihi\",\"type\":\"string\"},\"birthPlaceName\":{\"description\":\"Dogum Yeri adi\",\"type\":\"string\"},\"citizenNumber\":{\"description\":\"Vatandaslik numarasi\",\"type\":\"string\"},\"citizenshipId\":{\"$ref\":\"#/definitions/CitizenshipLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adi\",\"type\":\"string\"},\"gender\":{\"$ref\":\"#/definitions/GenderLOV\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadi\",\"type\":\"string\"}}},\"GenderLOV\":{\"title\":\"GenderLOV\",\"description\":\"Cinsiyet tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Cinsiyet adi\",\"type\":\"string\"}}},\"CitizenshipLOV\":{\"title\":\"CitizenshipLOV\",\"description\":\"Vatandaşlık bilgilerini taşır\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Vatan adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/IdentificationInfoDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"birthDate\": \"2000-03-16T12:24:22.767Z\",\n \"birthPlaceName\": \"fugiat sit\",\n \"citizenNumber\": \"dolor labore culpa ullamco\",\n \"citizenshipId\": {\n \"createdBy\": \"proident dolore et deserunt\",\n \"createdDate\": \"1966-09-17T14:35:28.392Z\",\n \"id\": -62206264,\n \"name\": \"laboris esse\"\n },\n \"createdBy\": \"pariatur ullamco sit\",\n \"createdDate\": \"1996-08-11T04:25:56.269Z\",\n \"firstName\": \"exercitation laborum proident tempor\",\n \"gender\": {\n \"createdBy\": \"consectetur aliquip in cupidatat\",\n \"createdDate\": \"1992-04-11T14:28:01.501Z\",\n \"id\": 4370323,\n \"name\": \"tempor fugiat dolore aliqua\"\n },\n \"lastModifiedBy\": \"laboris\",\n \"lastModifiedDate\": \"2007-09-29T15:00:30.181Z\",\n \"lastName\": \"adipisicing\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/IdentificationInfoDTO\"}],\"definitions\":{\"IdentificationInfoDTO\":{\"title\":\"IdentificationInfoDTO\",\"description\":\"Kisiye ait kimlik bilgilerini tutar.\",\"type\":\"object\",\"properties\":{\"birthDate\":{\"format\":\"date-time\",\"description\":\"Dogum Tarihi\",\"type\":\"string\"},\"birthPlaceName\":{\"description\":\"Dogum Yeri adi\",\"type\":\"string\"},\"citizenNumber\":{\"description\":\"Vatandaslik numarasi\",\"type\":\"string\"},\"citizenshipId\":{\"$ref\":\"#/definitions/CitizenshipLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adi\",\"type\":\"string\"},\"gender\":{\"$ref\":\"#/definitions/GenderLOV\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadi\",\"type\":\"string\"}}},\"GenderLOV\":{\"title\":\"GenderLOV\",\"description\":\"Cinsiyet tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Cinsiyet adi\",\"type\":\"string\"}}},\"CitizenshipLOV\":{\"title\":\"CitizenshipLOV\",\"description\":\"Vatandaşlık bilgilerini taşır\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Vatan adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/IdentificationInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"birthDate\": \"2009-10-03T10:53:13.912Z\",\n \"birthPlaceName\": \"cillum consectetur amet labore\",\n \"citizenNumber\": \"dolore\",\n \"citizenshipId\": {\n \"createdBy\": \"nisi in irure voluptate do\",\n \"createdDate\": \"1982-11-01T14:24:50.110Z\",\n \"id\": 42062836,\n \"name\": \"in ad exercitation et\"\n },\n \"createdBy\": \"nisi quis veniam dolore\",\n \"createdDate\": \"2014-05-02T02:30:46.678Z\",\n \"firstName\": \"deserunt laborum veniam fugiat\",\n \"gender\": {\n \"createdBy\": \"cillum ad dolore\",\n \"createdDate\": \"1961-09-10T16:55:28.508Z\",\n \"id\": 45929266,\n \"name\": \"fugiat\"\n },\n \"lastModifiedBy\": \"et eiusmod do\",\n \"lastModifiedDate\": \"2011-11-03T14:26:00.744Z\",\n \"lastName\": \"sit voluptate\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/IdentificationInfoDTO\"}],\"definitions\":{\"IdentificationInfoDTO\":{\"title\":\"IdentificationInfoDTO\",\"description\":\"Kisiye ait kimlik bilgilerini tutar.\",\"type\":\"object\",\"properties\":{\"birthDate\":{\"format\":\"date-time\",\"description\":\"Dogum Tarihi\",\"type\":\"string\"},\"birthPlaceName\":{\"description\":\"Dogum Yeri adi\",\"type\":\"string\"},\"citizenNumber\":{\"description\":\"Vatandaslik numarasi\",\"type\":\"string\"},\"citizenshipId\":{\"$ref\":\"#/definitions/CitizenshipLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adi\",\"type\":\"string\"},\"gender\":{\"$ref\":\"#/definitions/GenderLOV\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadi\",\"type\":\"string\"}}},\"GenderLOV\":{\"title\":\"GenderLOV\",\"description\":\"Cinsiyet tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Cinsiyet adi\",\"type\":\"string\"}}},\"CitizenshipLOV\":{\"title\":\"CitizenshipLOV\",\"description\":\"Vatandaşlık bilgilerini taşır\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Vatan adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/IdentificationInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"birthDate\": \"1965-03-12T09:08:12.762Z\",\n \"birthPlaceName\": \"dolor in consequat\",\n \"citizenNumber\": \"consequat id dolor\",\n \"citizenshipId\": {\n \"createdBy\": \"esse in reprehe\",\n \"createdDate\": \"1942-07-13T22:29:25.297Z\",\n \"id\": -50204250,\n \"name\": \"dolore veniam ullamco magna\"\n },\n \"createdBy\": \"voluptate quis\",\n \"createdDate\": \"1978-11-16T02:06:31.051Z\",\n \"firstName\": \"eni\",\n \"gender\": {\n \"createdBy\": \"occaecat laboris aliqua\",\n \"createdDate\": \"2015-05-03T16:07:56.596Z\",\n \"id\": -59692860,\n \"name\": \"voluptate\"\n },\n \"lastModifiedBy\": \"anim adipisicing dolor officia aute\",\n \"lastModifiedDate\": \"2012-05-02T18:22:12.088Z\",\n \"lastName\": \"voluptate non reprehenderit velit E\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/IdentificationInfoDTO\"}],\"definitions\":{\"IdentificationInfoDTO\":{\"title\":\"IdentificationInfoDTO\",\"description\":\"Kisiye ait kimlik bilgilerini tutar.\",\"type\":\"object\",\"properties\":{\"birthDate\":{\"format\":\"date-time\",\"description\":\"Dogum Tarihi\",\"type\":\"string\"},\"birthPlaceName\":{\"description\":\"Dogum Yeri adi\",\"type\":\"string\"},\"citizenNumber\":{\"description\":\"Vatandaslik numarasi\",\"type\":\"string\"},\"citizenshipId\":{\"$ref\":\"#/definitions/CitizenshipLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adi\",\"type\":\"string\"},\"gender\":{\"$ref\":\"#/definitions/GenderLOV\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadi\",\"type\":\"string\"}}},\"GenderLOV\":{\"title\":\"GenderLOV\",\"description\":\"Cinsiyet tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Cinsiyet adi\",\"type\":\"string\"}}},\"CitizenshipLOV\":{\"title\":\"CitizenshipLOV\",\"description\":\"Vatandaşlık bilgilerini taşır\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Vatan adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/IdentificationInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"birthDate\": \"1989-11-13T01:44:11.766Z\",\n \"birthPlaceName\": \"voluptate labore culpa ipsum\",\n \"citizenNumber\": \"laboris offici\",\n \"citizenshipId\": {\n \"createdBy\": \"fugiat ex in dolor et\",\n \"createdDate\": \"1992-07-25T14:21:19.157Z\",\n \"id\": 91854337,\n \"name\": \"quis incididunt aliqua\"\n },\n \"createdBy\": \"ipsum est\",\n \"createdDate\": \"1972-05-29T00:34:47.649Z\",\n \"firstName\": \"ut magna ad ut quis\",\n \"gender\": {\n \"createdBy\": \"ullamco dolor occaecat non ex\",\n \"createdDate\": \"1959-03-01T16:43:13.575Z\",\n \"id\": -79972977,\n \"name\": \"mollit\"\n },\n \"lastModifiedBy\": \"anim magna exercitation\",\n \"lastModifiedDate\": \"2014-08-24T22:25:17.961Z\",\n \"lastName\": \"sit dolor irure dolore\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/IdentificationInfoDTO\"}],\"definitions\":{\"IdentificationInfoDTO\":{\"title\":\"IdentificationInfoDTO\",\"description\":\"Kisiye ait kimlik bilgilerini tutar.\",\"type\":\"object\",\"properties\":{\"birthDate\":{\"format\":\"date-time\",\"description\":\"Dogum Tarihi\",\"type\":\"string\"},\"birthPlaceName\":{\"description\":\"Dogum Yeri adi\",\"type\":\"string\"},\"citizenNumber\":{\"description\":\"Vatandaslik numarasi\",\"type\":\"string\"},\"citizenshipId\":{\"$ref\":\"#/definitions/CitizenshipLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adi\",\"type\":\"string\"},\"gender\":{\"$ref\":\"#/definitions/GenderLOV\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadi\",\"type\":\"string\"}}},\"GenderLOV\":{\"title\":\"GenderLOV\",\"description\":\"Cinsiyet tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Cinsiyet adi\",\"type\":\"string\"}}},\"CitizenshipLOV\":{\"title\":\"CitizenshipLOV\",\"description\":\"Vatandaşlık bilgilerini taşır\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Vatan adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/IdentificationInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"birthDate\": \"1990-07-13T07:54:23.701Z\",\n \"birthPlaceName\": \"fugiat\",\n \"citizenNumber\": \"pariatur\",\n \"citizenshipId\": {\n \"createdBy\": \"non enim pariatur ex veniam\",\n \"createdDate\": \"1990-07-27T00:15:50.237Z\",\n \"id\": -43399744,\n \"name\": \"occaecat proident ex\"\n },\n \"createdBy\": \"Excepteur\",\n \"createdDate\": \"1998-06-06T09:55:16.765Z\",\n \"firstName\": \"adipisicing ea\",\n \"gender\": {\n \"createdBy\": \"laborum\",\n \"createdDate\": \"1987-09-02T07:34:38.024Z\",\n \"id\": 4524650,\n \"name\": \"voluptate\"\n },\n \"lastModifiedBy\": \"veniam amet ipsum dolor ut\",\n \"lastModifiedDate\": \"2015-10-05T00:12:46.469Z\",\n \"lastName\": \"cupidatat pariatur\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/IdentificationInfoDTO\"}],\"definitions\":{\"IdentificationInfoDTO\":{\"title\":\"IdentificationInfoDTO\",\"description\":\"Kisiye ait kimlik bilgilerini tutar.\",\"type\":\"object\",\"properties\":{\"birthDate\":{\"format\":\"date-time\",\"description\":\"Dogum Tarihi\",\"type\":\"string\"},\"birthPlaceName\":{\"description\":\"Dogum Yeri adi\",\"type\":\"string\"},\"citizenNumber\":{\"description\":\"Vatandaslik numarasi\",\"type\":\"string\"},\"citizenshipId\":{\"$ref\":\"#/definitions/CitizenshipLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"firstName\":{\"description\":\"Adi\",\"type\":\"string\"},\"gender\":{\"$ref\":\"#/definitions/GenderLOV\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"lastName\":{\"description\":\"Soyadi\",\"type\":\"string\"}}},\"GenderLOV\":{\"title\":\"GenderLOV\",\"description\":\"Cinsiyet tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Cinsiyet adi\",\"type\":\"string\"}}},\"CitizenshipLOV\":{\"title\":\"CitizenshipLOV\",\"description\":\"Vatandaşlık bilgilerini taşır\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Vatan adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/IdentificationInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz. " + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/teachers/{id}/military" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Personelin askerlik bilgilerini verir. Tecil bilgilerinide barındırır." + }, + "id": { + "element": "string", + "content": "getTeacherMilitaryInfo" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Teacher ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Gets one `MilitaryInfo` of `Teacher`." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "`MilitaryInfo` entity of `Teacher`." + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/MilitaryInfoDTO\"}],\"definitions\":{\"MilitaryInfoDTO\":{\"title\":\"MilitaryInfoDTO\",\"description\":\"Askerlik bilgileri. Kişiye ait askerlik başlangıç bitiş ve tecil bilgileri gibi bilgileri barındırır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defermentInfos\":{\"description\":\"Tecil bilgileri\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/MilitaryDefermentInfoDTO\"}},\"endDate\":{\"format\":\"date-time\",\"description\":\"Askerlik hizmeti bitiş tarihi\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"militaryStatus\":{\"$ref\":\"#/definitions/MilitaryStatusLOV\"},\"militaryStatusId\":{\"$ref\":\"#/definitions/MilitaryStatusLOV\"},\"startDate\":{\"format\":\"date-time\",\"description\":\"Askerlik hizmeti başlangıç tarihi\",\"type\":\"string\"}}},\"MilitaryStatusLOV\":{\"title\":\"MilitaryStatusLOV\",\"description\":\"Askerlik durumu tanımını tutar. Örneğin; ASKERDE, YAŞINI BEKLİYOR, TECİLLİ, MUAF,KAÇAK vs.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Askerlik durum adı\",\"type\":\"string\"}}},\"MilitaryDefermentInfoDTO\":{\"title\":\"MilitaryDefermentInfoDTO\",\"description\":\"Bir kişinin tecil bilgisini tutar. Bir kişinin birden çok tecil bilgisi olabilir. Tecil bilgileri MilitaryInfoDTO içerisinde liste halinde tutulmaktadır. Bu dto bir kişinin askerlik bilgilerinin tamamını tutmaz. Sadece tek bir tecil bilgisini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defermentStatus\":{\"$ref\":\"#/definitions/MilitaryDefermentStatusLOV\"},\"endDate\":{\"format\":\"date-time\",\"description\":\"Tecil bitis tarihi\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"MilitaryDefermentStatusLOV\":{\"title\":\"MilitaryDefermentStatusLOV\",\"description\":\"Tecil durumu tanımlarını tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Tecil durumu adı\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/MilitaryInfoDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Personele ait askerlik bilgilerinin güceller" + }, + "id": { + "element": "string", + "content": "updateTeacherMilitaryInfo" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Personel ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Personele ait askerlik bilgilerinin gücellendiği servistir. `MilitaryInfoDTO` objesini döner." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"irure\",\n \"createdDate\": \"1990-12-26T22:51:23.765Z\",\n \"defermentInfos\": [],\n \"endDate\": \"1942-10-25T14:20:16.423Z\",\n \"id\": 5635610,\n \"lastModifiedBy\": \"consectetur\",\n \"lastModifiedDate\": \"2013-11-04T19:13:41.375Z\",\n \"militaryStatus\": {\n \"createdBy\": \"in\",\n \"createdDate\": \"1997-07-31T06:02:52.896Z\",\n \"id\": -50724367,\n \"name\": \"culpa ad sint reprehenderit\"\n },\n \"militaryStatusId\": {\n \"createdBy\": \"sunt proident eu ut dolore\",\n \"createdDate\": \"2018-02-07T22:26:00.016Z\",\n \"id\": -89936316,\n \"name\": \"sed dolore\"\n },\n \"startDate\": \"1977-12-05T23:36:51.109Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/MilitaryInfoDTO\"}],\"definitions\":{\"MilitaryInfoDTO\":{\"title\":\"MilitaryInfoDTO\",\"description\":\"Askerlik bilgileri. Kişiye ait askerlik başlangıç bitiş ve tecil bilgileri gibi bilgileri barındırır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defermentInfos\":{\"description\":\"Tecil bilgileri\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/MilitaryDefermentInfoDTO\"}},\"endDate\":{\"format\":\"date-time\",\"description\":\"Askerlik hizmeti bitiş tarihi\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"militaryStatus\":{\"$ref\":\"#/definitions/MilitaryStatusLOV\"},\"militaryStatusId\":{\"$ref\":\"#/definitions/MilitaryStatusLOV\"},\"startDate\":{\"format\":\"date-time\",\"description\":\"Askerlik hizmeti başlangıç tarihi\",\"type\":\"string\"}}},\"MilitaryStatusLOV\":{\"title\":\"MilitaryStatusLOV\",\"description\":\"Askerlik durumu tanımını tutar. Örneğin; ASKERDE, YAŞINI BEKLİYOR, TECİLLİ, MUAF,KAÇAK vs.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Askerlik durum adı\",\"type\":\"string\"}}},\"MilitaryDefermentInfoDTO\":{\"title\":\"MilitaryDefermentInfoDTO\",\"description\":\"Bir kişinin tecil bilgisini tutar. Bir kişinin birden çok tecil bilgisi olabilir. Tecil bilgileri MilitaryInfoDTO içerisinde liste halinde tutulmaktadır. Bu dto bir kişinin askerlik bilgilerinin tamamını tutmaz. Sadece tek bir tecil bilgisini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defermentStatus\":{\"$ref\":\"#/definitions/MilitaryDefermentStatusLOV\"},\"endDate\":{\"format\":\"date-time\",\"description\":\"Tecil bitis tarihi\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"MilitaryDefermentStatusLOV\":{\"title\":\"MilitaryDefermentStatusLOV\",\"description\":\"Tecil durumu tanımlarını tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Tecil durumu adı\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/MilitaryInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/MilitaryInfoDTO\"}],\"definitions\":{\"MilitaryInfoDTO\":{\"title\":\"MilitaryInfoDTO\",\"description\":\"Askerlik bilgileri. Kişiye ait askerlik başlangıç bitiş ve tecil bilgileri gibi bilgileri barındırır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defermentInfos\":{\"description\":\"Tecil bilgileri\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/MilitaryDefermentInfoDTO\"}},\"endDate\":{\"format\":\"date-time\",\"description\":\"Askerlik hizmeti bitiş tarihi\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"militaryStatus\":{\"$ref\":\"#/definitions/MilitaryStatusLOV\"},\"militaryStatusId\":{\"$ref\":\"#/definitions/MilitaryStatusLOV\"},\"startDate\":{\"format\":\"date-time\",\"description\":\"Askerlik hizmeti başlangıç tarihi\",\"type\":\"string\"}}},\"MilitaryStatusLOV\":{\"title\":\"MilitaryStatusLOV\",\"description\":\"Askerlik durumu tanımını tutar. Örneğin; ASKERDE, YAŞINI BEKLİYOR, TECİLLİ, MUAF,KAÇAK vs.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Askerlik durum adı\",\"type\":\"string\"}}},\"MilitaryDefermentInfoDTO\":{\"title\":\"MilitaryDefermentInfoDTO\",\"description\":\"Bir kişinin tecil bilgisini tutar. Bir kişinin birden çok tecil bilgisi olabilir. Tecil bilgileri MilitaryInfoDTO içerisinde liste halinde tutulmaktadır. Bu dto bir kişinin askerlik bilgilerinin tamamını tutmaz. Sadece tek bir tecil bilgisini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defermentStatus\":{\"$ref\":\"#/definitions/MilitaryDefermentStatusLOV\"},\"endDate\":{\"format\":\"date-time\",\"description\":\"Tecil bitis tarihi\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"MilitaryDefermentStatusLOV\":{\"title\":\"MilitaryDefermentStatusLOV\",\"description\":\"Tecil durumu tanımlarını tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Tecil durumu adı\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/MilitaryInfoDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"id tempor\",\n \"createdDate\": \"1987-09-20T13:03:24.215Z\",\n \"defermentInfos\": [],\n \"endDate\": \"1993-08-01T19:28:22.942Z\",\n \"id\": 48982201,\n \"lastModifiedBy\": \"dolor\",\n \"lastModifiedDate\": \"1989-08-29T19:11:25.291Z\",\n \"militaryStatus\": {\n \"createdBy\": \"sed laboris culpa\",\n \"createdDate\": \"1951-05-02T19:24:45.117Z\",\n \"id\": -72664095,\n \"name\": \"est\"\n },\n \"militaryStatusId\": {\n \"createdBy\": \"reprehenderit magna nisi\",\n \"createdDate\": \"1951-08-06T11:06:40.625Z\",\n \"id\": 20223889,\n \"name\": \"fugiat velit culpa sit eu\"\n },\n \"startDate\": \"2013-06-30T16:57:56.554Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/MilitaryInfoDTO\"}],\"definitions\":{\"MilitaryInfoDTO\":{\"title\":\"MilitaryInfoDTO\",\"description\":\"Askerlik bilgileri. Kişiye ait askerlik başlangıç bitiş ve tecil bilgileri gibi bilgileri barındırır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defermentInfos\":{\"description\":\"Tecil bilgileri\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/MilitaryDefermentInfoDTO\"}},\"endDate\":{\"format\":\"date-time\",\"description\":\"Askerlik hizmeti bitiş tarihi\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"militaryStatus\":{\"$ref\":\"#/definitions/MilitaryStatusLOV\"},\"militaryStatusId\":{\"$ref\":\"#/definitions/MilitaryStatusLOV\"},\"startDate\":{\"format\":\"date-time\",\"description\":\"Askerlik hizmeti başlangıç tarihi\",\"type\":\"string\"}}},\"MilitaryStatusLOV\":{\"title\":\"MilitaryStatusLOV\",\"description\":\"Askerlik durumu tanımını tutar. Örneğin; ASKERDE, YAŞINI BEKLİYOR, TECİLLİ, MUAF,KAÇAK vs.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Askerlik durum adı\",\"type\":\"string\"}}},\"MilitaryDefermentInfoDTO\":{\"title\":\"MilitaryDefermentInfoDTO\",\"description\":\"Bir kişinin tecil bilgisini tutar. Bir kişinin birden çok tecil bilgisi olabilir. Tecil bilgileri MilitaryInfoDTO içerisinde liste halinde tutulmaktadır. Bu dto bir kişinin askerlik bilgilerinin tamamını tutmaz. Sadece tek bir tecil bilgisini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defermentStatus\":{\"$ref\":\"#/definitions/MilitaryDefermentStatusLOV\"},\"endDate\":{\"format\":\"date-time\",\"description\":\"Tecil bitis tarihi\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"MilitaryDefermentStatusLOV\":{\"title\":\"MilitaryDefermentStatusLOV\",\"description\":\"Tecil durumu tanımlarını tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Tecil durumu adı\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/MilitaryInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"Duis consequat\",\n \"createdDate\": \"2000-10-16T14:46:42.388Z\",\n \"defermentInfos\": [],\n \"endDate\": \"1959-02-26T06:17:03.539Z\",\n \"id\": -58126484,\n \"lastModifiedBy\": \"Excepteur Duis mollit\",\n \"lastModifiedDate\": \"1956-03-07T14:15:24.049Z\",\n \"militaryStatus\": {\n \"createdBy\": \"dolor ullamco conse\",\n \"createdDate\": \"2009-02-03T16:48:03.318Z\",\n \"id\": 32267844,\n \"name\": \"ea\"\n },\n \"militaryStatusId\": {\n \"createdBy\": \"est sint\",\n \"createdDate\": \"1970-05-14T04:58:54.646Z\",\n \"id\": -78709408,\n \"name\": \"et in consequat nis\"\n },\n \"startDate\": \"1998-01-07T13:13:11.760Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/MilitaryInfoDTO\"}],\"definitions\":{\"MilitaryInfoDTO\":{\"title\":\"MilitaryInfoDTO\",\"description\":\"Askerlik bilgileri. Kişiye ait askerlik başlangıç bitiş ve tecil bilgileri gibi bilgileri barındırır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defermentInfos\":{\"description\":\"Tecil bilgileri\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/MilitaryDefermentInfoDTO\"}},\"endDate\":{\"format\":\"date-time\",\"description\":\"Askerlik hizmeti bitiş tarihi\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"militaryStatus\":{\"$ref\":\"#/definitions/MilitaryStatusLOV\"},\"militaryStatusId\":{\"$ref\":\"#/definitions/MilitaryStatusLOV\"},\"startDate\":{\"format\":\"date-time\",\"description\":\"Askerlik hizmeti başlangıç tarihi\",\"type\":\"string\"}}},\"MilitaryStatusLOV\":{\"title\":\"MilitaryStatusLOV\",\"description\":\"Askerlik durumu tanımını tutar. Örneğin; ASKERDE, YAŞINI BEKLİYOR, TECİLLİ, MUAF,KAÇAK vs.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Askerlik durum adı\",\"type\":\"string\"}}},\"MilitaryDefermentInfoDTO\":{\"title\":\"MilitaryDefermentInfoDTO\",\"description\":\"Bir kişinin tecil bilgisini tutar. Bir kişinin birden çok tecil bilgisi olabilir. Tecil bilgileri MilitaryInfoDTO içerisinde liste halinde tutulmaktadır. Bu dto bir kişinin askerlik bilgilerinin tamamını tutmaz. Sadece tek bir tecil bilgisini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defermentStatus\":{\"$ref\":\"#/definitions/MilitaryDefermentStatusLOV\"},\"endDate\":{\"format\":\"date-time\",\"description\":\"Tecil bitis tarihi\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"MilitaryDefermentStatusLOV\":{\"title\":\"MilitaryDefermentStatusLOV\",\"description\":\"Tecil durumu tanımlarını tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Tecil durumu adı\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/MilitaryInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "202" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/MilitaryInfoDTO\"}],\"definitions\":{\"MilitaryInfoDTO\":{\"title\":\"MilitaryInfoDTO\",\"description\":\"Askerlik bilgileri. Kişiye ait askerlik başlangıç bitiş ve tecil bilgileri gibi bilgileri barındırır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defermentInfos\":{\"description\":\"Tecil bilgileri\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/MilitaryDefermentInfoDTO\"}},\"endDate\":{\"format\":\"date-time\",\"description\":\"Askerlik hizmeti bitiş tarihi\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"militaryStatus\":{\"$ref\":\"#/definitions/MilitaryStatusLOV\"},\"militaryStatusId\":{\"$ref\":\"#/definitions/MilitaryStatusLOV\"},\"startDate\":{\"format\":\"date-time\",\"description\":\"Askerlik hizmeti başlangıç tarihi\",\"type\":\"string\"}}},\"MilitaryStatusLOV\":{\"title\":\"MilitaryStatusLOV\",\"description\":\"Askerlik durumu tanımını tutar. Örneğin; ASKERDE, YAŞINI BEKLİYOR, TECİLLİ, MUAF,KAÇAK vs.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Askerlik durum adı\",\"type\":\"string\"}}},\"MilitaryDefermentInfoDTO\":{\"title\":\"MilitaryDefermentInfoDTO\",\"description\":\"Bir kişinin tecil bilgisini tutar. Bir kişinin birden çok tecil bilgisi olabilir. Tecil bilgileri MilitaryInfoDTO içerisinde liste halinde tutulmaktadır. Bu dto bir kişinin askerlik bilgilerinin tamamını tutmaz. Sadece tek bir tecil bilgisini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defermentStatus\":{\"$ref\":\"#/definitions/MilitaryDefermentStatusLOV\"},\"endDate\":{\"format\":\"date-time\",\"description\":\"Tecil bitis tarihi\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"MilitaryDefermentStatusLOV\":{\"title\":\"MilitaryDefermentStatusLOV\",\"description\":\"Tecil durumu tanımlarını tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Tecil durumu adı\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/MilitaryInfoDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"Excepteur\",\n \"createdDate\": \"1957-07-01T06:55:24.918Z\",\n \"defermentInfos\": [],\n \"endDate\": \"2012-12-16T17:41:45.690Z\",\n \"id\": 42375926,\n \"lastModifiedBy\": \"ut\",\n \"lastModifiedDate\": \"1947-03-17T06:41:05.343Z\",\n \"militaryStatus\": {\n \"createdBy\": \"labore Duis anim Ut Excepteur\",\n \"createdDate\": \"1989-03-25T14:54:12.532Z\",\n \"id\": -84316732,\n \"name\": \"qui\"\n },\n \"militaryStatusId\": {\n \"createdBy\": \"esse quis deserunt amet non\",\n \"createdDate\": \"1996-12-25T14:35:23.938Z\",\n \"id\": -12352538,\n \"name\": \"esse\"\n },\n \"startDate\": \"1995-08-05T19:27:09.953Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/MilitaryInfoDTO\"}],\"definitions\":{\"MilitaryInfoDTO\":{\"title\":\"MilitaryInfoDTO\",\"description\":\"Askerlik bilgileri. Kişiye ait askerlik başlangıç bitiş ve tecil bilgileri gibi bilgileri barındırır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defermentInfos\":{\"description\":\"Tecil bilgileri\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/MilitaryDefermentInfoDTO\"}},\"endDate\":{\"format\":\"date-time\",\"description\":\"Askerlik hizmeti bitiş tarihi\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"militaryStatus\":{\"$ref\":\"#/definitions/MilitaryStatusLOV\"},\"militaryStatusId\":{\"$ref\":\"#/definitions/MilitaryStatusLOV\"},\"startDate\":{\"format\":\"date-time\",\"description\":\"Askerlik hizmeti başlangıç tarihi\",\"type\":\"string\"}}},\"MilitaryStatusLOV\":{\"title\":\"MilitaryStatusLOV\",\"description\":\"Askerlik durumu tanımını tutar. Örneğin; ASKERDE, YAŞINI BEKLİYOR, TECİLLİ, MUAF,KAÇAK vs.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Askerlik durum adı\",\"type\":\"string\"}}},\"MilitaryDefermentInfoDTO\":{\"title\":\"MilitaryDefermentInfoDTO\",\"description\":\"Bir kişinin tecil bilgisini tutar. Bir kişinin birden çok tecil bilgisi olabilir. Tecil bilgileri MilitaryInfoDTO içerisinde liste halinde tutulmaktadır. Bu dto bir kişinin askerlik bilgilerinin tamamını tutmaz. Sadece tek bir tecil bilgisini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defermentStatus\":{\"$ref\":\"#/definitions/MilitaryDefermentStatusLOV\"},\"endDate\":{\"format\":\"date-time\",\"description\":\"Tecil bitis tarihi\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"MilitaryDefermentStatusLOV\":{\"title\":\"MilitaryDefermentStatusLOV\",\"description\":\"Tecil durumu tanımlarını tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Tecil durumu adı\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/MilitaryInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"ullamco sed do ipsum\",\n \"createdDate\": \"2010-04-12T16:48:26.612Z\",\n \"defermentInfos\": [],\n \"endDate\": \"1992-12-09T12:15:34.194Z\",\n \"id\": 47379977,\n \"lastModifiedBy\": \"dolor\",\n \"lastModifiedDate\": \"1973-01-21T22:26:09.629Z\",\n \"militaryStatus\": {\n \"createdBy\": \"dolor velit aliquip in ullamco\",\n \"createdDate\": \"2010-10-21T07:45:58.015Z\",\n \"id\": -33422888,\n \"name\": \"ea ipsum consequat in\"\n },\n \"militaryStatusId\": {\n \"createdBy\": \"esse ad ut\",\n \"createdDate\": \"1942-10-17T15:28:05.260Z\",\n \"id\": 12735680,\n \"name\": \"Ut\"\n },\n \"startDate\": \"1985-09-20T23:39:38.323Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/MilitaryInfoDTO\"}],\"definitions\":{\"MilitaryInfoDTO\":{\"title\":\"MilitaryInfoDTO\",\"description\":\"Askerlik bilgileri. Kişiye ait askerlik başlangıç bitiş ve tecil bilgileri gibi bilgileri barındırır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defermentInfos\":{\"description\":\"Tecil bilgileri\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/MilitaryDefermentInfoDTO\"}},\"endDate\":{\"format\":\"date-time\",\"description\":\"Askerlik hizmeti bitiş tarihi\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"militaryStatus\":{\"$ref\":\"#/definitions/MilitaryStatusLOV\"},\"militaryStatusId\":{\"$ref\":\"#/definitions/MilitaryStatusLOV\"},\"startDate\":{\"format\":\"date-time\",\"description\":\"Askerlik hizmeti başlangıç tarihi\",\"type\":\"string\"}}},\"MilitaryStatusLOV\":{\"title\":\"MilitaryStatusLOV\",\"description\":\"Askerlik durumu tanımını tutar. Örneğin; ASKERDE, YAŞINI BEKLİYOR, TECİLLİ, MUAF,KAÇAK vs.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Askerlik durum adı\",\"type\":\"string\"}}},\"MilitaryDefermentInfoDTO\":{\"title\":\"MilitaryDefermentInfoDTO\",\"description\":\"Bir kişinin tecil bilgisini tutar. Bir kişinin birden çok tecil bilgisi olabilir. Tecil bilgileri MilitaryInfoDTO içerisinde liste halinde tutulmaktadır. Bu dto bir kişinin askerlik bilgilerinin tamamını tutmaz. Sadece tek bir tecil bilgisini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defermentStatus\":{\"$ref\":\"#/definitions/MilitaryDefermentStatusLOV\"},\"endDate\":{\"format\":\"date-time\",\"description\":\"Tecil bitis tarihi\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"MilitaryDefermentStatusLOV\":{\"title\":\"MilitaryDefermentStatusLOV\",\"description\":\"Tecil durumu tanımlarını tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Tecil durumu adı\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/MilitaryInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"id\",\n \"createdDate\": \"2015-11-27T17:15:33.501Z\",\n \"defermentInfos\": [],\n \"endDate\": \"1974-01-07T01:27:45.659Z\",\n \"id\": 30991469,\n \"lastModifiedBy\": \"aute ad\",\n \"lastModifiedDate\": \"1953-10-11T20:23:12.426Z\",\n \"militaryStatus\": {\n \"createdBy\": \"qui ad et occ\",\n \"createdDate\": \"1979-06-28T11:31:40.897Z\",\n \"id\": -26979117,\n \"name\": \"aliqua Ut in\"\n },\n \"militaryStatusId\": {\n \"createdBy\": \"enim\",\n \"createdDate\": \"1945-06-03T13:55:06.394Z\",\n \"id\": 54811284,\n \"name\": \"ex ut ipsum\"\n },\n \"startDate\": \"2007-02-28T23:14:40.820Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/MilitaryInfoDTO\"}],\"definitions\":{\"MilitaryInfoDTO\":{\"title\":\"MilitaryInfoDTO\",\"description\":\"Askerlik bilgileri. Kişiye ait askerlik başlangıç bitiş ve tecil bilgileri gibi bilgileri barındırır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defermentInfos\":{\"description\":\"Tecil bilgileri\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/MilitaryDefermentInfoDTO\"}},\"endDate\":{\"format\":\"date-time\",\"description\":\"Askerlik hizmeti bitiş tarihi\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"militaryStatus\":{\"$ref\":\"#/definitions/MilitaryStatusLOV\"},\"militaryStatusId\":{\"$ref\":\"#/definitions/MilitaryStatusLOV\"},\"startDate\":{\"format\":\"date-time\",\"description\":\"Askerlik hizmeti başlangıç tarihi\",\"type\":\"string\"}}},\"MilitaryStatusLOV\":{\"title\":\"MilitaryStatusLOV\",\"description\":\"Askerlik durumu tanımını tutar. Örneğin; ASKERDE, YAŞINI BEKLİYOR, TECİLLİ, MUAF,KAÇAK vs.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Askerlik durum adı\",\"type\":\"string\"}}},\"MilitaryDefermentInfoDTO\":{\"title\":\"MilitaryDefermentInfoDTO\",\"description\":\"Bir kişinin tecil bilgisini tutar. Bir kişinin birden çok tecil bilgisi olabilir. Tecil bilgileri MilitaryInfoDTO içerisinde liste halinde tutulmaktadır. Bu dto bir kişinin askerlik bilgilerinin tamamını tutmaz. Sadece tek bir tecil bilgisini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defermentStatus\":{\"$ref\":\"#/definitions/MilitaryDefermentStatusLOV\"},\"endDate\":{\"format\":\"date-time\",\"description\":\"Tecil bitis tarihi\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"MilitaryDefermentStatusLOV\":{\"title\":\"MilitaryDefermentStatusLOV\",\"description\":\"Tecil durumu tanımlarını tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Tecil durumu adı\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/MilitaryInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"incididunt anim\",\n \"createdDate\": \"1969-03-08T14:28:01.524Z\",\n \"defermentInfos\": [],\n \"endDate\": \"2005-04-25T06:24:28.224Z\",\n \"id\": -97129016,\n \"lastModifiedBy\": \"in anim quis\",\n \"lastModifiedDate\": \"1992-11-14T23:44:26.411Z\",\n \"militaryStatus\": {\n \"createdBy\": \"ullamco in proident ut\",\n \"createdDate\": \"2003-01-19T13:47:16.104Z\",\n \"id\": 36573333,\n \"name\": \"nostrud ex nisi exercitation adipisicing\"\n },\n \"militaryStatusId\": {\n \"createdBy\": \"irure reprehenderit\",\n \"createdDate\": \"1992-01-08T09:07:06.196Z\",\n \"id\": -96208942,\n \"name\": \"Ut in nulla non\"\n },\n \"startDate\": \"2019-10-27T07:37:59.614Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/MilitaryInfoDTO\"}],\"definitions\":{\"MilitaryInfoDTO\":{\"title\":\"MilitaryInfoDTO\",\"description\":\"Askerlik bilgileri. Kişiye ait askerlik başlangıç bitiş ve tecil bilgileri gibi bilgileri barındırır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defermentInfos\":{\"description\":\"Tecil bilgileri\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/MilitaryDefermentInfoDTO\"}},\"endDate\":{\"format\":\"date-time\",\"description\":\"Askerlik hizmeti bitiş tarihi\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"militaryStatus\":{\"$ref\":\"#/definitions/MilitaryStatusLOV\"},\"militaryStatusId\":{\"$ref\":\"#/definitions/MilitaryStatusLOV\"},\"startDate\":{\"format\":\"date-time\",\"description\":\"Askerlik hizmeti başlangıç tarihi\",\"type\":\"string\"}}},\"MilitaryStatusLOV\":{\"title\":\"MilitaryStatusLOV\",\"description\":\"Askerlik durumu tanımını tutar. Örneğin; ASKERDE, YAŞINI BEKLİYOR, TECİLLİ, MUAF,KAÇAK vs.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Askerlik durum adı\",\"type\":\"string\"}}},\"MilitaryDefermentInfoDTO\":{\"title\":\"MilitaryDefermentInfoDTO\",\"description\":\"Bir kişinin tecil bilgisini tutar. Bir kişinin birden çok tecil bilgisi olabilir. Tecil bilgileri MilitaryInfoDTO içerisinde liste halinde tutulmaktadır. Bu dto bir kişinin askerlik bilgilerinin tamamını tutmaz. Sadece tek bir tecil bilgisini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defermentStatus\":{\"$ref\":\"#/definitions/MilitaryDefermentStatusLOV\"},\"endDate\":{\"format\":\"date-time\",\"description\":\"Tecil bitis tarihi\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"MilitaryDefermentStatusLOV\":{\"title\":\"MilitaryDefermentStatusLOV\",\"description\":\"Tecil durumu tanımlarını tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Tecil durumu adı\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/MilitaryInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"dolore aliqua dolor exerci\",\n \"createdDate\": \"1988-06-10T02:42:53.111Z\",\n \"defermentInfos\": [],\n \"endDate\": \"1941-07-22T19:19:37.549Z\",\n \"id\": 61610686,\n \"lastModifiedBy\": \"ut\",\n \"lastModifiedDate\": \"2015-10-03T22:49:30.548Z\",\n \"militaryStatus\": {\n \"createdBy\": \"cupidatat eu ea dolor irure\",\n \"createdDate\": \"1965-06-09T20:39:56.883Z\",\n \"id\": -44529473,\n \"name\": \"cillum exercitation\"\n },\n \"militaryStatusId\": {\n \"createdBy\": \"et cillum ut dolor\",\n \"createdDate\": \"2003-06-10T23:14:05.896Z\",\n \"id\": 1275943,\n \"name\": \"nostrud\"\n },\n \"startDate\": \"1964-06-23T12:20:06.304Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/MilitaryInfoDTO\"}],\"definitions\":{\"MilitaryInfoDTO\":{\"title\":\"MilitaryInfoDTO\",\"description\":\"Askerlik bilgileri. Kişiye ait askerlik başlangıç bitiş ve tecil bilgileri gibi bilgileri barındırır.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defermentInfos\":{\"description\":\"Tecil bilgileri\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/MilitaryDefermentInfoDTO\"}},\"endDate\":{\"format\":\"date-time\",\"description\":\"Askerlik hizmeti bitiş tarihi\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"militaryStatus\":{\"$ref\":\"#/definitions/MilitaryStatusLOV\"},\"militaryStatusId\":{\"$ref\":\"#/definitions/MilitaryStatusLOV\"},\"startDate\":{\"format\":\"date-time\",\"description\":\"Askerlik hizmeti başlangıç tarihi\",\"type\":\"string\"}}},\"MilitaryStatusLOV\":{\"title\":\"MilitaryStatusLOV\",\"description\":\"Askerlik durumu tanımını tutar. Örneğin; ASKERDE, YAŞINI BEKLİYOR, TECİLLİ, MUAF,KAÇAK vs.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Askerlik durum adı\",\"type\":\"string\"}}},\"MilitaryDefermentInfoDTO\":{\"title\":\"MilitaryDefermentInfoDTO\",\"description\":\"Bir kişinin tecil bilgisini tutar. Bir kişinin birden çok tecil bilgisi olabilir. Tecil bilgileri MilitaryInfoDTO içerisinde liste halinde tutulmaktadır. Bu dto bir kişinin askerlik bilgilerinin tamamını tutmaz. Sadece tek bir tecil bilgisini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"defermentStatus\":{\"$ref\":\"#/definitions/MilitaryDefermentStatusLOV\"},\"endDate\":{\"format\":\"date-time\",\"description\":\"Tecil bitis tarihi\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"MilitaryDefermentStatusLOV\":{\"title\":\"MilitaryDefermentStatusLOV\",\"description\":\"Tecil durumu tanımlarını tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Tecil durumu adı\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/MilitaryInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz. " + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/teachers/{id}/tekamul" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Personelin mezun oldugu tekamul yurdu ve mezuniyet bilgilerini verir." + }, + "id": { + "element": "string", + "content": "getTeacherTekamulInfo" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Teacher ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Gets one `TekamulInfo` of `Teacher`." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "`TekamulInfo` entity of `Teacher`." + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/TeacherGraduationTekamulInfoDTO\"}],\"definitions\":{\"TeacherGraduationTekamulInfoDTO\":{\"title\":\"TeacherGraduationTekamulInfoDTO\",\"description\":\"Mezun olunan tekamul bilgileri ve vazife başlangıc tarihini tutar.\",\"type\":\"object\",\"properties\":{\"corporation\":{\"$ref\":\"#/definitions/CorporationLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"employmentDate\":{\"format\":\"date-time\",\"description\":\"Vazife baslangic tarihi\",\"type\":\"string\"},\"graduationDate\":{\"format\":\"date-time\",\"description\":\"Tekamul mezuniyet tarihi\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"CorporationLOV\":{\"title\":\"CorporationLOV\",\"description\":\"Kurum tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Kurum adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/TeacherGraduationTekamulInfoDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Personelin tekamul bilgilerini günceller" + }, + "id": { + "element": "string", + "content": "updateTeacherTekamulInfo" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Personel ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Personelin okuduğu tekamül yurdu ve buna ait bilgilerinin güncellendiği servistir." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"corporation\": {\n \"createdBy\": \"non min\",\n \"createdDate\": \"1958-04-02T00:04:18.925Z\",\n \"id\": -19849184,\n \"name\": \"eiusmod ad eu reprehenderit esse\"\n },\n \"createdBy\": \"ex\",\n \"createdDate\": \"2017-03-08T15:38:22.297Z\",\n \"employmentDate\": \"1976-08-08T09:40:50.015Z\",\n \"graduationDate\": \"1949-12-16T20:35:52.977Z\",\n \"lastModifiedBy\": \"dolore\",\n \"lastModifiedDate\": \"1994-04-05T11:21:19.567Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/TeacherGraduationTekamulInfoDTO\"}],\"definitions\":{\"TeacherGraduationTekamulInfoDTO\":{\"title\":\"TeacherGraduationTekamulInfoDTO\",\"description\":\"Mezun olunan tekamul bilgileri ve vazife başlangıc tarihini tutar.\",\"type\":\"object\",\"properties\":{\"corporation\":{\"$ref\":\"#/definitions/CorporationLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"employmentDate\":{\"format\":\"date-time\",\"description\":\"Vazife baslangic tarihi\",\"type\":\"string\"},\"graduationDate\":{\"format\":\"date-time\",\"description\":\"Tekamul mezuniyet tarihi\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"CorporationLOV\":{\"title\":\"CorporationLOV\",\"description\":\"Kurum tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Kurum adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/TeacherGraduationTekamulInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/TeacherGraduationTekamulInfoDTO\"}],\"definitions\":{\"TeacherGraduationTekamulInfoDTO\":{\"title\":\"TeacherGraduationTekamulInfoDTO\",\"description\":\"Mezun olunan tekamul bilgileri ve vazife başlangıc tarihini tutar.\",\"type\":\"object\",\"properties\":{\"corporation\":{\"$ref\":\"#/definitions/CorporationLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"employmentDate\":{\"format\":\"date-time\",\"description\":\"Vazife baslangic tarihi\",\"type\":\"string\"},\"graduationDate\":{\"format\":\"date-time\",\"description\":\"Tekamul mezuniyet tarihi\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"CorporationLOV\":{\"title\":\"CorporationLOV\",\"description\":\"Kurum tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Kurum adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/TeacherGraduationTekamulInfoDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"corporation\": {\n \"createdBy\": \"minim amet in consectetur\",\n \"createdDate\": \"2017-06-17T19:36:27.158Z\",\n \"id\": 73801341,\n \"name\": \"laborum ex eu aliqua anim\"\n },\n \"createdBy\": \"sunt Lorem aliquip\",\n \"createdDate\": \"2018-02-15T14:00:39.593Z\",\n \"employmentDate\": \"2008-04-14T09:38:48.876Z\",\n \"graduationDate\": \"2004-08-27T03:47:34.509Z\",\n \"lastModifiedBy\": \"ex in mollit veniam\",\n \"lastModifiedDate\": \"2004-03-10T01:50:32.350Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/TeacherGraduationTekamulInfoDTO\"}],\"definitions\":{\"TeacherGraduationTekamulInfoDTO\":{\"title\":\"TeacherGraduationTekamulInfoDTO\",\"description\":\"Mezun olunan tekamul bilgileri ve vazife başlangıc tarihini tutar.\",\"type\":\"object\",\"properties\":{\"corporation\":{\"$ref\":\"#/definitions/CorporationLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"employmentDate\":{\"format\":\"date-time\",\"description\":\"Vazife baslangic tarihi\",\"type\":\"string\"},\"graduationDate\":{\"format\":\"date-time\",\"description\":\"Tekamul mezuniyet tarihi\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"CorporationLOV\":{\"title\":\"CorporationLOV\",\"description\":\"Kurum tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Kurum adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/TeacherGraduationTekamulInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"corporation\": {\n \"createdBy\": \"amet reprehenderit\",\n \"createdDate\": \"1994-11-06T18:45:11.030Z\",\n \"id\": -84150768,\n \"name\": \"ut nisi\"\n },\n \"createdBy\": \"culpa\",\n \"createdDate\": \"1963-01-26T23:01:57.261Z\",\n \"employmentDate\": \"1967-09-13T18:37:01.232Z\",\n \"graduationDate\": \"1972-05-04T22:03:20.735Z\",\n \"lastModifiedBy\": \"Excepteur\",\n \"lastModifiedDate\": \"1979-03-16T01:28:00.687Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/TeacherGraduationTekamulInfoDTO\"}],\"definitions\":{\"TeacherGraduationTekamulInfoDTO\":{\"title\":\"TeacherGraduationTekamulInfoDTO\",\"description\":\"Mezun olunan tekamul bilgileri ve vazife başlangıc tarihini tutar.\",\"type\":\"object\",\"properties\":{\"corporation\":{\"$ref\":\"#/definitions/CorporationLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"employmentDate\":{\"format\":\"date-time\",\"description\":\"Vazife baslangic tarihi\",\"type\":\"string\"},\"graduationDate\":{\"format\":\"date-time\",\"description\":\"Tekamul mezuniyet tarihi\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"CorporationLOV\":{\"title\":\"CorporationLOV\",\"description\":\"Kurum tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Kurum adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/TeacherGraduationTekamulInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "202" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/TeacherGraduationTekamulInfoDTO\"}],\"definitions\":{\"TeacherGraduationTekamulInfoDTO\":{\"title\":\"TeacherGraduationTekamulInfoDTO\",\"description\":\"Mezun olunan tekamul bilgileri ve vazife başlangıc tarihini tutar.\",\"type\":\"object\",\"properties\":{\"corporation\":{\"$ref\":\"#/definitions/CorporationLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"employmentDate\":{\"format\":\"date-time\",\"description\":\"Vazife baslangic tarihi\",\"type\":\"string\"},\"graduationDate\":{\"format\":\"date-time\",\"description\":\"Tekamul mezuniyet tarihi\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"CorporationLOV\":{\"title\":\"CorporationLOV\",\"description\":\"Kurum tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Kurum adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/TeacherGraduationTekamulInfoDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"corporation\": {\n \"createdBy\": \"culpa exercitation esse\",\n \"createdDate\": \"2019-05-29T13:56:40.599Z\",\n \"id\": 21916459,\n \"name\": \"ul\"\n },\n \"createdBy\": \"magna dolore esse aute amet\",\n \"createdDate\": \"2013-10-28T20:22:18.636Z\",\n \"employmentDate\": \"1976-06-12T03:33:46.250Z\",\n \"graduationDate\": \"1947-06-13T04:50:06.485Z\",\n \"lastModifiedBy\": \"minim in commodo\",\n \"lastModifiedDate\": \"1991-04-09T23:41:26.678Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/TeacherGraduationTekamulInfoDTO\"}],\"definitions\":{\"TeacherGraduationTekamulInfoDTO\":{\"title\":\"TeacherGraduationTekamulInfoDTO\",\"description\":\"Mezun olunan tekamul bilgileri ve vazife başlangıc tarihini tutar.\",\"type\":\"object\",\"properties\":{\"corporation\":{\"$ref\":\"#/definitions/CorporationLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"employmentDate\":{\"format\":\"date-time\",\"description\":\"Vazife baslangic tarihi\",\"type\":\"string\"},\"graduationDate\":{\"format\":\"date-time\",\"description\":\"Tekamul mezuniyet tarihi\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"CorporationLOV\":{\"title\":\"CorporationLOV\",\"description\":\"Kurum tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Kurum adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/TeacherGraduationTekamulInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"corporation\": {\n \"createdBy\": \"fugiat Duis\",\n \"createdDate\": \"2006-06-22T17:11:30.307Z\",\n \"id\": -20525415,\n \"name\": \"ullamco adipisicing laborum enim incididunt\"\n },\n \"createdBy\": \"tempor eu Lorem elit\",\n \"createdDate\": \"1980-12-11T09:04:17.873Z\",\n \"employmentDate\": \"1958-04-19T12:50:52.173Z\",\n \"graduationDate\": \"2002-02-07T23:57:50.972Z\",\n \"lastModifiedBy\": \"ex enim con\",\n \"lastModifiedDate\": \"1985-09-23T05:12:08.910Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/TeacherGraduationTekamulInfoDTO\"}],\"definitions\":{\"TeacherGraduationTekamulInfoDTO\":{\"title\":\"TeacherGraduationTekamulInfoDTO\",\"description\":\"Mezun olunan tekamul bilgileri ve vazife başlangıc tarihini tutar.\",\"type\":\"object\",\"properties\":{\"corporation\":{\"$ref\":\"#/definitions/CorporationLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"employmentDate\":{\"format\":\"date-time\",\"description\":\"Vazife baslangic tarihi\",\"type\":\"string\"},\"graduationDate\":{\"format\":\"date-time\",\"description\":\"Tekamul mezuniyet tarihi\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"CorporationLOV\":{\"title\":\"CorporationLOV\",\"description\":\"Kurum tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Kurum adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/TeacherGraduationTekamulInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"corporation\": {\n \"createdBy\": \"tempor sint deserunt dolore\",\n \"createdDate\": \"1956-06-20T17:06:08.740Z\",\n \"id\": 24719735,\n \"name\": \"id cillum\"\n },\n \"createdBy\": \"in\",\n \"createdDate\": \"1983-02-01T13:47:54.129Z\",\n \"employmentDate\": \"1951-01-22T13:01:40.771Z\",\n \"graduationDate\": \"1955-08-09T15:05:19.251Z\",\n \"lastModifiedBy\": \"ut Duis\",\n \"lastModifiedDate\": \"2009-01-29T06:24:16.484Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/TeacherGraduationTekamulInfoDTO\"}],\"definitions\":{\"TeacherGraduationTekamulInfoDTO\":{\"title\":\"TeacherGraduationTekamulInfoDTO\",\"description\":\"Mezun olunan tekamul bilgileri ve vazife başlangıc tarihini tutar.\",\"type\":\"object\",\"properties\":{\"corporation\":{\"$ref\":\"#/definitions/CorporationLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"employmentDate\":{\"format\":\"date-time\",\"description\":\"Vazife baslangic tarihi\",\"type\":\"string\"},\"graduationDate\":{\"format\":\"date-time\",\"description\":\"Tekamul mezuniyet tarihi\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"CorporationLOV\":{\"title\":\"CorporationLOV\",\"description\":\"Kurum tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Kurum adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/TeacherGraduationTekamulInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"corporation\": {\n \"createdBy\": \"culpa elit\",\n \"createdDate\": \"1985-03-22T01:46:54.351Z\",\n \"id\": -70698731,\n \"name\": \"dolore\"\n },\n \"createdBy\": \"irure exercitation et aliquip f\",\n \"createdDate\": \"2019-06-14T15:12:02.973Z\",\n \"employmentDate\": \"1989-01-22T01:06:04.519Z\",\n \"graduationDate\": \"1969-10-03T18:00:48.875Z\",\n \"lastModifiedBy\": \"nostrud ex\",\n \"lastModifiedDate\": \"2005-04-29T17:18:18.005Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/TeacherGraduationTekamulInfoDTO\"}],\"definitions\":{\"TeacherGraduationTekamulInfoDTO\":{\"title\":\"TeacherGraduationTekamulInfoDTO\",\"description\":\"Mezun olunan tekamul bilgileri ve vazife başlangıc tarihini tutar.\",\"type\":\"object\",\"properties\":{\"corporation\":{\"$ref\":\"#/definitions/CorporationLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"employmentDate\":{\"format\":\"date-time\",\"description\":\"Vazife baslangic tarihi\",\"type\":\"string\"},\"graduationDate\":{\"format\":\"date-time\",\"description\":\"Tekamul mezuniyet tarihi\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"CorporationLOV\":{\"title\":\"CorporationLOV\",\"description\":\"Kurum tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Kurum adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/TeacherGraduationTekamulInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"corporation\": {\n \"createdBy\": \"irure anim aliqua pariatur sint\",\n \"createdDate\": \"1982-07-16T16:54:18.248Z\",\n \"id\": -53585060,\n \"name\": \"minim\"\n },\n \"createdBy\": \"magna ullamco \",\n \"createdDate\": \"1992-04-25T07:51:19.061Z\",\n \"employmentDate\": \"2012-01-08T02:54:56.448Z\",\n \"graduationDate\": \"2003-02-11T22:32:24.142Z\",\n \"lastModifiedBy\": \"ipsum reprehenderit adipisicing \",\n \"lastModifiedDate\": \"1944-01-02T08:51:30.113Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/TeacherGraduationTekamulInfoDTO\"}],\"definitions\":{\"TeacherGraduationTekamulInfoDTO\":{\"title\":\"TeacherGraduationTekamulInfoDTO\",\"description\":\"Mezun olunan tekamul bilgileri ve vazife başlangıc tarihini tutar.\",\"type\":\"object\",\"properties\":{\"corporation\":{\"$ref\":\"#/definitions/CorporationLOV\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"employmentDate\":{\"format\":\"date-time\",\"description\":\"Vazife baslangic tarihi\",\"type\":\"string\"},\"graduationDate\":{\"format\":\"date-time\",\"description\":\"Tekamul mezuniyet tarihi\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"CorporationLOV\":{\"title\":\"CorporationLOV\",\"description\":\"Kurum tanimini tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Kurum adi. Kullanıcının tercih ettiği translation diline göre verilir.\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/TeacherGraduationTekamulInfoDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz. " + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/teachers/{id}/tel-numbers" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Personelin tüm iletisim kategorine ait telefon numarası bilgilerini verir." + }, + "id": { + "element": "string", + "content": "getAllTeacherTelephoneNumbers" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Teacher ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Gets a list of all `ContactInfoDTO` entities of `Teacher`." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "List of all `ContactInfoDTO` entities of `Teacher`." + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactInfoDTO\"},\"definitions\":{\"ContactInfoDTO\":{\"title\":\"ContactInfoDTO\",\"description\":\"Iletisim bilgilerini sunmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Category of contact type. For example: Home address, Home telephone, Cell phone etc.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"contactInfo\":{\"description\":\"Telephone number or email address information depending on the type.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"ContactMediumCategoryLOV\":{\"title\":\"ContactMediumCategoryLOV\",\"description\":\"Contact medium kategorileri. Bir kategori tipine ait veriyi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Category Name\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/ContactInfoDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Personele yeni telefon numarası ekler" + }, + "id": { + "element": "string", + "content": "createTeacherTelephoneNumber" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Personel ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Personele yeni telefon numarası ekleme servisidir." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"categories\": [],\n \"contactInfo\": \"magna ipsum sunt sint cillum\",\n \"createdBy\": \"pariat\",\n \"createdDate\": \"1967-11-06T21:00:41.584Z\",\n \"lastModifiedBy\": \"consequat\",\n \"lastModifiedDate\": \"1998-10-16T04:39:30.599Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/ContactInfoDTO\"}],\"definitions\":{\"ContactInfoDTO\":{\"title\":\"ContactInfoDTO\",\"description\":\"Iletisim bilgilerini sunmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Category of contact type. For example: Home address, Home telephone, Cell phone etc.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"contactInfo\":{\"description\":\"Telephone number or email address information depending on the type.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"ContactMediumCategoryLOV\":{\"title\":\"ContactMediumCategoryLOV\",\"description\":\"Contact medium kategorileri. Bir kategori tipine ait veriyi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Category Name\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"categories\": [],\n \"contactInfo\": \"dolore nostrud reprehenderit ullamco et\",\n \"createdBy\": \"aliqua in sunt sed est\",\n \"createdDate\": \"2013-02-16T01:28:32.839Z\",\n \"lastModifiedBy\": \"irure anim\",\n \"lastModifiedDate\": \"1984-11-06T10:37:56.948Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/ContactInfoDTO\"}],\"definitions\":{\"ContactInfoDTO\":{\"title\":\"ContactInfoDTO\",\"description\":\"Iletisim bilgilerini sunmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Category of contact type. For example: Home address, Home telephone, Cell phone etc.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"contactInfo\":{\"description\":\"Telephone number or email address information depending on the type.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"ContactMediumCategoryLOV\":{\"title\":\"ContactMediumCategoryLOV\",\"description\":\"Contact medium kategorileri. Bir kategori tipine ait veriyi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Category Name\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"categories\": [],\n \"contactInfo\": \"sit al\",\n \"createdBy\": \"id ut esse commodo dolore\",\n \"createdDate\": \"1999-06-26T13:24:08.753Z\",\n \"lastModifiedBy\": \"incididunt amet et in\",\n \"lastModifiedDate\": \"1992-01-23T09:36:28.108Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"categories\": [],\n \"contactInfo\": \"pariatur\",\n \"createdBy\": \"in nostrud sed\",\n \"createdDate\": \"1963-08-04T17:14:40.269Z\",\n \"lastModifiedBy\": \"in dolore deserunt voluptate qui\",\n \"lastModifiedDate\": \"1969-09-15T17:44:01.998Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"categories\": [],\n \"contactInfo\": \"laboris elit esse ex\",\n \"createdBy\": \"exercitation\",\n \"createdDate\": \"1953-03-08T01:50:30.127Z\",\n \"lastModifiedBy\": \"dolor\",\n \"lastModifiedDate\": \"1961-08-08T23:02:14.417Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"categories\": [],\n \"contactInfo\": \"eu Ut est labore dolore\",\n \"createdBy\": \"amet dolor occaecat\",\n \"createdDate\": \"1976-10-20T23:43:48.618Z\",\n \"lastModifiedBy\": \"nostrud pariatur ex dolore esse\",\n \"lastModifiedDate\": \"1997-09-27T20:03:17.639Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"categories\": [],\n \"contactInfo\": \"in eu et sit id\",\n \"createdBy\": \"qui est voluptate ex\",\n \"createdDate\": \"1995-11-21T15:49:11.797Z\",\n \"lastModifiedBy\": \"aute incididunt\",\n \"lastModifiedDate\": \"1960-03-10T13:58:07.309Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz. " + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/teachers/{id}/tel-numbers/{contactId}" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Personele ait belirtilen telefon numarasını günceller" + }, + "id": { + "element": "string", + "content": "updateTeacherTelephoneNumber" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Telephone contact id" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "contactId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Personel ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Personele ait telefon numarası bilgilerinin güncellendiği servistir. `ContactInfoCreateDTO` objesi kullanılarak güncelleme yapılır. Bu servis ile default olarak telefon numaraları update edilir." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"categories\": [],\n \"contactInfo\": \"velit\",\n \"createdBy\": \"in ex aute\",\n \"createdDate\": \"2000-02-27T02:22:06.327Z\",\n \"lastModifiedBy\": \"veniam ipsum qui\",\n \"lastModifiedDate\": \"1959-09-05T09:01:36.560Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/ContactInfoDTO\"}],\"definitions\":{\"ContactInfoDTO\":{\"title\":\"ContactInfoDTO\",\"description\":\"Iletisim bilgilerini sunmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Category of contact type. For example: Home address, Home telephone, Cell phone etc.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"contactInfo\":{\"description\":\"Telephone number or email address information depending on the type.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"ContactMediumCategoryLOV\":{\"title\":\"ContactMediumCategoryLOV\",\"description\":\"Contact medium kategorileri. Bir kategori tipine ait veriyi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Category Name\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"categories\": [],\n \"contactInfo\": \"nostrud pariatur ut cupidatat ut\",\n \"createdBy\": \"dolore commodo sit exercitation\",\n \"createdDate\": \"1991-03-28T13:16:39.645Z\",\n \"lastModifiedBy\": \"aliqua incididunt laborum\",\n \"lastModifiedDate\": \"1946-01-19T16:31:54.394Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"categories\": [],\n \"contactInfo\": \"id\",\n \"createdBy\": \"Lorem nisi anim officia\",\n \"createdDate\": \"2008-05-09T09:16:29.076Z\",\n \"lastModifiedBy\": \"sed consequat aliqua\",\n \"lastModifiedDate\": \"2006-10-15T10:45:46.595Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "202" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/ContactInfoDTO\"}],\"definitions\":{\"ContactInfoDTO\":{\"title\":\"ContactInfoDTO\",\"description\":\"Iletisim bilgilerini sunmak için kullanılır.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Category of contact type. For example: Home address, Home telephone, Cell phone etc.\",\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/ContactMediumCategoryLOV\"}},\"contactInfo\":{\"description\":\"Telephone number or email address information depending on the type.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}},\"ContactMediumCategoryLOV\":{\"title\":\"ContactMediumCategoryLOV\",\"description\":\"Contact medium kategorileri. Bir kategori tipine ait veriyi tutar.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"name\":{\"description\":\"Category Name\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"categories\": [],\n \"contactInfo\": \"dolore elit Ut reprehenderit amet\",\n \"createdBy\": \"cillum\",\n \"createdDate\": \"1943-10-17T14:11:41.902Z\",\n \"lastModifiedBy\": \"quis\",\n \"lastModifiedDate\": \"1954-11-14T04:55:20.154Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"categories\": [],\n \"contactInfo\": \"in dolor sunt dolore\",\n \"createdBy\": \"Ut\",\n \"createdDate\": \"1994-02-24T14:48:19.663Z\",\n \"lastModifiedBy\": \"sed nulla\",\n \"lastModifiedDate\": \"1975-01-22T14:19:54.156Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"categories\": [],\n \"contactInfo\": \"nisi\",\n \"createdBy\": \"aute\",\n \"createdDate\": \"1982-07-23T02:19:43.192Z\",\n \"lastModifiedBy\": \"mollit voluptate in aliqua\",\n \"lastModifiedDate\": \"1946-07-24T10:44:39.507Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"categories\": [],\n \"contactInfo\": \"qui voluptate quis\",\n \"createdBy\": \"anim dolor\",\n \"createdDate\": \"1945-10-01T20:24:13.406Z\",\n \"lastModifiedBy\": \"nisi\",\n \"lastModifiedDate\": \"1965-04-27T00:19:02.908Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"categories\": [],\n \"contactInfo\": \"in labore\",\n \"createdBy\": \"amet\",\n \"createdDate\": \"1941-09-27T15:53:07.594Z\",\n \"lastModifiedBy\": \"Duis et laborum in\",\n \"lastModifiedDate\": \"1959-01-03T11:05:14.457Z\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"ContactInfoCreateDTO\",\"description\":\"Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur.\",\"type\":\"object\",\"properties\":{\"categories\":{\"description\":\"Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası \",\"type\":\"array\",\"items\":{\"format\":\"int64\",\"type\":\"integer\"}},\"contactInfo\":{\"description\":\"Iletisim bilgisi. Telefon, email vb.\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/ContactInfoCreateDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz. " + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Personelin belirtilen telefon numarasını siler" + }, + "id": { + "element": "string", + "content": "deleteTeacherTelephoneNumber" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Telephone contact id" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "contactId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Personel ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Personelin belirtilen telefon numarasını siler" + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "204" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz. " + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Teacher ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + }, + "href": { + "element": "string", + "content": "/api/sbt/teachers/{id}/documents" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Teachers TeacherDocument list" + }, + "id": { + "element": "string", + "content": "getAllTeacherDocuments" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Teacher ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Gets a list of all `DocumentDTO` entities of `Teacher`." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "List of all `DocumentDTO` entities of `Teacher`." + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/DocumentDTO\"},\"definitions\":{\"DocumentDTO\":{\"title\":\"DocumentDTO\",\"description\":\"Evrağın bilgilerini tutar. Kişi veya kuruma ait evrak bilgileridir.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Aciklama\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"type\":{\"$ref\":\"#/definitions/DocumentTypeLOV\"},\"validityEndDate\":{\"format\":\"date-time\",\"description\":\"Gecerlilik suresi bitis tarihi\",\"type\":\"string\"},\"validityStartDate\":{\"format\":\"date-time\",\"description\":\"Gecerlilik suresi baslangic tarihi\",\"type\":\"string\"}}},\"DocumentTypeLOV\":{\"title\":\"DocumentTypeLOV\",\"description\":\"Dökümanların tiplerinin tutulduğu yerdir. Örneğin : Transkript, öğrenci belgesi, ehliyet fotokopisi, İskan, KatPlanı, Ruhsat, Resim, Vergi levhası vs.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/DocumentDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz." + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Personele ait bir döküman ekler" + }, + "id": { + "element": "string", + "content": "createTeacherDocument" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Teacher ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Personele ait dokumanlari eklemek icin kullanilacak olan servistir." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + }, + "content": "--BOUNDARY\r\nContent-Disposition: form-data; name=\"documentTypeId\"\r\n\r\n14627699\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"validityEndDate\"\r\n\r\ndolore mollit\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"validityStartDate\"\r\n\r\nculpa anim\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"document\"\r\n\r\nsed ad deserunt c\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"description\"\r\n\r\nelit ex anim\r\n\r\n--BOUNDARY--\r\n" + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman açıklaması" + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman tipi. Ikametgah, öğrenci belgesi vb." + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "documentTypeId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman geçerlilik süresi bitişi" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityEndDate" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman geçerlilik süresi başlangıcı" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityStartDate" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Yeni eklenen döküman dosyası" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "document" + }, + "value": { + "element": "string" + } + } + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/DocumentDTO\"}],\"definitions\":{\"DocumentDTO\":{\"title\":\"DocumentDTO\",\"description\":\"Evrağın bilgilerini tutar. Kişi veya kuruma ait evrak bilgileridir.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Aciklama\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"type\":{\"$ref\":\"#/definitions/DocumentTypeLOV\"},\"validityEndDate\":{\"format\":\"date-time\",\"description\":\"Gecerlilik suresi bitis tarihi\",\"type\":\"string\"},\"validityStartDate\":{\"format\":\"date-time\",\"description\":\"Gecerlilik suresi baslangic tarihi\",\"type\":\"string\"}}},\"DocumentTypeLOV\":{\"title\":\"DocumentTypeLOV\",\"description\":\"Dökümanların tiplerinin tutulduğu yerdir. Örneğin : Transkript, öğrenci belgesi, ehliyet fotokopisi, İskan, KatPlanı, Ruhsat, Resim, Vergi levhası vs.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/DocumentDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + }, + "content": "--BOUNDARY\r\nContent-Disposition: form-data; name=\"documentTypeId\"\r\n\r\n-77973817\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"validityEndDate\"\r\n\r\nofficia\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"validityStartDate\"\r\n\r\nullamco\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"document\"\r\n\r\nullamco incididunt\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"description\"\r\n\r\nvoluptate laborum ullamco proident\r\n\r\n--BOUNDARY--\r\n" + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman açıklaması" + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman tipi. Ikametgah, öğrenci belgesi vb." + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "documentTypeId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman geçerlilik süresi bitişi" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityEndDate" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman geçerlilik süresi başlangıcı" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityStartDate" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Yeni eklenen döküman dosyası" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "document" + }, + "value": { + "element": "string" + } + } + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + }, + "content": "--BOUNDARY\r\nContent-Disposition: form-data; name=\"documentTypeId\"\r\n\r\n22495606\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"validityEndDate\"\r\n\r\nproident dolore enim ut\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"validityStartDate\"\r\n\r\nadipisicing ut aliquip exercitation Excepte\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"document\"\r\n\r\ndolore in incididunt\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"description\"\r\n\r\nanim\r\n\r\n--BOUNDARY--\r\n" + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman açıklaması" + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman tipi. Ikametgah, öğrenci belgesi vb." + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "documentTypeId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman geçerlilik süresi bitişi" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityEndDate" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman geçerlilik süresi başlangıcı" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityStartDate" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Yeni eklenen döküman dosyası" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "document" + }, + "value": { + "element": "string" + } + } + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + }, + "content": "--BOUNDARY\r\nContent-Disposition: form-data; name=\"documentTypeId\"\r\n\r\n44407389\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"validityEndDate\"\r\n\r\nqui\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"validityStartDate\"\r\n\r\nconsequat quis ex adipisicing officia\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"document\"\r\n\r\nLorem reprehenderit aliqua sunt mollit\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"description\"\r\n\r\nLorem do voluptate nostrud consectetur\r\n\r\n--BOUNDARY--\r\n" + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman açıklaması" + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman tipi. Ikametgah, öğrenci belgesi vb." + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "documentTypeId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman geçerlilik süresi bitişi" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityEndDate" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman geçerlilik süresi başlangıcı" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityStartDate" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Yeni eklenen döküman dosyası" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "document" + }, + "value": { + "element": "string" + } + } + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + }, + "content": "--BOUNDARY\r\nContent-Disposition: form-data; name=\"documentTypeId\"\r\n\r\n-974210\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"validityEndDate\"\r\n\r\nconsequat incididunt dolore cupidatat\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"validityStartDate\"\r\n\r\nsint aliquip eu labore occaecat\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"document\"\r\n\r\npariatur eu laboris sed\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"description\"\r\n\r\nut consequat cupidatat aliquip\r\n\r\n--BOUNDARY--\r\n" + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman açıklaması" + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman tipi. Ikametgah, öğrenci belgesi vb." + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "documentTypeId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman geçerlilik süresi bitişi" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityEndDate" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman geçerlilik süresi başlangıcı" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityStartDate" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Yeni eklenen döküman dosyası" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "document" + }, + "value": { + "element": "string" + } + } + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + }, + "content": "--BOUNDARY\r\nContent-Disposition: form-data; name=\"documentTypeId\"\r\n\r\n84340346\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"validityEndDate\"\r\n\r\nvelit nisi cupidatat\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"validityStartDate\"\r\n\r\nenim nisi do aliquip\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"document\"\r\n\r\nveniam non consectetur\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"description\"\r\n\r\nmollit incididunt in voluptate pariatur\r\n\r\n--BOUNDARY--\r\n" + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman açıklaması" + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman tipi. Ikametgah, öğrenci belgesi vb." + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "documentTypeId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman geçerlilik süresi bitişi" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityEndDate" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman geçerlilik süresi başlangıcı" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityStartDate" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Yeni eklenen döküman dosyası" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "document" + }, + "value": { + "element": "string" + } + } + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz. " + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Teacher ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Document ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "documentId" + }, + "value": { + "element": "number" + } + } + } + ] + }, + "href": { + "element": "string", + "content": "/api/sbt/teachers/{id}/documents/{documentId}" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Personel döküman bilgisi güncelleme" + }, + "id": { + "element": "string", + "content": "updateTeacherDocument" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Document ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "documentId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Personel ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Personele ait dokümanları güncellemek için kullanılır. Dokümanın içeriği güncellenmez. Dokümana ait, açıklama ve tarih bilgileri güncellenebilir." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + }, + "content": "--BOUNDARY\r\nContent-Disposition: form-data; name=\"documentTypeId\"\r\n\r\n32091536\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"validityEndDate\"\r\n\r\nreprehenderi\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"validityStartDate\"\r\n\r\nanim ullamco pariatur elit ut\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"document\"\r\n\r\nadipisicing Ut\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"description\"\r\n\r\nsunt consequat quis labor\r\n\r\n--BOUNDARY--\r\n" + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman açıklaması" + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman tipi. Ikametgah, öğrenci belgesi vb." + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "documentTypeId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman geçerlilik süresi bitişi" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityEndDate" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman geçerlilik süresi başlangıcı" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityStartDate" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Yeni eklenen döküman dosyası" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "document" + }, + "value": { + "element": "string" + } + } + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/DocumentDTO\"}],\"definitions\":{\"DocumentDTO\":{\"title\":\"DocumentDTO\",\"description\":\"Evrağın bilgilerini tutar. Kişi veya kuruma ait evrak bilgileridir.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Aciklama\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"type\":{\"$ref\":\"#/definitions/DocumentTypeLOV\"},\"validityEndDate\":{\"format\":\"date-time\",\"description\":\"Gecerlilik suresi bitis tarihi\",\"type\":\"string\"},\"validityStartDate\":{\"format\":\"date-time\",\"description\":\"Gecerlilik suresi baslangic tarihi\",\"type\":\"string\"}}},\"DocumentTypeLOV\":{\"title\":\"DocumentTypeLOV\",\"description\":\"Dökümanların tiplerinin tutulduğu yerdir. Örneğin : Transkript, öğrenci belgesi, ehliyet fotokopisi, İskan, KatPlanı, Ruhsat, Resim, Vergi levhası vs.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/DocumentDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + }, + "content": "--BOUNDARY\r\nContent-Disposition: form-data; name=\"documentTypeId\"\r\n\r\n-48282420\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"validityEndDate\"\r\n\r\nipsum exercitation\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"validityStartDate\"\r\n\r\nlabore mollit\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"document\"\r\n\r\nexercitation\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"description\"\r\n\r\nid irure\r\n\r\n--BOUNDARY--\r\n" + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman açıklaması" + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman tipi. Ikametgah, öğrenci belgesi vb." + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "documentTypeId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman geçerlilik süresi bitişi" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityEndDate" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman geçerlilik süresi başlangıcı" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityStartDate" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Yeni eklenen döküman dosyası" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "document" + }, + "value": { + "element": "string" + } + } + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + }, + "content": "--BOUNDARY\r\nContent-Disposition: form-data; name=\"documentTypeId\"\r\n\r\n5049335\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"validityEndDate\"\r\n\r\namet elit Lorem aute\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"validityStartDate\"\r\n\r\nlabore\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"document\"\r\n\r\nea\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"description\"\r\n\r\nexercitation\r\n\r\n--BOUNDARY--\r\n" + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman açıklaması" + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman tipi. Ikametgah, öğrenci belgesi vb." + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "documentTypeId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman geçerlilik süresi bitişi" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityEndDate" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman geçerlilik süresi başlangıcı" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityStartDate" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Yeni eklenen döküman dosyası" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "document" + }, + "value": { + "element": "string" + } + } + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "202" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/DocumentDTO\"}],\"definitions\":{\"DocumentDTO\":{\"title\":\"DocumentDTO\",\"description\":\"Evrağın bilgilerini tutar. Kişi veya kuruma ait evrak bilgileridir.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"Aciklama\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"type\":{\"$ref\":\"#/definitions/DocumentTypeLOV\"},\"validityEndDate\":{\"format\":\"date-time\",\"description\":\"Gecerlilik suresi bitis tarihi\",\"type\":\"string\"},\"validityStartDate\":{\"format\":\"date-time\",\"description\":\"Gecerlilik suresi baslangic tarihi\",\"type\":\"string\"}}},\"DocumentTypeLOV\":{\"title\":\"DocumentTypeLOV\",\"description\":\"Dökümanların tiplerinin tutulduğu yerdir. Örneğin : Transkript, öğrenci belgesi, ehliyet fotokopisi, İskan, KatPlanı, Ruhsat, Resim, Vergi levhası vs.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"Adi\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/DocumentDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + }, + "content": "--BOUNDARY\r\nContent-Disposition: form-data; name=\"documentTypeId\"\r\n\r\n-83740231\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"validityEndDate\"\r\n\r\nproident commodo est cupidatat aliqua\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"validityStartDate\"\r\n\r\nproident ut nostrud dolore\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"document\"\r\n\r\nveniam\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"description\"\r\n\r\nlaboris\r\n\r\n--BOUNDARY--\r\n" + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman açıklaması" + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman tipi. Ikametgah, öğrenci belgesi vb." + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "documentTypeId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman geçerlilik süresi bitişi" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityEndDate" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman geçerlilik süresi başlangıcı" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityStartDate" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Yeni eklenen döküman dosyası" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "document" + }, + "value": { + "element": "string" + } + } + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + }, + "content": "--BOUNDARY\r\nContent-Disposition: form-data; name=\"documentTypeId\"\r\n\r\n8501216\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"validityEndDate\"\r\n\r\nin do qui ex id\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"validityStartDate\"\r\n\r\nproident sunt consequat nostrud ad\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"document\"\r\n\r\nUt occaecat id Lorem voluptate\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"description\"\r\n\r\nconsectetur Excepteur pariatur\r\n\r\n--BOUNDARY--\r\n" + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman açıklaması" + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman tipi. Ikametgah, öğrenci belgesi vb." + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "documentTypeId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman geçerlilik süresi bitişi" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityEndDate" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman geçerlilik süresi başlangıcı" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityStartDate" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Yeni eklenen döküman dosyası" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "document" + }, + "value": { + "element": "string" + } + } + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + }, + "content": "--BOUNDARY\r\nContent-Disposition: form-data; name=\"documentTypeId\"\r\n\r\n12439988\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"validityEndDate\"\r\n\r\nad laborum eiusmod sint\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"validityStartDate\"\r\n\r\nco\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"document\"\r\n\r\nut proident Lorem\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"description\"\r\n\r\nin\r\n\r\n--BOUNDARY--\r\n" + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman açıklaması" + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman tipi. Ikametgah, öğrenci belgesi vb." + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "documentTypeId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman geçerlilik süresi bitişi" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityEndDate" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman geçerlilik süresi başlangıcı" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityStartDate" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Yeni eklenen döküman dosyası" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "document" + }, + "value": { + "element": "string" + } + } + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + }, + "content": "--BOUNDARY\r\nContent-Disposition: form-data; name=\"documentTypeId\"\r\n\r\n69376119\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"validityEndDate\"\r\n\r\nconsequat\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"validityStartDate\"\r\n\r\nmagna minim\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"document\"\r\n\r\nlaborum esse dolore magna veniam\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"description\"\r\n\r\nlaboris eu\r\n\r\n--BOUNDARY--\r\n" + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman açıklaması" + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman tipi. Ikametgah, öğrenci belgesi vb." + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "documentTypeId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman geçerlilik süresi bitişi" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityEndDate" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman geçerlilik süresi başlangıcı" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityStartDate" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Yeni eklenen döküman dosyası" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "document" + }, + "value": { + "element": "string" + } + } + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + }, + "content": "--BOUNDARY\r\nContent-Disposition: form-data; name=\"documentTypeId\"\r\n\r\n30193586\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"validityEndDate\"\r\n\r\nminim ut in\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"validityStartDate\"\r\n\r\nveniam sunt\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"document\"\r\n\r\nproident dolore\r\n--BOUNDARY\r\nContent-Disposition: form-data; name=\"description\"\r\n\r\ntempor\r\n\r\n--BOUNDARY--\r\n" + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman açıklaması" + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman tipi. Ikametgah, öğrenci belgesi vb." + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "documentTypeId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman geçerlilik süresi bitişi" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityEndDate" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Döküman geçerlilik süresi başlangıcı" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityStartDate" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Yeni eklenen döküman dosyası" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "document" + }, + "value": { + "element": "string" + } + } + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz. " + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Personele ait bir dökümanı siler" + }, + "id": { + "element": "string", + "content": "deleteTeacherDocument" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Document ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "documentId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Personel ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Personele ait döküman silmek icin kullanılacak olan servistir." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "204" + } + }, + "content": [ + { + "element": "copy", + "content": "Başarılı" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz. " + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Teacher ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Document ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "documentId" + }, + "value": { + "element": "number" + } + } + } + ] + }, + "href": { + "element": "string", + "content": "/api/sbt/teachers/{id}/documents/{documentId}/content" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Personele ait döküman içeriğini verir" + }, + "id": { + "element": "string", + "content": "getTeacherDocumentContent" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Document ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "documentId" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Personel ID" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Personele ait dökümanın içeriğini göstermek için kullanılacak olan servistir." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "Document Content. //TODO : response type belirlenmeli." + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"allOf\":[{\"$ref\":\"#/definitions/Resource\"}],\"definitions\":{\"Resource\":{\"title\":\"Resource\",\"type\":\"object\",\"properties\":{\"description\":{\"type\":\"string\"},\"file\":{\"$ref\":\"#/definitions/File\"},\"filename\":{\"type\":\"string\"},\"inputStream\":{\"$ref\":\"#/definitions/InputStream\"},\"open\":{\"type\":\"boolean\"},\"readable\":{\"type\":\"boolean\"},\"uri\":{\"$ref\":\"#/definitions/URI\"},\"url\":{\"$ref\":\"#/definitions/URL\"}}},\"URL\":{\"title\":\"URL\",\"type\":\"object\",\"properties\":{\"authority\":{\"type\":\"string\"},\"content\":{\"type\":\"object\"},\"defaultPort\":{\"format\":\"int32\",\"type\":\"integer\"},\"file\":{\"type\":\"string\"},\"host\":{\"type\":\"string\"},\"path\":{\"type\":\"string\"},\"port\":{\"format\":\"int32\",\"type\":\"integer\"},\"protocol\":{\"type\":\"string\"},\"query\":{\"type\":\"string\"},\"ref\":{\"type\":\"string\"},\"userInfo\":{\"type\":\"string\"}}},\"URI\":{\"title\":\"URI\",\"type\":\"object\",\"properties\":{\"absolute\":{\"type\":\"boolean\"},\"authority\":{\"type\":\"string\"},\"fragment\":{\"type\":\"string\"},\"host\":{\"type\":\"string\"},\"opaque\":{\"type\":\"boolean\"},\"path\":{\"type\":\"string\"},\"port\":{\"format\":\"int32\",\"type\":\"integer\"},\"query\":{\"type\":\"string\"},\"rawAuthority\":{\"type\":\"string\"},\"rawFragment\":{\"type\":\"string\"},\"rawPath\":{\"type\":\"string\"},\"rawQuery\":{\"type\":\"string\"},\"rawSchemeSpecificPart\":{\"type\":\"string\"},\"rawUserInfo\":{\"type\":\"string\"},\"scheme\":{\"type\":\"string\"},\"schemeSpecificPart\":{\"type\":\"string\"},\"userInfo\":{\"type\":\"string\"}}},\"InputStream\":{\"title\":\"InputStream\",\"type\":\"object\"},\"File\":{\"title\":\"File\",\"type\":\"object\",\"properties\":{\"absolute\":{\"type\":\"boolean\"},\"absoluteFile\":{\"$ref\":\"#/definitions/File\"},\"absolutePath\":{\"type\":\"string\"},\"canonicalFile\":{\"$ref\":\"#/definitions/File\"},\"canonicalPath\":{\"type\":\"string\"},\"directory\":{\"type\":\"boolean\"},\"file\":{\"type\":\"boolean\"},\"freeSpace\":{\"format\":\"int64\",\"type\":\"integer\"},\"hidden\":{\"type\":\"boolean\"},\"name\":{\"type\":\"string\"},\"parent\":{\"type\":\"string\"},\"parentFile\":{\"$ref\":\"#/definitions/File\"},\"path\":{\"type\":\"string\"},\"totalSpace\":{\"format\":\"int64\",\"type\":\"integer\"},\"usableSpace\":{\"format\":\"int64\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/Resource" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz. " + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/teachers/{id}/picture/" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Personelin Resim bilgisini görüntülemek için kullanılır." + }, + "id": { + "element": "string", + "content": "getTeacherPicture" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "A unique identifier for a `PersonPictureDTO`." + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Gets the details of a single instance of a `PersonPictureDTO`." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "Successful response - returns a single `PersonPictureDTO`." + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"PersonPictureDTO\",\"description\":\"Öğrenci, veli, öğretmen, ihvan a ait vesikalık resimlerinin tutulduğu modeldir.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"url\":{\"description\":\"Picture url\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/PersonPictureDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz." + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Personelin resim bilgisini günceller. Eğer daha önce eklenmiş bir resmi yoksa yenisini ekler ve eskisini siler." + }, + "id": { + "element": "string", + "content": "updateTeacherPicture" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "A unique identifier for a `PersonPictureDTO`." + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Updates a PersonPictureDTO of a Teacher" + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + }, + "content": "--BOUNDARY\r\nContent-Disposition: form-data; name=\"picture\"\r\n\r\ncup\r\n\r\n--BOUNDARY--\r\n" + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Profil Resmi" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "picture" + }, + "value": { + "element": "string" + } + } + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"PersonPictureDTO\",\"description\":\"Öğrenci, veli, öğretmen, ihvan a ait vesikalık resimlerinin tutulduğu modeldir.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"url\":{\"description\":\"Picture url\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/PersonPictureDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + }, + "content": "--BOUNDARY\r\nContent-Disposition: form-data; name=\"picture\"\r\n\r\nest cillum dolor sed\r\n\r\n--BOUNDARY--\r\n" + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Profil Resmi" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "picture" + }, + "value": { + "element": "string" + } + } + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + }, + "content": "--BOUNDARY\r\nContent-Disposition: form-data; name=\"picture\"\r\n\r\nanim adipisicing aliquip\r\n\r\n--BOUNDARY--\r\n" + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Profil Resmi" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "picture" + }, + "value": { + "element": "string" + } + } + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "202" + } + }, + "content": [ + { + "element": "copy", + "content": "Student Profile Picture Updated" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"PersonPictureDTO\",\"description\":\"Öğrenci, veli, öğretmen, ihvan a ait vesikalık resimlerinin tutulduğu modeldir.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"Unique ID\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"url\":{\"description\":\"Picture url\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/PersonPictureDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + }, + "content": "--BOUNDARY\r\nContent-Disposition: form-data; name=\"picture\"\r\n\r\nut nostrud eiusmod culpa dolore\r\n\r\n--BOUNDARY--\r\n" + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Profil Resmi" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "picture" + }, + "value": { + "element": "string" + } + } + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz Giriş" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + }, + "content": "--BOUNDARY\r\nContent-Disposition: form-data; name=\"picture\"\r\n\r\nmollit reprehe\r\n\r\n--BOUNDARY--\r\n" + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Profil Resmi" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "picture" + }, + "value": { + "element": "string" + } + } + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Yetkisiz erişim" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + }, + "content": "--BOUNDARY\r\nContent-Disposition: form-data; name=\"picture\"\r\n\r\nexercitation sit in officia\r\n\r\n--BOUNDARY--\r\n" + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Profil Resmi" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "picture" + }, + "value": { + "element": "string" + } + } + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "İstek yapılan servis bulunamadı." + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + }, + "content": "--BOUNDARY\r\nContent-Disposition: form-data; name=\"picture\"\r\n\r\nest\r\n\r\n--BOUNDARY--\r\n" + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Profil Resmi" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "picture" + }, + "value": { + "element": "string" + } + } + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "417" + } + }, + "content": [ + { + "element": "copy", + "content": "Expectation Failed" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "multipart/form-data; boundary=BOUNDARY" + } + }, + "content": "--BOUNDARY\r\nContent-Disposition: form-data; name=\"picture\"\r\n\r\nu\r\n\r\n--BOUNDARY--\r\n" + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Profil Resmi" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "picture" + }, + "value": { + "element": "string" + } + } + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "500" + } + }, + "content": [ + { + "element": "copy", + "content": "İşlem sırasında bir hata oluştu. Tekrar deneyebilir ve destek ekibimizle iletişime geçebilirsiniz. " + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/sbt/teachers/list/excel" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "Talebe Listesini excel'e almak için kullanılır." + }, + "id": { + "element": "string", + "content": "getAllStudentListExcel" + } + }, + "content": [ + { + "element": "copy", + "content": "Talebe Listesini excel'e almak için kullanılır." + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "İndirilecek Data" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"string\"}" + }, + { + "element": "dataStructure", + "content": { + "element": "string" + } + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "category", + "meta": { + "title": { + "element": "string", + "content": "secret-key-type-resource" + }, + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "resourceGroup" + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Secret Key Type Resource" + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/secret-key-types" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getAllSecretKeyTypes" + }, + "id": { + "element": "string", + "content": "getAllSecretKeyTypesUsingGET" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/secret-key-types{?description%2econtains,description%2eequals,description%2ein*,description%2especified,id%2eequals,id%2egreaterOrEqualThan,id%2egreaterThan,id%2ein*,id%2elessOrEqualThan,id%2elessThan,id%2especified,name%2econtains,name%2eequals,name%2ein*,name%2especified,page,size,sort*,status%2eequals,status%2ein*,status%2especified}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Page number of the requested page" + } + }, + "content": { + "key": { + "element": "string", + "content": "page" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Size of a page" + } + }, + "content": { + "key": { + "element": "string", + "content": "size" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported." + } + }, + "content": { + "key": { + "element": "string", + "content": "sort" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status.equals" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "boolean" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status.specified" + }, + "value": { + "element": "boolean" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/SecretKeyTypeDTO\"},\"definitions\":{\"SecretKeyTypeDTO\":{\"title\":\"SecretKeyTypeDTO\",\"description\":\"Uygulama uzerinde olsturulabilecek ikincil sifrelerin(login, vb..) tiplerinin belirlendigi yerdir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"adi\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"status\":{\"description\":\"aktiflik bilgisi\",\"type\":\"boolean\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/SecretKeyTypeDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "updateSecretKeyType" + }, + "id": { + "element": "string", + "content": "updateSecretKeyTypeUsingPUT" + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"name\": \"adipisicing elit enim Duis id\",\n \"createdBy\": \"eu velit do ut exercitation\",\n \"createdDate\": \"1948-01-15T13:47:48.660Z\",\n \"description\": \"nisi in do\",\n \"id\": -47354375,\n \"lastModifiedBy\": \"quis e\",\n \"lastModifiedDate\": \"1998-08-22T08:35:18.024Z\",\n \"status\": true\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"SecretKeyTypeDTO\",\"description\":\"Uygulama uzerinde olsturulabilecek ikincil sifrelerin(login, vb..) tiplerinin belirlendigi yerdir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"adi\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"status\":{\"description\":\"aktiflik bilgisi\",\"type\":\"boolean\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/SecretKeyTypeDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"SecretKeyTypeDTO\",\"description\":\"Uygulama uzerinde olsturulabilecek ikincil sifrelerin(login, vb..) tiplerinin belirlendigi yerdir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"adi\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"status\":{\"description\":\"aktiflik bilgisi\",\"type\":\"boolean\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/SecretKeyTypeDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"name\": \"non elit nisi\",\n \"createdBy\": \"dolore\",\n \"createdDate\": \"1980-07-16T20:42:39.087Z\",\n \"description\": \"eu est culpa id\",\n \"id\": 62729842,\n \"lastModifiedBy\": \"ad Lorem sunt consequa\",\n \"lastModifiedDate\": \"2009-02-11T05:37:40.542Z\",\n \"status\": false\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"SecretKeyTypeDTO\",\"description\":\"Uygulama uzerinde olsturulabilecek ikincil sifrelerin(login, vb..) tiplerinin belirlendigi yerdir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"adi\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"status\":{\"description\":\"aktiflik bilgisi\",\"type\":\"boolean\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/SecretKeyTypeDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"name\": \"esse ex fugiat\",\n \"createdBy\": \"nisi ad sint elit\",\n \"createdDate\": \"1947-02-14T11:28:22.900Z\",\n \"description\": \"voluptate consequat occaecat sint ullamco\",\n \"id\": -72718451,\n \"lastModifiedBy\": \"cupidatat\",\n \"lastModifiedDate\": \"1975-06-04T03:47:46.599Z\",\n \"status\": true\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"SecretKeyTypeDTO\",\"description\":\"Uygulama uzerinde olsturulabilecek ikincil sifrelerin(login, vb..) tiplerinin belirlendigi yerdir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"adi\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"status\":{\"description\":\"aktiflik bilgisi\",\"type\":\"boolean\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/SecretKeyTypeDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"name\": \"ut elit\",\n \"createdBy\": \"proident aute\",\n \"createdDate\": \"1976-09-24T00:19:13.527Z\",\n \"description\": \"dolor aute non sit\",\n \"id\": 38135037,\n \"lastModifiedBy\": \"sit voluptate laborum velit paria\",\n \"lastModifiedDate\": \"1974-11-03T03:39:49.699Z\",\n \"status\": true\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"SecretKeyTypeDTO\",\"description\":\"Uygulama uzerinde olsturulabilecek ikincil sifrelerin(login, vb..) tiplerinin belirlendigi yerdir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"adi\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"status\":{\"description\":\"aktiflik bilgisi\",\"type\":\"boolean\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/SecretKeyTypeDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"name\": \"quis\",\n \"createdBy\": \"dolore ut in ullamco\",\n \"createdDate\": \"1986-01-29T19:30:42.112Z\",\n \"description\": \"nulla\",\n \"id\": -6125598,\n \"lastModifiedBy\": \"sunt mollit minim reprehenderit officia\",\n \"lastModifiedDate\": \"1980-08-22T22:03:33.809Z\",\n \"status\": false\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"SecretKeyTypeDTO\",\"description\":\"Uygulama uzerinde olsturulabilecek ikincil sifrelerin(login, vb..) tiplerinin belirlendigi yerdir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"adi\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"status\":{\"description\":\"aktiflik bilgisi\",\"type\":\"boolean\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/SecretKeyTypeDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "createSecretKeyType" + }, + "id": { + "element": "string", + "content": "createSecretKeyTypeUsingPOST" + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"name\": \"do aliqua\",\n \"createdBy\": \"culpa Excepteur cupidatat magna\",\n \"createdDate\": \"1973-07-29T22:25:39.268Z\",\n \"description\": \"consequat deserunt labore ex sunt\",\n \"id\": 92726156,\n \"lastModifiedBy\": \"quis exercitation elit\",\n \"lastModifiedDate\": \"2011-03-17T07:16:01.019Z\",\n \"status\": true\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"SecretKeyTypeDTO\",\"description\":\"Uygulama uzerinde olsturulabilecek ikincil sifrelerin(login, vb..) tiplerinin belirlendigi yerdir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"adi\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"status\":{\"description\":\"aktiflik bilgisi\",\"type\":\"boolean\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/SecretKeyTypeDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"SecretKeyTypeDTO\",\"description\":\"Uygulama uzerinde olsturulabilecek ikincil sifrelerin(login, vb..) tiplerinin belirlendigi yerdir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"adi\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"status\":{\"description\":\"aktiflik bilgisi\",\"type\":\"boolean\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/SecretKeyTypeDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"name\": \"ut adipisicing esse sed\",\n \"createdBy\": \"id pariatur est ea dolor\",\n \"createdDate\": \"1984-12-07T17:24:14.912Z\",\n \"description\": \"sint in aute tempor cillum\",\n \"id\": -76697279,\n \"lastModifiedBy\": \"ullamco\",\n \"lastModifiedDate\": \"2018-07-12T21:56:50.425Z\",\n \"status\": false\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"SecretKeyTypeDTO\",\"description\":\"Uygulama uzerinde olsturulabilecek ikincil sifrelerin(login, vb..) tiplerinin belirlendigi yerdir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"adi\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"status\":{\"description\":\"aktiflik bilgisi\",\"type\":\"boolean\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/SecretKeyTypeDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"name\": \"Duis es\",\n \"createdBy\": \"Ut officia fu\",\n \"createdDate\": \"2000-05-03T23:01:48.199Z\",\n \"description\": \"nisi\",\n \"id\": 76562070,\n \"lastModifiedBy\": \"Ut deserunt Lorem amet reprehenderit\",\n \"lastModifiedDate\": \"2000-11-14T08:53:03.541Z\",\n \"status\": false\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"SecretKeyTypeDTO\",\"description\":\"Uygulama uzerinde olsturulabilecek ikincil sifrelerin(login, vb..) tiplerinin belirlendigi yerdir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"adi\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"status\":{\"description\":\"aktiflik bilgisi\",\"type\":\"boolean\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/SecretKeyTypeDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"name\": \"laboris\",\n \"createdBy\": \"commodo\",\n \"createdDate\": \"2015-04-18T12:50:51.122Z\",\n \"description\": \"Lorem irure sit ea sint\",\n \"id\": 35480387,\n \"lastModifiedBy\": \"sint\",\n \"lastModifiedDate\": \"1967-08-28T12:40:39.659Z\",\n \"status\": true\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"SecretKeyTypeDTO\",\"description\":\"Uygulama uzerinde olsturulabilecek ikincil sifrelerin(login, vb..) tiplerinin belirlendigi yerdir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"adi\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"status\":{\"description\":\"aktiflik bilgisi\",\"type\":\"boolean\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/SecretKeyTypeDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"name\": \"amet\",\n \"createdBy\": \"proident qui\",\n \"createdDate\": \"1974-11-15T10:25:49.417Z\",\n \"description\": \"ea ni\",\n \"id\": 40556349,\n \"lastModifiedBy\": \"elit reprehenderit pariatur commodo\",\n \"lastModifiedDate\": \"1940-08-02T00:36:30.466Z\",\n \"status\": false\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"SecretKeyTypeDTO\",\"description\":\"Uygulama uzerinde olsturulabilecek ikincil sifrelerin(login, vb..) tiplerinin belirlendigi yerdir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"adi\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"status\":{\"description\":\"aktiflik bilgisi\",\"type\":\"boolean\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/SecretKeyTypeDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/secret-key-types/count" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "countSecretKeyTypes" + }, + "id": { + "element": "string", + "content": "countSecretKeyTypesUsingGET" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/secret-key-types/count{?description%2econtains,description%2eequals,description%2ein*,description%2especified,id%2eequals,id%2egreaterOrEqualThan,id%2egreaterThan,id%2ein*,id%2elessOrEqualThan,id%2elessThan,id%2especified,name%2econtains,name%2eequals,name%2ein*,name%2especified,status%2eequals,status%2ein*,status%2especified}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status.equals" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "boolean" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status.specified" + }, + "value": { + "element": "boolean" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"format\":\"int64\",\"type\":\"integer\"}" + }, + { + "element": "dataStructure", + "content": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'int64'" + } + } + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/secret-key-types/{id}" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getSecretKeyType" + }, + "id": { + "element": "string", + "content": "getSecretKeyTypeUsingGET" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "id" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"SecretKeyTypeDTO\",\"description\":\"Uygulama uzerinde olsturulabilecek ikincil sifrelerin(login, vb..) tiplerinin belirlendigi yerdir. @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"adi\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"status\":{\"description\":\"aktiflik bilgisi\",\"type\":\"boolean\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/SecretKeyTypeDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "deleteSecretKeyType" + }, + "id": { + "element": "string", + "content": "deleteSecretKeyTypeUsingDELETE" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "id" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "204" + } + }, + "content": [ + { + "element": "copy", + "content": "No Content" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "category", + "meta": { + "title": { + "element": "string", + "content": "secret-key-resource" + }, + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "resourceGroup" + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Secret Key Resource" + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/secret-keys" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getAllSecretKeys" + }, + "id": { + "element": "string", + "content": "getAllSecretKeysUsingGET" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/secret-keys{?description%2econtains,description%2eequals,description%2ein*,description%2especified,id%2eequals,id%2egreaterOrEqualThan,id%2egreaterThan,id%2ein*,id%2elessOrEqualThan,id%2elessThan,id%2especified,name%2econtains,name%2eequals,name%2ein*,name%2especified,page,size,sort*,status%2eequals,status%2ein*,status%2especified,typeId%2eequals,typeId%2egreaterOrEqualThan,typeId%2egreaterThan,typeId%2ein*,typeId%2elessOrEqualThan,typeId%2elessThan,typeId%2especified}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Page number of the requested page" + } + }, + "content": { + "key": { + "element": "string", + "content": "page" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Size of a page" + } + }, + "content": { + "key": { + "element": "string", + "content": "size" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported." + } + }, + "content": { + "key": { + "element": "string", + "content": "sort" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status.equals" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "boolean" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "typeId.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "typeId.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "typeId.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "typeId.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "typeId.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "typeId.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "typeId.specified" + }, + "value": { + "element": "boolean" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/SecretKeyDTO\"},\"definitions\":{\"SecretKeyDTO\":{\"title\":\"SecretKeyDTO\",\"description\":\"OneTime Password olusturmak icin kullanilacak keydir. Her tip icin ayri aryi olusturulabilir @see SecretKeyType @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"adi\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"status\":{\"description\":\"aktiflik bilgisi\",\"type\":\"boolean\"},\"typeId\":{\"format\":\"int64\",\"description\":\"Anahtar tipi\",\"type\":\"integer\"},\"userId\":{\"format\":\"int64\",\"description\":\"User id'si\",\"type\":\"integer\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/SecretKeyDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "updateSecretKey" + }, + "id": { + "element": "string", + "content": "updateSecretKeyUsingPUT" + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"name\": \"incididunt Lorem dolore deserunt\",\n \"createdBy\": \"quis labo\",\n \"createdDate\": \"1991-06-29T04:13:05.079Z\",\n \"description\": \"do ullamco ut Lorem\",\n \"id\": 38384506,\n \"lastModifiedBy\": \"consequat\",\n \"lastModifiedDate\": \"2012-07-21T14:59:31.060Z\",\n \"status\": false,\n \"typeId\": 77607303,\n \"userId\": 85146759\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"SecretKeyDTO\",\"description\":\"OneTime Password olusturmak icin kullanilacak keydir. Her tip icin ayri aryi olusturulabilir @see SecretKeyType @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"adi\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"status\":{\"description\":\"aktiflik bilgisi\",\"type\":\"boolean\"},\"typeId\":{\"format\":\"int64\",\"description\":\"Anahtar tipi\",\"type\":\"integer\"},\"userId\":{\"format\":\"int64\",\"description\":\"User id'si\",\"type\":\"integer\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/SecretKeyDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"SecretKeyDTO\",\"description\":\"OneTime Password olusturmak icin kullanilacak keydir. Her tip icin ayri aryi olusturulabilir @see SecretKeyType @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"adi\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"status\":{\"description\":\"aktiflik bilgisi\",\"type\":\"boolean\"},\"typeId\":{\"format\":\"int64\",\"description\":\"Anahtar tipi\",\"type\":\"integer\"},\"userId\":{\"format\":\"int64\",\"description\":\"User id'si\",\"type\":\"integer\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/SecretKeyDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"name\": \"mollit ipsum ullamco\",\n \"createdBy\": \"Lorem\",\n \"createdDate\": \"1967-05-22T09:36:32.632Z\",\n \"description\": \"ut cupidatat incididunt velit\",\n \"id\": 87030500,\n \"lastModifiedBy\": \"magna Lorem voluptate in\",\n \"lastModifiedDate\": \"1997-09-23T13:55:58.148Z\",\n \"status\": false,\n \"typeId\": -94588408,\n \"userId\": -89020452\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"SecretKeyDTO\",\"description\":\"OneTime Password olusturmak icin kullanilacak keydir. Her tip icin ayri aryi olusturulabilir @see SecretKeyType @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"adi\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"status\":{\"description\":\"aktiflik bilgisi\",\"type\":\"boolean\"},\"typeId\":{\"format\":\"int64\",\"description\":\"Anahtar tipi\",\"type\":\"integer\"},\"userId\":{\"format\":\"int64\",\"description\":\"User id'si\",\"type\":\"integer\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/SecretKeyDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"name\": \"cillum\",\n \"createdBy\": \"eiusmod irure et dolor\",\n \"createdDate\": \"1964-08-01T11:30:33.698Z\",\n \"description\": \"commodo nisi minim ad\",\n \"id\": 56918878,\n \"lastModifiedBy\": \"cillum ad eiusmod \",\n \"lastModifiedDate\": \"2003-08-27T05:06:12.529Z\",\n \"status\": true,\n \"typeId\": 25595921,\n \"userId\": 89424091\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"SecretKeyDTO\",\"description\":\"OneTime Password olusturmak icin kullanilacak keydir. Her tip icin ayri aryi olusturulabilir @see SecretKeyType @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"adi\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"status\":{\"description\":\"aktiflik bilgisi\",\"type\":\"boolean\"},\"typeId\":{\"format\":\"int64\",\"description\":\"Anahtar tipi\",\"type\":\"integer\"},\"userId\":{\"format\":\"int64\",\"description\":\"User id'si\",\"type\":\"integer\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/SecretKeyDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"name\": \"cupidatat anim\",\n \"createdBy\": \"ut quis ex aliqua\",\n \"createdDate\": \"1968-01-27T02:53:52.597Z\",\n \"description\": \"exercitation in\",\n \"id\": 23047205,\n \"lastModifiedBy\": \"in dolor\",\n \"lastModifiedDate\": \"2009-05-24T17:57:11.439Z\",\n \"status\": false,\n \"typeId\": 5721923,\n \"userId\": 79770345\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"SecretKeyDTO\",\"description\":\"OneTime Password olusturmak icin kullanilacak keydir. Her tip icin ayri aryi olusturulabilir @see SecretKeyType @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"adi\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"status\":{\"description\":\"aktiflik bilgisi\",\"type\":\"boolean\"},\"typeId\":{\"format\":\"int64\",\"description\":\"Anahtar tipi\",\"type\":\"integer\"},\"userId\":{\"format\":\"int64\",\"description\":\"User id'si\",\"type\":\"integer\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/SecretKeyDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"name\": \"aliqua\",\n \"createdBy\": \"in laboris\",\n \"createdDate\": \"2014-11-12T20:37:18.828Z\",\n \"description\": \"do eu\",\n \"id\": -80363430,\n \"lastModifiedBy\": \"velit voluptate\",\n \"lastModifiedDate\": \"1983-05-20T17:53:06.012Z\",\n \"status\": true,\n \"typeId\": -2119841,\n \"userId\": -64900673\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"SecretKeyDTO\",\"description\":\"OneTime Password olusturmak icin kullanilacak keydir. Her tip icin ayri aryi olusturulabilir @see SecretKeyType @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"adi\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"status\":{\"description\":\"aktiflik bilgisi\",\"type\":\"boolean\"},\"typeId\":{\"format\":\"int64\",\"description\":\"Anahtar tipi\",\"type\":\"integer\"},\"userId\":{\"format\":\"int64\",\"description\":\"User id'si\",\"type\":\"integer\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/SecretKeyDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "createSecretKey" + }, + "id": { + "element": "string", + "content": "createSecretKeyUsingPOST" + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"name\": \"consectetur\",\n \"createdBy\": \"commodo\",\n \"createdDate\": \"1964-06-24T05:42:56.233Z\",\n \"description\": \"ut ex sed\",\n \"id\": 71594037,\n \"lastModifiedBy\": \"sint id cillum\",\n \"lastModifiedDate\": \"1968-07-28T08:00:47.171Z\",\n \"status\": false,\n \"typeId\": -95730905,\n \"userId\": 11874098\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"SecretKeyDTO\",\"description\":\"OneTime Password olusturmak icin kullanilacak keydir. Her tip icin ayri aryi olusturulabilir @see SecretKeyType @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"adi\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"status\":{\"description\":\"aktiflik bilgisi\",\"type\":\"boolean\"},\"typeId\":{\"format\":\"int64\",\"description\":\"Anahtar tipi\",\"type\":\"integer\"},\"userId\":{\"format\":\"int64\",\"description\":\"User id'si\",\"type\":\"integer\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/SecretKeyDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"SecretKeyDTO\",\"description\":\"OneTime Password olusturmak icin kullanilacak keydir. Her tip icin ayri aryi olusturulabilir @see SecretKeyType @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"adi\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"status\":{\"description\":\"aktiflik bilgisi\",\"type\":\"boolean\"},\"typeId\":{\"format\":\"int64\",\"description\":\"Anahtar tipi\",\"type\":\"integer\"},\"userId\":{\"format\":\"int64\",\"description\":\"User id'si\",\"type\":\"integer\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/SecretKeyDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"name\": \"eiusmod\",\n \"createdBy\": \"dolor\",\n \"createdDate\": \"1982-07-28T06:15:37.687Z\",\n \"description\": \"consectetur non\",\n \"id\": 62905831,\n \"lastModifiedBy\": \"anim laboris ipsum ex\",\n \"lastModifiedDate\": \"1974-12-30T05:44:10.135Z\",\n \"status\": true,\n \"typeId\": 218014,\n \"userId\": 80380836\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"SecretKeyDTO\",\"description\":\"OneTime Password olusturmak icin kullanilacak keydir. Her tip icin ayri aryi olusturulabilir @see SecretKeyType @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"adi\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"status\":{\"description\":\"aktiflik bilgisi\",\"type\":\"boolean\"},\"typeId\":{\"format\":\"int64\",\"description\":\"Anahtar tipi\",\"type\":\"integer\"},\"userId\":{\"format\":\"int64\",\"description\":\"User id'si\",\"type\":\"integer\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/SecretKeyDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"name\": \"ut laboris cillum \",\n \"createdBy\": \"sit non ipsum\",\n \"createdDate\": \"2004-02-27T19:38:50.520Z\",\n \"description\": \"ut Lorem pariatur adipisicing Excepteur\",\n \"id\": -79760342,\n \"lastModifiedBy\": \"ullamco minim consectetur incididunt\",\n \"lastModifiedDate\": \"1972-07-13T05:21:58.614Z\",\n \"status\": false,\n \"typeId\": -40898160,\n \"userId\": 42022340\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"SecretKeyDTO\",\"description\":\"OneTime Password olusturmak icin kullanilacak keydir. Her tip icin ayri aryi olusturulabilir @see SecretKeyType @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"adi\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"status\":{\"description\":\"aktiflik bilgisi\",\"type\":\"boolean\"},\"typeId\":{\"format\":\"int64\",\"description\":\"Anahtar tipi\",\"type\":\"integer\"},\"userId\":{\"format\":\"int64\",\"description\":\"User id'si\",\"type\":\"integer\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/SecretKeyDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"name\": \"dolor\",\n \"createdBy\": \"et est tempor id velit\",\n \"createdDate\": \"1963-08-18T13:50:17.648Z\",\n \"description\": \"in\",\n \"id\": -28415297,\n \"lastModifiedBy\": \"aute enim nisi\",\n \"lastModifiedDate\": \"1948-01-05T03:02:15.310Z\",\n \"status\": true,\n \"typeId\": 2487717,\n \"userId\": -4495168\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"SecretKeyDTO\",\"description\":\"OneTime Password olusturmak icin kullanilacak keydir. Her tip icin ayri aryi olusturulabilir @see SecretKeyType @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"adi\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"status\":{\"description\":\"aktiflik bilgisi\",\"type\":\"boolean\"},\"typeId\":{\"format\":\"int64\",\"description\":\"Anahtar tipi\",\"type\":\"integer\"},\"userId\":{\"format\":\"int64\",\"description\":\"User id'si\",\"type\":\"integer\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/SecretKeyDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"name\": \"Excepteur eiusmod nostrud\",\n \"createdBy\": \"Ut magna minim\",\n \"createdDate\": \"2010-10-15T13:55:07.301Z\",\n \"description\": \"id et labore minim\",\n \"id\": -37171589,\n \"lastModifiedBy\": \"dolore et nulla velit magna\",\n \"lastModifiedDate\": \"1975-04-27T18:26:09.297Z\",\n \"status\": true,\n \"typeId\": -29981553,\n \"userId\": 48039008\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"SecretKeyDTO\",\"description\":\"OneTime Password olusturmak icin kullanilacak keydir. Her tip icin ayri aryi olusturulabilir @see SecretKeyType @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"adi\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"status\":{\"description\":\"aktiflik bilgisi\",\"type\":\"boolean\"},\"typeId\":{\"format\":\"int64\",\"description\":\"Anahtar tipi\",\"type\":\"integer\"},\"userId\":{\"format\":\"int64\",\"description\":\"User id'si\",\"type\":\"integer\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/SecretKeyDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/secret-keys/count" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "countSecretKeys" + }, + "id": { + "element": "string", + "content": "countSecretKeysUsingGET" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/secret-keys/count{?description%2econtains,description%2eequals,description%2ein*,description%2especified,id%2eequals,id%2egreaterOrEqualThan,id%2egreaterThan,id%2ein*,id%2elessOrEqualThan,id%2elessThan,id%2especified,name%2econtains,name%2eequals,name%2ein*,name%2especified,status%2eequals,status%2ein*,status%2especified,typeId%2eequals,typeId%2egreaterOrEqualThan,typeId%2egreaterThan,typeId%2ein*,typeId%2elessOrEqualThan,typeId%2elessThan,typeId%2especified}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status.equals" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "boolean" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "typeId.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "typeId.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "typeId.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "typeId.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "typeId.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "typeId.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "typeId.specified" + }, + "value": { + "element": "boolean" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"format\":\"int64\",\"type\":\"integer\"}" + }, + { + "element": "dataStructure", + "content": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'int64'" + } + } + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/secret-keys/{id}" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getSecretKey" + }, + "id": { + "element": "string", + "content": "getSecretKeyUsingGET" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "id" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"SecretKeyDTO\",\"description\":\"OneTime Password olusturmak icin kullanilacak keydir. Her tip icin ayri aryi olusturulabilir @see SecretKeyType @author The Aurora Developer team.\",\"required\":[\"name\"],\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"description\":{\"description\":\"aciklama\",\"maxLength\":1000,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"name\":{\"description\":\"adi\",\"maxLength\":250,\"minLength\":0,\"type\":\"string\"},\"status\":{\"description\":\"aktiflik bilgisi\",\"type\":\"boolean\"},\"typeId\":{\"format\":\"int64\",\"description\":\"Anahtar tipi\",\"type\":\"integer\"},\"userId\":{\"format\":\"int64\",\"description\":\"User id'si\",\"type\":\"integer\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/SecretKeyDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "deleteSecretKey" + }, + "id": { + "element": "string", + "content": "deleteSecretKeyUsingDELETE" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "id" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "204" + } + }, + "content": [ + { + "element": "copy", + "content": "No Content" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "category", + "meta": { + "title": { + "element": "string", + "content": "time-zone-definition-resource" + }, + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "resourceGroup" + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "Time Zone Definition Resource" + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/time-zone-definitions" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getAllTimeZoneDefinitions" + }, + "id": { + "element": "string", + "content": "getAllTimeZoneDefinitionsUsingGET" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/time-zone-definitions{?autoUpdate%2eequals,autoUpdate%2ein*,autoUpdate%2especified,countryCode%2econtains,countryCode%2eequals,countryCode%2ein*,countryCode%2especified,countryName%2econtains,countryName%2eequals,countryName%2ein*,countryName%2especified,gmtOffset%2eequals,gmtOffset%2egreaterOrEqualThan,gmtOffset%2egreaterThan,gmtOffset%2ein*,gmtOffset%2elessOrEqualThan,gmtOffset%2elessThan,gmtOffset%2especified,id%2eequals,id%2egreaterOrEqualThan,id%2egreaterThan,id%2ein*,id%2elessOrEqualThan,id%2elessThan,id%2especified,orderPriority%2eequals,orderPriority%2egreaterOrEqualThan,orderPriority%2egreaterThan,orderPriority%2ein*,orderPriority%2elessOrEqualThan,orderPriority%2elessThan,orderPriority%2especified,page,size,sort*,status%2eequals,status%2ein*,status%2especified,zoneName%2econtains,zoneName%2eequals,zoneName%2ein*,zoneName%2especified}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "autoUpdate.equals" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "autoUpdate.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "boolean" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "autoUpdate.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "countryCode.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "countryCode.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "countryCode.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "countryCode.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "countryName.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "countryName.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "countryName.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "countryName.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "gmtOffset.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "gmtOffset.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "gmtOffset.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "gmtOffset.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "gmtOffset.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "gmtOffset.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "gmtOffset.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Page number of the requested page" + } + }, + "content": { + "key": { + "element": "string", + "content": "page" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Size of a page" + } + }, + "content": { + "key": { + "element": "string", + "content": "size" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported." + } + }, + "content": { + "key": { + "element": "string", + "content": "sort" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status.equals" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "boolean" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "zoneName.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "zoneName.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "zoneName.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "zoneName.specified" + }, + "value": { + "element": "boolean" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/TimeZoneDefinitionDTO\"},\"definitions\":{\"TimeZoneDefinitionDTO\":{\"title\":\"TimeZoneDefinitionDTO\",\"description\":\"Zone Bilgilerini saklamaktadir. Dunyadaki ulke, zone ve gmt offset bilgileri yer almaktadir.ADAndorraEurope/Andorra72001464453737@author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"autoUpdate\":{\"description\":\"Bu time zone bilgisinin otomatik update edilip edilmeyecegine karar verir.\",\"type\":\"boolean\"},\"countryCode\":{\"description\":\"ulke kodu bilgisi. AD, AE, AF vs...\",\"type\":\"string\"},\"countryName\":{\"description\":\"ulke ismi bilgisi. Andorra, United Arab Emirates, Afghanistan vs...\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"gmtOffset\":{\"format\":\"int32\",\"description\":\"gmt offset bilgisidir. The time offset in seconds based on UTC time.\",\"type\":\"integer\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"aktiflik pasiflik bilgisidir.\",\"type\":\"boolean\"},\"zoneName\":{\"description\":\"zone ismi bilgisi. Europe/Andorra, Asia/Dubai, Asia/Kabul vs...\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/TimeZoneDefinitionDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "updateTimeZoneDefinition" + }, + "id": { + "element": "string", + "content": "updateTimeZoneDefinitionUsingPUT" + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"autoUpdate\": false,\n \"countryCode\": \"exercitation qui tempor deserunt enim\",\n \"countryName\": \"magna ut\",\n \"createdBy\": \"irure sunt dolore tempor\",\n \"createdDate\": \"1991-07-09T18:05:05.109Z\",\n \"gmtOffset\": -56491766,\n \"id\": -39845742,\n \"lastModifiedBy\": \"dolore in pariatur qui ex\",\n \"lastModifiedDate\": \"1943-08-01T04:37:36.427Z\",\n \"orderPriority\": -38856587,\n \"status\": false,\n \"zoneName\": \"adipi\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"TimeZoneDefinitionDTO\",\"description\":\"Zone Bilgilerini saklamaktadir. Dunyadaki ulke, zone ve gmt offset bilgileri yer almaktadir.ADAndorraEurope/Andorra72001464453737@author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"autoUpdate\":{\"description\":\"Bu time zone bilgisinin otomatik update edilip edilmeyecegine karar verir.\",\"type\":\"boolean\"},\"countryCode\":{\"description\":\"ulke kodu bilgisi. AD, AE, AF vs...\",\"type\":\"string\"},\"countryName\":{\"description\":\"ulke ismi bilgisi. Andorra, United Arab Emirates, Afghanistan vs...\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"gmtOffset\":{\"format\":\"int32\",\"description\":\"gmt offset bilgisidir. The time offset in seconds based on UTC time.\",\"type\":\"integer\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"aktiflik pasiflik bilgisidir.\",\"type\":\"boolean\"},\"zoneName\":{\"description\":\"zone ismi bilgisi. Europe/Andorra, Asia/Dubai, Asia/Kabul vs...\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/TimeZoneDefinitionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"TimeZoneDefinitionDTO\",\"description\":\"Zone Bilgilerini saklamaktadir. Dunyadaki ulke, zone ve gmt offset bilgileri yer almaktadir.ADAndorraEurope/Andorra72001464453737@author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"autoUpdate\":{\"description\":\"Bu time zone bilgisinin otomatik update edilip edilmeyecegine karar verir.\",\"type\":\"boolean\"},\"countryCode\":{\"description\":\"ulke kodu bilgisi. AD, AE, AF vs...\",\"type\":\"string\"},\"countryName\":{\"description\":\"ulke ismi bilgisi. Andorra, United Arab Emirates, Afghanistan vs...\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"gmtOffset\":{\"format\":\"int32\",\"description\":\"gmt offset bilgisidir. The time offset in seconds based on UTC time.\",\"type\":\"integer\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"aktiflik pasiflik bilgisidir.\",\"type\":\"boolean\"},\"zoneName\":{\"description\":\"zone ismi bilgisi. Europe/Andorra, Asia/Dubai, Asia/Kabul vs...\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/TimeZoneDefinitionDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"autoUpdate\": false,\n \"countryCode\": \"cupidatat quis minim\",\n \"countryName\": \"dolor sit dolore dolor\",\n \"createdBy\": \"nostrud in in\",\n \"createdDate\": \"2000-11-16T09:27:20.531Z\",\n \"gmtOffset\": -38023193,\n \"id\": 70589095,\n \"lastModifiedBy\": \"veniam\",\n \"lastModifiedDate\": \"1998-05-18T23:34:37.169Z\",\n \"orderPriority\": -97343105,\n \"status\": true,\n \"zoneName\": \"minim dolor adipisicing incididunt\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"TimeZoneDefinitionDTO\",\"description\":\"Zone Bilgilerini saklamaktadir. Dunyadaki ulke, zone ve gmt offset bilgileri yer almaktadir.ADAndorraEurope/Andorra72001464453737@author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"autoUpdate\":{\"description\":\"Bu time zone bilgisinin otomatik update edilip edilmeyecegine karar verir.\",\"type\":\"boolean\"},\"countryCode\":{\"description\":\"ulke kodu bilgisi. AD, AE, AF vs...\",\"type\":\"string\"},\"countryName\":{\"description\":\"ulke ismi bilgisi. Andorra, United Arab Emirates, Afghanistan vs...\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"gmtOffset\":{\"format\":\"int32\",\"description\":\"gmt offset bilgisidir. The time offset in seconds based on UTC time.\",\"type\":\"integer\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"aktiflik pasiflik bilgisidir.\",\"type\":\"boolean\"},\"zoneName\":{\"description\":\"zone ismi bilgisi. Europe/Andorra, Asia/Dubai, Asia/Kabul vs...\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/TimeZoneDefinitionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"autoUpdate\": true,\n \"countryCode\": \"in nulla proident laborum\",\n \"countryName\": \"proident aliquip ipsum\",\n \"createdBy\": \"magna\",\n \"createdDate\": \"1994-05-13T15:30:37.137Z\",\n \"gmtOffset\": 6509293,\n \"id\": 90379503,\n \"lastModifiedBy\": \"dolore culpa\",\n \"lastModifiedDate\": \"2001-04-23T23:10:50.484Z\",\n \"orderPriority\": -92018215,\n \"status\": false,\n \"zoneName\": \"ad laboris\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"TimeZoneDefinitionDTO\",\"description\":\"Zone Bilgilerini saklamaktadir. Dunyadaki ulke, zone ve gmt offset bilgileri yer almaktadir.ADAndorraEurope/Andorra72001464453737@author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"autoUpdate\":{\"description\":\"Bu time zone bilgisinin otomatik update edilip edilmeyecegine karar verir.\",\"type\":\"boolean\"},\"countryCode\":{\"description\":\"ulke kodu bilgisi. AD, AE, AF vs...\",\"type\":\"string\"},\"countryName\":{\"description\":\"ulke ismi bilgisi. Andorra, United Arab Emirates, Afghanistan vs...\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"gmtOffset\":{\"format\":\"int32\",\"description\":\"gmt offset bilgisidir. The time offset in seconds based on UTC time.\",\"type\":\"integer\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"aktiflik pasiflik bilgisidir.\",\"type\":\"boolean\"},\"zoneName\":{\"description\":\"zone ismi bilgisi. Europe/Andorra, Asia/Dubai, Asia/Kabul vs...\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/TimeZoneDefinitionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"autoUpdate\": true,\n \"countryCode\": \"in elit qui culpa\",\n \"countryName\": \"laborum elit fugiat Duis\",\n \"createdBy\": \"in reprehenderit qui nisi elit\",\n \"createdDate\": \"1984-11-27T01:22:21.639Z\",\n \"gmtOffset\": -13844186,\n \"id\": -46035099,\n \"lastModifiedBy\": \"laboris \",\n \"lastModifiedDate\": \"1963-04-13T09:39:38.730Z\",\n \"orderPriority\": -28969064,\n \"status\": false,\n \"zoneName\": \"ea sed anim qui esse\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"TimeZoneDefinitionDTO\",\"description\":\"Zone Bilgilerini saklamaktadir. Dunyadaki ulke, zone ve gmt offset bilgileri yer almaktadir.ADAndorraEurope/Andorra72001464453737@author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"autoUpdate\":{\"description\":\"Bu time zone bilgisinin otomatik update edilip edilmeyecegine karar verir.\",\"type\":\"boolean\"},\"countryCode\":{\"description\":\"ulke kodu bilgisi. AD, AE, AF vs...\",\"type\":\"string\"},\"countryName\":{\"description\":\"ulke ismi bilgisi. Andorra, United Arab Emirates, Afghanistan vs...\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"gmtOffset\":{\"format\":\"int32\",\"description\":\"gmt offset bilgisidir. The time offset in seconds based on UTC time.\",\"type\":\"integer\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"aktiflik pasiflik bilgisidir.\",\"type\":\"boolean\"},\"zoneName\":{\"description\":\"zone ismi bilgisi. Europe/Andorra, Asia/Dubai, Asia/Kabul vs...\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/TimeZoneDefinitionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"autoUpdate\": false,\n \"countryCode\": \"ut quis\",\n \"countryName\": \"ut\",\n \"createdBy\": \"velit exercitation\",\n \"createdDate\": \"1974-03-02T20:01:58.322Z\",\n \"gmtOffset\": 59756022,\n \"id\": -33821890,\n \"lastModifiedBy\": \"enim\",\n \"lastModifiedDate\": \"1940-05-22T08:49:26.701Z\",\n \"orderPriority\": -5808641,\n \"status\": false,\n \"zoneName\": \"in Ut ut laborum\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"TimeZoneDefinitionDTO\",\"description\":\"Zone Bilgilerini saklamaktadir. Dunyadaki ulke, zone ve gmt offset bilgileri yer almaktadir.ADAndorraEurope/Andorra72001464453737@author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"autoUpdate\":{\"description\":\"Bu time zone bilgisinin otomatik update edilip edilmeyecegine karar verir.\",\"type\":\"boolean\"},\"countryCode\":{\"description\":\"ulke kodu bilgisi. AD, AE, AF vs...\",\"type\":\"string\"},\"countryName\":{\"description\":\"ulke ismi bilgisi. Andorra, United Arab Emirates, Afghanistan vs...\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"gmtOffset\":{\"format\":\"int32\",\"description\":\"gmt offset bilgisidir. The time offset in seconds based on UTC time.\",\"type\":\"integer\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"aktiflik pasiflik bilgisidir.\",\"type\":\"boolean\"},\"zoneName\":{\"description\":\"zone ismi bilgisi. Europe/Andorra, Asia/Dubai, Asia/Kabul vs...\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/TimeZoneDefinitionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "createTimeZoneDefinition" + }, + "id": { + "element": "string", + "content": "createTimeZoneDefinitionUsingPOST" + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"autoUpdate\": false,\n \"countryCode\": \"et\",\n \"countryName\": \"velit\",\n \"createdBy\": \"ad nisi non enim reprehenderit\",\n \"createdDate\": \"1977-07-04T03:59:17.422Z\",\n \"gmtOffset\": 82037339,\n \"id\": 52022499,\n \"lastModifiedBy\": \"sed est esse exercitation cupidatat\",\n \"lastModifiedDate\": \"1953-01-07T22:31:27.929Z\",\n \"orderPriority\": -46288667,\n \"status\": false,\n \"zoneName\": \"cupidatat ut\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"TimeZoneDefinitionDTO\",\"description\":\"Zone Bilgilerini saklamaktadir. Dunyadaki ulke, zone ve gmt offset bilgileri yer almaktadir.ADAndorraEurope/Andorra72001464453737@author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"autoUpdate\":{\"description\":\"Bu time zone bilgisinin otomatik update edilip edilmeyecegine karar verir.\",\"type\":\"boolean\"},\"countryCode\":{\"description\":\"ulke kodu bilgisi. AD, AE, AF vs...\",\"type\":\"string\"},\"countryName\":{\"description\":\"ulke ismi bilgisi. Andorra, United Arab Emirates, Afghanistan vs...\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"gmtOffset\":{\"format\":\"int32\",\"description\":\"gmt offset bilgisidir. The time offset in seconds based on UTC time.\",\"type\":\"integer\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"aktiflik pasiflik bilgisidir.\",\"type\":\"boolean\"},\"zoneName\":{\"description\":\"zone ismi bilgisi. Europe/Andorra, Asia/Dubai, Asia/Kabul vs...\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/TimeZoneDefinitionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"TimeZoneDefinitionDTO\",\"description\":\"Zone Bilgilerini saklamaktadir. Dunyadaki ulke, zone ve gmt offset bilgileri yer almaktadir.ADAndorraEurope/Andorra72001464453737@author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"autoUpdate\":{\"description\":\"Bu time zone bilgisinin otomatik update edilip edilmeyecegine karar verir.\",\"type\":\"boolean\"},\"countryCode\":{\"description\":\"ulke kodu bilgisi. AD, AE, AF vs...\",\"type\":\"string\"},\"countryName\":{\"description\":\"ulke ismi bilgisi. Andorra, United Arab Emirates, Afghanistan vs...\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"gmtOffset\":{\"format\":\"int32\",\"description\":\"gmt offset bilgisidir. The time offset in seconds based on UTC time.\",\"type\":\"integer\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"aktiflik pasiflik bilgisidir.\",\"type\":\"boolean\"},\"zoneName\":{\"description\":\"zone ismi bilgisi. Europe/Andorra, Asia/Dubai, Asia/Kabul vs...\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/TimeZoneDefinitionDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"autoUpdate\": false,\n \"countryCode\": \"do ut est in elit\",\n \"countryName\": \"mollit officia minim ad\",\n \"createdBy\": \"minim pariatur adipisicing quis in\",\n \"createdDate\": \"1982-03-23T09:12:09.150Z\",\n \"gmtOffset\": -7391754,\n \"id\": -35379912,\n \"lastModifiedBy\": \"sed qui\",\n \"lastModifiedDate\": \"2003-10-04T01:58:18.587Z\",\n \"orderPriority\": -40289590,\n \"status\": true,\n \"zoneName\": \"laborum\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"TimeZoneDefinitionDTO\",\"description\":\"Zone Bilgilerini saklamaktadir. Dunyadaki ulke, zone ve gmt offset bilgileri yer almaktadir.ADAndorraEurope/Andorra72001464453737@author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"autoUpdate\":{\"description\":\"Bu time zone bilgisinin otomatik update edilip edilmeyecegine karar verir.\",\"type\":\"boolean\"},\"countryCode\":{\"description\":\"ulke kodu bilgisi. AD, AE, AF vs...\",\"type\":\"string\"},\"countryName\":{\"description\":\"ulke ismi bilgisi. Andorra, United Arab Emirates, Afghanistan vs...\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"gmtOffset\":{\"format\":\"int32\",\"description\":\"gmt offset bilgisidir. The time offset in seconds based on UTC time.\",\"type\":\"integer\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"aktiflik pasiflik bilgisidir.\",\"type\":\"boolean\"},\"zoneName\":{\"description\":\"zone ismi bilgisi. Europe/Andorra, Asia/Dubai, Asia/Kabul vs...\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/TimeZoneDefinitionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"autoUpdate\": true,\n \"countryCode\": \"minim\",\n \"countryName\": \"ex e\",\n \"createdBy\": \"enim irure proident eiusmod\",\n \"createdDate\": \"2006-12-09T22:41:37.392Z\",\n \"gmtOffset\": -67175115,\n \"id\": 10020693,\n \"lastModifiedBy\": \"pariatur\",\n \"lastModifiedDate\": \"2006-12-26T04:19:01.675Z\",\n \"orderPriority\": -24337440,\n \"status\": true,\n \"zoneName\": \"in adipisicing anim laborum ex\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"TimeZoneDefinitionDTO\",\"description\":\"Zone Bilgilerini saklamaktadir. Dunyadaki ulke, zone ve gmt offset bilgileri yer almaktadir.ADAndorraEurope/Andorra72001464453737@author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"autoUpdate\":{\"description\":\"Bu time zone bilgisinin otomatik update edilip edilmeyecegine karar verir.\",\"type\":\"boolean\"},\"countryCode\":{\"description\":\"ulke kodu bilgisi. AD, AE, AF vs...\",\"type\":\"string\"},\"countryName\":{\"description\":\"ulke ismi bilgisi. Andorra, United Arab Emirates, Afghanistan vs...\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"gmtOffset\":{\"format\":\"int32\",\"description\":\"gmt offset bilgisidir. The time offset in seconds based on UTC time.\",\"type\":\"integer\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"aktiflik pasiflik bilgisidir.\",\"type\":\"boolean\"},\"zoneName\":{\"description\":\"zone ismi bilgisi. Europe/Andorra, Asia/Dubai, Asia/Kabul vs...\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/TimeZoneDefinitionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"autoUpdate\": true,\n \"countryCode\": \"est\",\n \"countryName\": \"non Ut in minim laborum\",\n \"createdBy\": \"\",\n \"createdDate\": \"1961-01-09T04:41:34.891Z\",\n \"gmtOffset\": 1376477,\n \"id\": 91460939,\n \"lastModifiedBy\": \"aute esse pariatur ipsum Excepteur\",\n \"lastModifiedDate\": \"1981-08-11T01:36:05.381Z\",\n \"orderPriority\": -68892696,\n \"status\": true,\n \"zoneName\": \"exercitation veniam labore ea dolor\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"TimeZoneDefinitionDTO\",\"description\":\"Zone Bilgilerini saklamaktadir. Dunyadaki ulke, zone ve gmt offset bilgileri yer almaktadir.ADAndorraEurope/Andorra72001464453737@author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"autoUpdate\":{\"description\":\"Bu time zone bilgisinin otomatik update edilip edilmeyecegine karar verir.\",\"type\":\"boolean\"},\"countryCode\":{\"description\":\"ulke kodu bilgisi. AD, AE, AF vs...\",\"type\":\"string\"},\"countryName\":{\"description\":\"ulke ismi bilgisi. Andorra, United Arab Emirates, Afghanistan vs...\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"gmtOffset\":{\"format\":\"int32\",\"description\":\"gmt offset bilgisidir. The time offset in seconds based on UTC time.\",\"type\":\"integer\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"aktiflik pasiflik bilgisidir.\",\"type\":\"boolean\"},\"zoneName\":{\"description\":\"zone ismi bilgisi. Europe/Andorra, Asia/Dubai, Asia/Kabul vs...\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/TimeZoneDefinitionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"autoUpdate\": false,\n \"countryCode\": \"laboris ex in fugiat\",\n \"countryName\": \"aliqua eu aute\",\n \"createdBy\": \"aliqua eu\",\n \"createdDate\": \"1997-06-25T04:51:51.866Z\",\n \"gmtOffset\": -55489691,\n \"id\": -79772008,\n \"lastModifiedBy\": \"fugiat commodo nisi\",\n \"lastModifiedDate\": \"1992-08-19T11:21:51.615Z\",\n \"orderPriority\": -93287991,\n \"status\": true,\n \"zoneName\": \"esse nulla\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"TimeZoneDefinitionDTO\",\"description\":\"Zone Bilgilerini saklamaktadir. Dunyadaki ulke, zone ve gmt offset bilgileri yer almaktadir.ADAndorraEurope/Andorra72001464453737@author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"autoUpdate\":{\"description\":\"Bu time zone bilgisinin otomatik update edilip edilmeyecegine karar verir.\",\"type\":\"boolean\"},\"countryCode\":{\"description\":\"ulke kodu bilgisi. AD, AE, AF vs...\",\"type\":\"string\"},\"countryName\":{\"description\":\"ulke ismi bilgisi. Andorra, United Arab Emirates, Afghanistan vs...\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"gmtOffset\":{\"format\":\"int32\",\"description\":\"gmt offset bilgisidir. The time offset in seconds based on UTC time.\",\"type\":\"integer\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"aktiflik pasiflik bilgisidir.\",\"type\":\"boolean\"},\"zoneName\":{\"description\":\"zone ismi bilgisi. Europe/Andorra, Asia/Dubai, Asia/Kabul vs...\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/TimeZoneDefinitionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/time-zone-definitions/count" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "countTimeZoneDefinitions" + }, + "id": { + "element": "string", + "content": "countTimeZoneDefinitionsUsingGET" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/time-zone-definitions/count{?autoUpdate%2eequals,autoUpdate%2ein*,autoUpdate%2especified,countryCode%2econtains,countryCode%2eequals,countryCode%2ein*,countryCode%2especified,countryName%2econtains,countryName%2eequals,countryName%2ein*,countryName%2especified,gmtOffset%2eequals,gmtOffset%2egreaterOrEqualThan,gmtOffset%2egreaterThan,gmtOffset%2ein*,gmtOffset%2elessOrEqualThan,gmtOffset%2elessThan,gmtOffset%2especified,id%2eequals,id%2egreaterOrEqualThan,id%2egreaterThan,id%2ein*,id%2elessOrEqualThan,id%2elessThan,id%2especified,orderPriority%2eequals,orderPriority%2egreaterOrEqualThan,orderPriority%2egreaterThan,orderPriority%2ein*,orderPriority%2elessOrEqualThan,orderPriority%2elessThan,orderPriority%2especified,status%2eequals,status%2ein*,status%2especified,zoneName%2econtains,zoneName%2eequals,zoneName%2ein*,zoneName%2especified}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "autoUpdate.equals" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "autoUpdate.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "boolean" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "autoUpdate.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "countryCode.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "countryCode.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "countryCode.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "countryCode.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "countryName.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "countryName.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "countryName.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "countryName.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "gmtOffset.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "gmtOffset.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "gmtOffset.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "gmtOffset.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "gmtOffset.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "gmtOffset.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "gmtOffset.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status.equals" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "boolean" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "zoneName.contains" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "zoneName.equals" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "zoneName.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "zoneName.specified" + }, + "value": { + "element": "boolean" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"format\":\"int64\",\"type\":\"integer\"}" + }, + { + "element": "dataStructure", + "content": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'int64'" + } + } + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/time-zone-definitions/sync" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "synchronizeTimeZoneDefinitions" + }, + "id": { + "element": "string", + "content": "synchronizeTimeZoneDefinitionsUsingGET" + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/time-zone-definitions/{id}" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getTimeZoneDefinition" + }, + "id": { + "element": "string", + "content": "getTimeZoneDefinitionUsingGET" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "id" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"TimeZoneDefinitionDTO\",\"description\":\"Zone Bilgilerini saklamaktadir. Dunyadaki ulke, zone ve gmt offset bilgileri yer almaktadir.ADAndorraEurope/Andorra72001464453737@author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"autoUpdate\":{\"description\":\"Bu time zone bilgisinin otomatik update edilip edilmeyecegine karar verir.\",\"type\":\"boolean\"},\"countryCode\":{\"description\":\"ulke kodu bilgisi. AD, AE, AF vs...\",\"type\":\"string\"},\"countryName\":{\"description\":\"ulke ismi bilgisi. Andorra, United Arab Emirates, Afghanistan vs...\",\"type\":\"string\"},\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"gmtOffset\":{\"format\":\"int32\",\"description\":\"gmt offset bilgisidir. The time offset in seconds based on UTC time.\",\"type\":\"integer\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"description\":\"Siralama oncelik bilgisidir.\",\"maximum\":999999,\"exclusiveMaximum\":false,\"type\":\"integer\"},\"status\":{\"description\":\"aktiflik pasiflik bilgisidir.\",\"type\":\"boolean\"},\"zoneName\":{\"description\":\"zone ismi bilgisi. Europe/Andorra, Asia/Dubai, Asia/Kabul vs...\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/TimeZoneDefinitionDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "deleteTimeZoneDefinition" + }, + "id": { + "element": "string", + "content": "deleteTimeZoneDefinitionUsingDELETE" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "id" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "204" + } + }, + "content": [ + { + "element": "copy", + "content": "No Content" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "category", + "meta": { + "title": { + "element": "string", + "content": "user-addition-resource" + }, + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "resourceGroup" + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "User Addition Resource" + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/user-additions" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getAllUserAdditions" + }, + "id": { + "element": "string", + "content": "getAllUserAdditionsUsingGET" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/user-additions{?id%2eequals,id%2egreaterOrEqualThan,id%2egreaterThan,id%2ein*,id%2elessOrEqualThan,id%2elessThan,id%2especified,individualId%2eequals,individualId%2egreaterOrEqualThan,individualId%2egreaterThan,individualId%2ein*,individualId%2elessOrEqualThan,individualId%2elessThan,individualId%2especified,page,size,sort*,timeZoneId%2eequals,timeZoneId%2egreaterOrEqualThan,timeZoneId%2egreaterThan,timeZoneId%2ein*,timeZoneId%2elessOrEqualThan,timeZoneId%2elessThan,timeZoneId%2especified,userId%2eequals,userId%2egreaterOrEqualThan,userId%2egreaterThan,userId%2ein*,userId%2elessOrEqualThan,userId%2elessThan,userId%2especified}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "individualId.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "individualId.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "individualId.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "individualId.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "individualId.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "individualId.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "individualId.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Page number of the requested page" + } + }, + "content": { + "key": { + "element": "string", + "content": "page" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Size of a page" + } + }, + "content": { + "key": { + "element": "string", + "content": "size" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported." + } + }, + "content": { + "key": { + "element": "string", + "content": "sort" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "timeZoneId.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "timeZoneId.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "timeZoneId.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "timeZoneId.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "timeZoneId.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "timeZoneId.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "timeZoneId.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "userId.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "userId.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "userId.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "userId.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "userId.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "userId.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "userId.specified" + }, + "value": { + "element": "boolean" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/UserAdditionDTO\"},\"definitions\":{\"UserAdditionDTO\":{\"title\":\"UserAdditionDTO\",\"description\":\"User ile ilgili ek bilgilerin tutuldugu ve user objesi ile OneToOne iliskisinin kuruldugu objedir. Default User objesinin editlenmesi istenmiyor. Bu yuzden user ile ilgili ek ne bilgi varsa burada tutulmalidir. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"individualId\":{\"format\":\"int64\",\"type\":\"integer\"},\"individualRegionalFullName\":{\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"timeZoneId\":{\"format\":\"int64\",\"description\":\"Kullanicinin zone bilgisi\",\"type\":\"integer\"},\"timeZoneZoneName\":{\"type\":\"string\"},\"userId\":{\"format\":\"int64\",\"description\":\"Master user objesi\",\"type\":\"integer\"},\"userLogin\":{\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/UserAdditionDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "updateUserAddition" + }, + "id": { + "element": "string", + "content": "updateUserAdditionUsingPUT" + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"mollit proident eiusmod\",\n \"createdDate\": \"1961-04-28T07:43:41.735Z\",\n \"id\": 71030562,\n \"individualId\": 67262616,\n \"individualRegionalFullName\": \"sed et Ut in e\",\n \"lastModifiedBy\": \"aliquip eiusmod irure Duis\",\n \"lastModifiedDate\": \"2017-11-29T19:24:59.282Z\",\n \"timeZoneId\": -57003253,\n \"timeZoneZoneName\": \"ad nostrud\",\n \"userId\": -69736105,\n \"userLogin\": \"enim\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"UserAdditionDTO\",\"description\":\"User ile ilgili ek bilgilerin tutuldugu ve user objesi ile OneToOne iliskisinin kuruldugu objedir. Default User objesinin editlenmesi istenmiyor. Bu yuzden user ile ilgili ek ne bilgi varsa burada tutulmalidir. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"individualId\":{\"format\":\"int64\",\"type\":\"integer\"},\"individualRegionalFullName\":{\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"timeZoneId\":{\"format\":\"int64\",\"description\":\"Kullanicinin zone bilgisi\",\"type\":\"integer\"},\"timeZoneZoneName\":{\"type\":\"string\"},\"userId\":{\"format\":\"int64\",\"description\":\"Master user objesi\",\"type\":\"integer\"},\"userLogin\":{\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/UserAdditionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"UserAdditionDTO\",\"description\":\"User ile ilgili ek bilgilerin tutuldugu ve user objesi ile OneToOne iliskisinin kuruldugu objedir. Default User objesinin editlenmesi istenmiyor. Bu yuzden user ile ilgili ek ne bilgi varsa burada tutulmalidir. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"individualId\":{\"format\":\"int64\",\"type\":\"integer\"},\"individualRegionalFullName\":{\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"timeZoneId\":{\"format\":\"int64\",\"description\":\"Kullanicinin zone bilgisi\",\"type\":\"integer\"},\"timeZoneZoneName\":{\"type\":\"string\"},\"userId\":{\"format\":\"int64\",\"description\":\"Master user objesi\",\"type\":\"integer\"},\"userLogin\":{\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/UserAdditionDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"eiusmod incididunt esse sint\",\n \"createdDate\": \"1988-09-03T05:23:21.772Z\",\n \"id\": -28404913,\n \"individualId\": -53349969,\n \"individualRegionalFullName\": \"velit elit commodo in\",\n \"lastModifiedBy\": \"est non ad\",\n \"lastModifiedDate\": \"2017-11-11T11:14:46.726Z\",\n \"timeZoneId\": -89392178,\n \"timeZoneZoneName\": \"sunt pariatur est sed\",\n \"userId\": 33825347,\n \"userLogin\": \"quis consequat et dolore\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"UserAdditionDTO\",\"description\":\"User ile ilgili ek bilgilerin tutuldugu ve user objesi ile OneToOne iliskisinin kuruldugu objedir. Default User objesinin editlenmesi istenmiyor. Bu yuzden user ile ilgili ek ne bilgi varsa burada tutulmalidir. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"individualId\":{\"format\":\"int64\",\"type\":\"integer\"},\"individualRegionalFullName\":{\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"timeZoneId\":{\"format\":\"int64\",\"description\":\"Kullanicinin zone bilgisi\",\"type\":\"integer\"},\"timeZoneZoneName\":{\"type\":\"string\"},\"userId\":{\"format\":\"int64\",\"description\":\"Master user objesi\",\"type\":\"integer\"},\"userLogin\":{\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/UserAdditionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"enim ut nisi dolor consectetur\",\n \"createdDate\": \"1943-08-23T13:56:43.773Z\",\n \"id\": 41161196,\n \"individualId\": 20531869,\n \"individualRegionalFullName\": \"reprehenderit dolore\",\n \"lastModifiedBy\": \"mollit amet\",\n \"lastModifiedDate\": \"1943-07-12T04:26:01.624Z\",\n \"timeZoneId\": -27761983,\n \"timeZoneZoneName\": \"nostrud exercitation\",\n \"userId\": -15039302,\n \"userLogin\": \"aute id veniam\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"UserAdditionDTO\",\"description\":\"User ile ilgili ek bilgilerin tutuldugu ve user objesi ile OneToOne iliskisinin kuruldugu objedir. Default User objesinin editlenmesi istenmiyor. Bu yuzden user ile ilgili ek ne bilgi varsa burada tutulmalidir. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"individualId\":{\"format\":\"int64\",\"type\":\"integer\"},\"individualRegionalFullName\":{\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"timeZoneId\":{\"format\":\"int64\",\"description\":\"Kullanicinin zone bilgisi\",\"type\":\"integer\"},\"timeZoneZoneName\":{\"type\":\"string\"},\"userId\":{\"format\":\"int64\",\"description\":\"Master user objesi\",\"type\":\"integer\"},\"userLogin\":{\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/UserAdditionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"eu labore ad dolor Duis\",\n \"createdDate\": \"2007-06-10T21:25:13.855Z\",\n \"id\": 25208057,\n \"individualId\": -94671095,\n \"individualRegionalFullName\": \"amet Duis occaecat consequat in\",\n \"lastModifiedBy\": \"sed\",\n \"lastModifiedDate\": \"2001-01-03T00:22:11.422Z\",\n \"timeZoneId\": -17106329,\n \"timeZoneZoneName\": \"exercitation\",\n \"userId\": -36137012,\n \"userLogin\": \"proident in anim\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"UserAdditionDTO\",\"description\":\"User ile ilgili ek bilgilerin tutuldugu ve user objesi ile OneToOne iliskisinin kuruldugu objedir. Default User objesinin editlenmesi istenmiyor. Bu yuzden user ile ilgili ek ne bilgi varsa burada tutulmalidir. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"individualId\":{\"format\":\"int64\",\"type\":\"integer\"},\"individualRegionalFullName\":{\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"timeZoneId\":{\"format\":\"int64\",\"description\":\"Kullanicinin zone bilgisi\",\"type\":\"integer\"},\"timeZoneZoneName\":{\"type\":\"string\"},\"userId\":{\"format\":\"int64\",\"description\":\"Master user objesi\",\"type\":\"integer\"},\"userLogin\":{\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/UserAdditionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"qui\",\n \"createdDate\": \"1951-07-10T07:01:56.986Z\",\n \"id\": -13164099,\n \"individualId\": 81536539,\n \"individualRegionalFullName\": \"consectetur in\",\n \"lastModifiedBy\": \"cupidatat officia\",\n \"lastModifiedDate\": \"1984-01-05T01:29:45.957Z\",\n \"timeZoneId\": 24150253,\n \"timeZoneZoneName\": \"pariatur nostrud aliquip in sed\",\n \"userId\": 90012173,\n \"userLogin\": \"do culpa deserunt\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"UserAdditionDTO\",\"description\":\"User ile ilgili ek bilgilerin tutuldugu ve user objesi ile OneToOne iliskisinin kuruldugu objedir. Default User objesinin editlenmesi istenmiyor. Bu yuzden user ile ilgili ek ne bilgi varsa burada tutulmalidir. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"individualId\":{\"format\":\"int64\",\"type\":\"integer\"},\"individualRegionalFullName\":{\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"timeZoneId\":{\"format\":\"int64\",\"description\":\"Kullanicinin zone bilgisi\",\"type\":\"integer\"},\"timeZoneZoneName\":{\"type\":\"string\"},\"userId\":{\"format\":\"int64\",\"description\":\"Master user objesi\",\"type\":\"integer\"},\"userLogin\":{\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/UserAdditionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "createUserAddition" + }, + "id": { + "element": "string", + "content": "createUserAdditionUsingPOST" + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"adipisicing ullamco in reprehenderit dolore\",\n \"createdDate\": \"1965-04-11T23:46:45.496Z\",\n \"id\": -1018498,\n \"individualId\": -28186114,\n \"individualRegionalFullName\": \"Lorem dolore eu ut amet\",\n \"lastModifiedBy\": \"amet ut magna eiusmod in\",\n \"lastModifiedDate\": \"1950-11-30T19:40:30.420Z\",\n \"timeZoneId\": -38262526,\n \"timeZoneZoneName\": \"commodo consequat\",\n \"userId\": -50526300,\n \"userLogin\": \"magna\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"UserAdditionDTO\",\"description\":\"User ile ilgili ek bilgilerin tutuldugu ve user objesi ile OneToOne iliskisinin kuruldugu objedir. Default User objesinin editlenmesi istenmiyor. Bu yuzden user ile ilgili ek ne bilgi varsa burada tutulmalidir. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"individualId\":{\"format\":\"int64\",\"type\":\"integer\"},\"individualRegionalFullName\":{\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"timeZoneId\":{\"format\":\"int64\",\"description\":\"Kullanicinin zone bilgisi\",\"type\":\"integer\"},\"timeZoneZoneName\":{\"type\":\"string\"},\"userId\":{\"format\":\"int64\",\"description\":\"Master user objesi\",\"type\":\"integer\"},\"userLogin\":{\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/UserAdditionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"UserAdditionDTO\",\"description\":\"User ile ilgili ek bilgilerin tutuldugu ve user objesi ile OneToOne iliskisinin kuruldugu objedir. Default User objesinin editlenmesi istenmiyor. Bu yuzden user ile ilgili ek ne bilgi varsa burada tutulmalidir. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"individualId\":{\"format\":\"int64\",\"type\":\"integer\"},\"individualRegionalFullName\":{\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"timeZoneId\":{\"format\":\"int64\",\"description\":\"Kullanicinin zone bilgisi\",\"type\":\"integer\"},\"timeZoneZoneName\":{\"type\":\"string\"},\"userId\":{\"format\":\"int64\",\"description\":\"Master user objesi\",\"type\":\"integer\"},\"userLogin\":{\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/UserAdditionDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"sit non officia sunt mollit\",\n \"createdDate\": \"1987-07-23T03:26:26.006Z\",\n \"id\": 39581047,\n \"individualId\": 29185317,\n \"individualRegionalFullName\": \"id cillum labore aute Ut\",\n \"lastModifiedBy\": \"nost\",\n \"lastModifiedDate\": \"2008-02-18T20:16:48.911Z\",\n \"timeZoneId\": 98809481,\n \"timeZoneZoneName\": \"Excepteur\",\n \"userId\": -13920043,\n \"userLogin\": \"deserunt ullamco reprehenderit laborum\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"UserAdditionDTO\",\"description\":\"User ile ilgili ek bilgilerin tutuldugu ve user objesi ile OneToOne iliskisinin kuruldugu objedir. Default User objesinin editlenmesi istenmiyor. Bu yuzden user ile ilgili ek ne bilgi varsa burada tutulmalidir. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"individualId\":{\"format\":\"int64\",\"type\":\"integer\"},\"individualRegionalFullName\":{\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"timeZoneId\":{\"format\":\"int64\",\"description\":\"Kullanicinin zone bilgisi\",\"type\":\"integer\"},\"timeZoneZoneName\":{\"type\":\"string\"},\"userId\":{\"format\":\"int64\",\"description\":\"Master user objesi\",\"type\":\"integer\"},\"userLogin\":{\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/UserAdditionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"dolore ea\",\n \"createdDate\": \"1989-11-21T07:12:02.316Z\",\n \"id\": -29302462,\n \"individualId\": 13183931,\n \"individualRegionalFullName\": \"laborum in ipsum et\",\n \"lastModifiedBy\": \"aliqua in aute\",\n \"lastModifiedDate\": \"1994-02-26T06:30:45.314Z\",\n \"timeZoneId\": 79230482,\n \"timeZoneZoneName\": \"commodo velit magna Excepteur\",\n \"userId\": -34605730,\n \"userLogin\": \"laborum\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"UserAdditionDTO\",\"description\":\"User ile ilgili ek bilgilerin tutuldugu ve user objesi ile OneToOne iliskisinin kuruldugu objedir. Default User objesinin editlenmesi istenmiyor. Bu yuzden user ile ilgili ek ne bilgi varsa burada tutulmalidir. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"individualId\":{\"format\":\"int64\",\"type\":\"integer\"},\"individualRegionalFullName\":{\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"timeZoneId\":{\"format\":\"int64\",\"description\":\"Kullanicinin zone bilgisi\",\"type\":\"integer\"},\"timeZoneZoneName\":{\"type\":\"string\"},\"userId\":{\"format\":\"int64\",\"description\":\"Master user objesi\",\"type\":\"integer\"},\"userLogin\":{\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/UserAdditionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"aliquip\",\n \"createdDate\": \"2010-10-24T04:52:27.784Z\",\n \"id\": -72080004,\n \"individualId\": -85906325,\n \"individualRegionalFullName\": \"anim commodo sit Lorem\",\n \"lastModifiedBy\": \"ex commodo nulla quis cupidatat\",\n \"lastModifiedDate\": \"2004-03-17T21:29:38.225Z\",\n \"timeZoneId\": -66506512,\n \"timeZoneZoneName\": \"in\",\n \"userId\": 88480895,\n \"userLogin\": \"exercitation ut dolore\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"UserAdditionDTO\",\"description\":\"User ile ilgili ek bilgilerin tutuldugu ve user objesi ile OneToOne iliskisinin kuruldugu objedir. Default User objesinin editlenmesi istenmiyor. Bu yuzden user ile ilgili ek ne bilgi varsa burada tutulmalidir. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"individualId\":{\"format\":\"int64\",\"type\":\"integer\"},\"individualRegionalFullName\":{\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"timeZoneId\":{\"format\":\"int64\",\"description\":\"Kullanicinin zone bilgisi\",\"type\":\"integer\"},\"timeZoneZoneName\":{\"type\":\"string\"},\"userId\":{\"format\":\"int64\",\"description\":\"Master user objesi\",\"type\":\"integer\"},\"userLogin\":{\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/UserAdditionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"createdBy\": \"laborum aute eiusmod culpa\",\n \"createdDate\": \"2009-11-13T11:10:47.958Z\",\n \"id\": -62071908,\n \"individualId\": -63456326,\n \"individualRegionalFullName\": \"dolor eu\",\n \"lastModifiedBy\": \"quis culpa fugiat sint\",\n \"lastModifiedDate\": \"1975-07-10T22:21:55.650Z\",\n \"timeZoneId\": 21879438,\n \"timeZoneZoneName\": \"magna\",\n \"userId\": -26077862,\n \"userLogin\": \"cillum Lorem consequat in tempor\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"UserAdditionDTO\",\"description\":\"User ile ilgili ek bilgilerin tutuldugu ve user objesi ile OneToOne iliskisinin kuruldugu objedir. Default User objesinin editlenmesi istenmiyor. Bu yuzden user ile ilgili ek ne bilgi varsa burada tutulmalidir. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"individualId\":{\"format\":\"int64\",\"type\":\"integer\"},\"individualRegionalFullName\":{\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"timeZoneId\":{\"format\":\"int64\",\"description\":\"Kullanicinin zone bilgisi\",\"type\":\"integer\"},\"timeZoneZoneName\":{\"type\":\"string\"},\"userId\":{\"format\":\"int64\",\"description\":\"Master user objesi\",\"type\":\"integer\"},\"userLogin\":{\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/UserAdditionDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/user-additions/count" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "countUserAdditions" + }, + "id": { + "element": "string", + "content": "countUserAdditionsUsingGET" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/user-additions/count{?id%2eequals,id%2egreaterOrEqualThan,id%2egreaterThan,id%2ein*,id%2elessOrEqualThan,id%2elessThan,id%2especified,individualId%2eequals,individualId%2egreaterOrEqualThan,individualId%2egreaterThan,individualId%2ein*,individualId%2elessOrEqualThan,individualId%2elessThan,individualId%2especified,timeZoneId%2eequals,timeZoneId%2egreaterOrEqualThan,timeZoneId%2egreaterThan,timeZoneId%2ein*,timeZoneId%2elessOrEqualThan,timeZoneId%2elessThan,timeZoneId%2especified,userId%2eequals,userId%2egreaterOrEqualThan,userId%2egreaterThan,userId%2ein*,userId%2elessOrEqualThan,userId%2elessThan,userId%2especified}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "individualId.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "individualId.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "individualId.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "individualId.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "individualId.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "individualId.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "individualId.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "timeZoneId.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "timeZoneId.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "timeZoneId.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "timeZoneId.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "timeZoneId.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "timeZoneId.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "timeZoneId.specified" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "userId.equals" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "userId.greaterOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "userId.greaterThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "userId.in" + }, + "value": { + "element": "array", + "content": [ + { + "element": "number" + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "userId.lessOrEqualThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "userId.lessThan" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "userId.specified" + }, + "value": { + "element": "boolean" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"format\":\"int64\",\"type\":\"integer\"}" + }, + { + "element": "dataStructure", + "content": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'int64'" + } + } + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/user-additions/{id}" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getUserAddition" + }, + "id": { + "element": "string", + "content": "getUserAdditionUsingGET" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "id" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"UserAdditionDTO\",\"description\":\"User ile ilgili ek bilgilerin tutuldugu ve user objesi ile OneToOne iliskisinin kuruldugu objedir. Default User objesinin editlenmesi istenmiyor. Bu yuzden user ile ilgili ek ne bilgi varsa burada tutulmalidir. @author The Aurora Developer team.\",\"type\":\"object\",\"properties\":{\"createdBy\":{\"description\":\"Ekleyen Kullanici\",\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"description\":\"Eklenme zamani\",\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"description\":\"AutoIncrement Primary KEY\",\"type\":\"integer\"},\"individualId\":{\"format\":\"int64\",\"type\":\"integer\"},\"individualRegionalFullName\":{\"type\":\"string\"},\"lastModifiedBy\":{\"description\":\"Son degisiklik yapan Kullanici\",\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"description\":\"Son degistirilme zamani\",\"type\":\"string\"},\"timeZoneId\":{\"format\":\"int64\",\"description\":\"Kullanicinin zone bilgisi\",\"type\":\"integer\"},\"timeZoneZoneName\":{\"type\":\"string\"},\"userId\":{\"format\":\"int64\",\"description\":\"Master user objesi\",\"type\":\"integer\"},\"userLogin\":{\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/UserAdditionDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "deleteUserAddition" + }, + "id": { + "element": "string", + "content": "deleteUserAdditionUsingDELETE" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "id" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "204" + } + }, + "content": [ + { + "element": "copy", + "content": "No Content" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "category", + "meta": { + "title": { + "element": "string", + "content": "user-resource" + }, + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "resourceGroup" + } + ] + } + }, + "content": [ + { + "element": "copy", + "content": "User Resource" + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/user-management/{id}/authorities" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getAuthorityRoles" + }, + "id": { + "element": "string", + "content": "getAuthorityRolesUsingGET" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/user-management/{id}/authorities{?isChecked,page,roleName,size,sort*}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "id" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "isChecked" + } + }, + "content": { + "key": { + "element": "string", + "content": "isChecked" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Page number of the requested page" + } + }, + "content": { + "key": { + "element": "string", + "content": "page" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "roleName" + } + }, + "content": { + "key": { + "element": "string", + "content": "roleName" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Size of a page" + } + }, + "content": { + "key": { + "element": "string", + "content": "size" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported." + } + }, + "content": { + "key": { + "element": "string", + "content": "sort" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/UsersRolesCheckVM\"},\"definitions\":{\"UsersRolesCheckVM\":{\"title\":\"UsersRolesCheckVM\",\"type\":\"object\",\"properties\":{\"description\":{\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"isChecked\":{\"type\":\"boolean\"},\"name\":{\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"type\":\"integer\"},\"status\":{\"type\":\"boolean\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/UsersRolesCheckVM" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "putMergeUserAuthorities" + }, + "id": { + "element": "string", + "content": "putMergeUserAuthoritiesUsingPUT" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "id" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "[\n {\n \"description\": \"consequat Lorem\",\n \"id\": 44526972,\n \"isChecked\": false,\n \"name\": \"\",\n \"orderPriority\": -62031354,\n \"status\": false\n }\n]" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/UsersRolesCheckVM\"},\"definitions\":{\"UsersRolesCheckVM\":{\"title\":\"UsersRolesCheckVM\",\"type\":\"object\",\"properties\":{\"description\":{\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"isChecked\":{\"type\":\"boolean\"},\"name\":{\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"type\":\"integer\"},\"status\":{\"type\":\"boolean\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/UsersRolesCheckVM" + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "[\n {\n \"description\": \"fugiat quis con\",\n \"id\": -27748912,\n \"isChecked\": false,\n \"name\": \"deserunt in cupidatat minim quis\",\n \"orderPriority\": 38101428,\n \"status\": false\n }\n]" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/UsersRolesCheckVM\"},\"definitions\":{\"UsersRolesCheckVM\":{\"title\":\"UsersRolesCheckVM\",\"type\":\"object\",\"properties\":{\"description\":{\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"isChecked\":{\"type\":\"boolean\"},\"name\":{\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"type\":\"integer\"},\"status\":{\"type\":\"boolean\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/UsersRolesCheckVM" + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "[\n {\n \"description\": \"aute\",\n \"id\": -77543889,\n \"isChecked\": true,\n \"name\": \"pariatur\",\n \"orderPriority\": 77902288,\n \"status\": true\n }\n]" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/UsersRolesCheckVM\"},\"definitions\":{\"UsersRolesCheckVM\":{\"title\":\"UsersRolesCheckVM\",\"type\":\"object\",\"properties\":{\"description\":{\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"isChecked\":{\"type\":\"boolean\"},\"name\":{\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"type\":\"integer\"},\"status\":{\"type\":\"boolean\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/UsersRolesCheckVM" + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "[\n {\n \"description\": \"do\",\n \"id\": -27649352,\n \"isChecked\": true,\n \"name\": \"Excepteur incididunt fugiat aute exercitation\",\n \"orderPriority\": -85052219,\n \"status\": true\n }\n]" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/UsersRolesCheckVM\"},\"definitions\":{\"UsersRolesCheckVM\":{\"title\":\"UsersRolesCheckVM\",\"type\":\"object\",\"properties\":{\"description\":{\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"isChecked\":{\"type\":\"boolean\"},\"name\":{\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"type\":\"integer\"},\"status\":{\"type\":\"boolean\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/UsersRolesCheckVM" + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "[\n {\n \"description\": \"nisi\",\n \"id\": -49490495,\n \"isChecked\": true,\n \"name\": \"quis fugiat\",\n \"orderPriority\": 71925781,\n \"status\": true\n }\n]" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/UsersRolesCheckVM\"},\"definitions\":{\"UsersRolesCheckVM\":{\"title\":\"UsersRolesCheckVM\",\"type\":\"object\",\"properties\":{\"description\":{\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"isChecked\":{\"type\":\"boolean\"},\"name\":{\"type\":\"string\"},\"orderPriority\":{\"format\":\"int32\",\"type\":\"integer\"},\"status\":{\"type\":\"boolean\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/UsersRolesCheckVM" + } + ] + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/users" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getAllUsers" + }, + "id": { + "element": "string", + "content": "getAllUsersUsingGET" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/users{?page,size,sort*}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Page number of the requested page" + } + }, + "content": { + "key": { + "element": "string", + "content": "page" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Size of a page" + } + }, + "content": { + "key": { + "element": "string", + "content": "size" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported." + } + }, + "content": { + "key": { + "element": "string", + "content": "sort" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/UserDTO\"},\"definitions\":{\"UserDTO\":{\"title\":\"UserDTO\",\"type\":\"object\",\"properties\":{\"activated\":{\"type\":\"boolean\"},\"authorities\":{\"type\":\"array\",\"items\":{\"type\":\"string\"}},\"createdBy\":{\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"email\":{\"maxLength\":254,\"minLength\":5,\"type\":\"string\"},\"firstName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"imageUrl\":{\"maxLength\":256,\"minLength\":0,\"type\":\"string\"},\"langKey\":{\"maxLength\":6,\"minLength\":2,\"type\":\"string\"},\"lastModifiedBy\":{\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"lastName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"login\":{\"maxLength\":50,\"minLength\":1,\"pattern\":\"^[_.@A-Za-z0-9-]*$\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/UserDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "updateUser" + }, + "id": { + "element": "string", + "content": "updateUserUsingPUT" + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"activated\": true,\n \"authorities\": [],\n \"createdBy\": \"deserunt in sint\",\n \"createdDate\": \"1992-10-12T16:19:24.321Z\",\n \"email\": \"aliquip officia\",\n \"firstName\": \"aliquip aliqua est do\",\n \"id\": -22695527,\n \"imageUrl\": \"enim dolore ea\",\n \"langKey\": \"fugia\",\n \"lastModifiedBy\": \"sunt aute nulla aliqua\",\n \"lastModifiedDate\": \"1968-04-19T20:37:07.263Z\",\n \"lastName\": \"Ut\",\n \"login\": \".YM36\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"UserDTO\",\"type\":\"object\",\"properties\":{\"activated\":{\"type\":\"boolean\"},\"authorities\":{\"type\":\"array\",\"items\":{\"type\":\"string\"}},\"createdBy\":{\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"email\":{\"maxLength\":254,\"minLength\":5,\"type\":\"string\"},\"firstName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"imageUrl\":{\"maxLength\":256,\"minLength\":0,\"type\":\"string\"},\"langKey\":{\"maxLength\":6,\"minLength\":2,\"type\":\"string\"},\"lastModifiedBy\":{\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"lastName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"login\":{\"maxLength\":50,\"minLength\":1,\"pattern\":\"^[_.@A-Za-z0-9-]*$\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/UserDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"UserDTO\",\"type\":\"object\",\"properties\":{\"activated\":{\"type\":\"boolean\"},\"authorities\":{\"type\":\"array\",\"items\":{\"type\":\"string\"}},\"createdBy\":{\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"email\":{\"maxLength\":254,\"minLength\":5,\"type\":\"string\"},\"firstName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"imageUrl\":{\"maxLength\":256,\"minLength\":0,\"type\":\"string\"},\"langKey\":{\"maxLength\":6,\"minLength\":2,\"type\":\"string\"},\"lastModifiedBy\":{\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"lastName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"login\":{\"maxLength\":50,\"minLength\":1,\"pattern\":\"^[_.@A-Za-z0-9-]*$\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/UserDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"activated\": true,\n \"authorities\": [],\n \"createdBy\": \"reprehenderit et\",\n \"createdDate\": \"2010-08-11T12:58:46.205Z\",\n \"email\": \"irure pariatur ipsum occae\",\n \"firstName\": \"consectetur\",\n \"id\": 5166079,\n \"imageUrl\": \"reprehenderit\",\n \"langKey\": \"eu\",\n \"lastModifiedBy\": \"magna\",\n \"lastModifiedDate\": \"1981-06-27T21:52:54.878Z\",\n \"lastName\": \"velit ea tempor magna irure\",\n \"login\": \"0\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"UserDTO\",\"type\":\"object\",\"properties\":{\"activated\":{\"type\":\"boolean\"},\"authorities\":{\"type\":\"array\",\"items\":{\"type\":\"string\"}},\"createdBy\":{\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"email\":{\"maxLength\":254,\"minLength\":5,\"type\":\"string\"},\"firstName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"imageUrl\":{\"maxLength\":256,\"minLength\":0,\"type\":\"string\"},\"langKey\":{\"maxLength\":6,\"minLength\":2,\"type\":\"string\"},\"lastModifiedBy\":{\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"lastName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"login\":{\"maxLength\":50,\"minLength\":1,\"pattern\":\"^[_.@A-Za-z0-9-]*$\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/UserDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"activated\": true,\n \"authorities\": [],\n \"createdBy\": \"do voluptate ipsum aute officia\",\n \"createdDate\": \"1974-07-22T20:40:54.440Z\",\n \"email\": \"commodo in\",\n \"firstName\": \"proi\",\n \"id\": 70648168,\n \"imageUrl\": \"sed\",\n \"langKey\": \"venia\",\n \"lastModifiedBy\": \"aute adipisicing Ut velit\",\n \"lastModifiedDate\": \"2001-06-09T08:39:14.428Z\",\n \"lastName\": \"culpa ad Lorem \",\n \"login\": \"QyFO6Ue-n\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"UserDTO\",\"type\":\"object\",\"properties\":{\"activated\":{\"type\":\"boolean\"},\"authorities\":{\"type\":\"array\",\"items\":{\"type\":\"string\"}},\"createdBy\":{\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"email\":{\"maxLength\":254,\"minLength\":5,\"type\":\"string\"},\"firstName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"imageUrl\":{\"maxLength\":256,\"minLength\":0,\"type\":\"string\"},\"langKey\":{\"maxLength\":6,\"minLength\":2,\"type\":\"string\"},\"lastModifiedBy\":{\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"lastName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"login\":{\"maxLength\":50,\"minLength\":1,\"pattern\":\"^[_.@A-Za-z0-9-]*$\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/UserDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"activated\": false,\n \"authorities\": [],\n \"createdBy\": \"laborum ut deserunt magna qui\",\n \"createdDate\": \"2011-04-28T02:45:34.140Z\",\n \"email\": \"exercitation fugiat aliquip\",\n \"firstName\": \"enim ex anim\",\n \"id\": 3664147,\n \"imageUrl\": \"Ut enim aliqua\",\n \"langKey\": \"culpa\",\n \"lastModifiedBy\": \"fugiat minim ex non velit\",\n \"lastModifiedDate\": \"1991-05-30T03:07:15.743Z\",\n \"lastName\": \"Excepteur deserunt su\",\n \"login\": \"2VZlXuC-\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"UserDTO\",\"type\":\"object\",\"properties\":{\"activated\":{\"type\":\"boolean\"},\"authorities\":{\"type\":\"array\",\"items\":{\"type\":\"string\"}},\"createdBy\":{\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"email\":{\"maxLength\":254,\"minLength\":5,\"type\":\"string\"},\"firstName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"imageUrl\":{\"maxLength\":256,\"minLength\":0,\"type\":\"string\"},\"langKey\":{\"maxLength\":6,\"minLength\":2,\"type\":\"string\"},\"lastModifiedBy\":{\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"lastName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"login\":{\"maxLength\":50,\"minLength\":1,\"pattern\":\"^[_.@A-Za-z0-9-]*$\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/UserDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "PUT" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"activated\": false,\n \"authorities\": [],\n \"createdBy\": \"irure do\",\n \"createdDate\": \"2010-05-16T20:57:29.309Z\",\n \"email\": \"consectetur reprehenderit id\",\n \"firstName\": \"ut id ex dolor sit\",\n \"id\": -7271891,\n \"imageUrl\": \"eiusmod aliquip\",\n \"langKey\": \"nul\",\n \"lastModifiedBy\": \"quis an\",\n \"lastModifiedDate\": \"1950-07-22T18:47:39.810Z\",\n \"lastName\": \"do\",\n \"login\": \"isaqE\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"UserDTO\",\"type\":\"object\",\"properties\":{\"activated\":{\"type\":\"boolean\"},\"authorities\":{\"type\":\"array\",\"items\":{\"type\":\"string\"}},\"createdBy\":{\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"email\":{\"maxLength\":254,\"minLength\":5,\"type\":\"string\"},\"firstName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"imageUrl\":{\"maxLength\":256,\"minLength\":0,\"type\":\"string\"},\"langKey\":{\"maxLength\":6,\"minLength\":2,\"type\":\"string\"},\"lastModifiedBy\":{\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"lastName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"login\":{\"maxLength\":50,\"minLength\":1,\"pattern\":\"^[_.@A-Za-z0-9-]*$\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/UserDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "createUser" + }, + "id": { + "element": "string", + "content": "createUserUsingPOST" + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"activated\": false,\n \"authorities\": [],\n \"createdBy\": \"sed quis\",\n \"createdDate\": \"1951-07-29T10:25:46.955Z\",\n \"email\": \"non aliquip\",\n \"firstName\": \"nostrud\",\n \"id\": -40008962,\n \"imageUrl\": \"ad in aliquip reprehenderit in\",\n \"langKey\": \"enim c\",\n \"lastModifiedBy\": \"ullamco\",\n \"lastModifiedDate\": \"1991-07-01T14:23:37.946Z\",\n \"lastName\": \"deserunt quis occaecat sed\",\n \"login\": \"F957Gq\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"UserDTO\",\"type\":\"object\",\"properties\":{\"activated\":{\"type\":\"boolean\"},\"authorities\":{\"type\":\"array\",\"items\":{\"type\":\"string\"}},\"createdBy\":{\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"email\":{\"maxLength\":254,\"minLength\":5,\"type\":\"string\"},\"firstName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"imageUrl\":{\"maxLength\":256,\"minLength\":0,\"type\":\"string\"},\"langKey\":{\"maxLength\":6,\"minLength\":2,\"type\":\"string\"},\"lastModifiedBy\":{\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"lastName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"login\":{\"maxLength\":50,\"minLength\":1,\"pattern\":\"^[_.@A-Za-z0-9-]*$\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/UserDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"User\",\"required\":[\"activated\",\"login\"],\"type\":\"object\",\"properties\":{\"activated\":{\"type\":\"boolean\"},\"createdBy\":{\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"email\":{\"maxLength\":254,\"minLength\":5,\"type\":\"string\"},\"firstName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"imageUrl\":{\"maxLength\":256,\"minLength\":0,\"type\":\"string\"},\"langKey\":{\"maxLength\":6,\"minLength\":2,\"type\":\"string\"},\"lastModifiedBy\":{\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"lastName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"login\":{\"maxLength\":50,\"minLength\":1,\"pattern\":\"^[_.@A-Za-z0-9-]*$\",\"type\":\"string\"},\"resetDate\":{\"format\":\"date-time\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/User" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"activated\": false,\n \"authorities\": [],\n \"createdBy\": \"fugiat eu officia occaecat dolor\",\n \"createdDate\": \"1964-08-30T01:04:21.018Z\",\n \"email\": \"incididunt\",\n \"firstName\": \"dolore est\",\n \"id\": -65861124,\n \"imageUrl\": \"ipsum commodo dolor in velit\",\n \"langKey\": \"amet e\",\n \"lastModifiedBy\": \"Lorem ipsum ut\",\n \"lastModifiedDate\": \"1981-03-30T20:36:15.612Z\",\n \"lastName\": \"velit ipsum\",\n \"login\": \"jJRyuOmUeb\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"UserDTO\",\"type\":\"object\",\"properties\":{\"activated\":{\"type\":\"boolean\"},\"authorities\":{\"type\":\"array\",\"items\":{\"type\":\"string\"}},\"createdBy\":{\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"email\":{\"maxLength\":254,\"minLength\":5,\"type\":\"string\"},\"firstName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"imageUrl\":{\"maxLength\":256,\"minLength\":0,\"type\":\"string\"},\"langKey\":{\"maxLength\":6,\"minLength\":2,\"type\":\"string\"},\"lastModifiedBy\":{\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"lastName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"login\":{\"maxLength\":50,\"minLength\":1,\"pattern\":\"^[_.@A-Za-z0-9-]*$\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/UserDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "201" + } + }, + "content": [ + { + "element": "copy", + "content": "Created" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"activated\": false,\n \"authorities\": [],\n \"createdBy\": \"Ut\",\n \"createdDate\": \"1955-12-01T17:33:38.652Z\",\n \"email\": \"labore rep\",\n \"firstName\": \"fugiat nostrud\",\n \"id\": 27115485,\n \"imageUrl\": \"amet\",\n \"langKey\": \"elit\",\n \"lastModifiedBy\": \"nostr\",\n \"lastModifiedDate\": \"1957-07-15T03:13:03.190Z\",\n \"lastName\": \"es\",\n \"login\": \"8C32L4XtV7\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"UserDTO\",\"type\":\"object\",\"properties\":{\"activated\":{\"type\":\"boolean\"},\"authorities\":{\"type\":\"array\",\"items\":{\"type\":\"string\"}},\"createdBy\":{\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"email\":{\"maxLength\":254,\"minLength\":5,\"type\":\"string\"},\"firstName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"imageUrl\":{\"maxLength\":256,\"minLength\":0,\"type\":\"string\"},\"langKey\":{\"maxLength\":6,\"minLength\":2,\"type\":\"string\"},\"lastModifiedBy\":{\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"lastName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"login\":{\"maxLength\":50,\"minLength\":1,\"pattern\":\"^[_.@A-Za-z0-9-]*$\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/UserDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"activated\": true,\n \"authorities\": [],\n \"createdBy\": \"elit eu exercitation\",\n \"createdDate\": \"1953-11-15T07:57:24.954Z\",\n \"email\": \"voluptate ut amet incididunt enim\",\n \"firstName\": \"in ad\",\n \"id\": 71618474,\n \"imageUrl\": \"quis\",\n \"langKey\": \"est p\",\n \"lastModifiedBy\": \"ad aliquip adipisicing laborum nulla\",\n \"lastModifiedDate\": \"1989-07-08T12:34:26.363Z\",\n \"lastName\": \"dolor velit deserunt\",\n \"login\": \"A0cgo\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"UserDTO\",\"type\":\"object\",\"properties\":{\"activated\":{\"type\":\"boolean\"},\"authorities\":{\"type\":\"array\",\"items\":{\"type\":\"string\"}},\"createdBy\":{\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"email\":{\"maxLength\":254,\"minLength\":5,\"type\":\"string\"},\"firstName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"imageUrl\":{\"maxLength\":256,\"minLength\":0,\"type\":\"string\"},\"langKey\":{\"maxLength\":6,\"minLength\":2,\"type\":\"string\"},\"lastModifiedBy\":{\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"lastName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"login\":{\"maxLength\":50,\"minLength\":1,\"pattern\":\"^[_.@A-Za-z0-9-]*$\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/UserDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "POST" + }, + "headers": { + "element": "httpHeaders", + "content": [ + { + "element": "member", + "meta": { + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#consumes-content-type" + } + } + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "Content-Type" + }, + "value": { + "element": "string", + "content": "application/json" + } + } + } + ] + } + }, + "content": [ + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBody" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "inferred" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#message-body-generation" + } + } + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/json" + } + }, + "content": "{\n \"activated\": true,\n \"authorities\": [],\n \"createdBy\": \"deserunt culpa in\",\n \"createdDate\": \"1985-04-24T05:26:27.112Z\",\n \"email\": \"ea id commodo ut amet\",\n \"firstName\": \"cons\",\n \"id\": 41952779,\n \"imageUrl\": \"eiusmod in\",\n \"langKey\": \"Ut a\",\n \"lastModifiedBy\": \"nisi id\",\n \"lastModifiedDate\": \"2018-03-12T09:06:09.033Z\",\n \"lastName\": \"magna\",\n \"login\": \"zjAmJ8dKh\"\n}" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"UserDTO\",\"type\":\"object\",\"properties\":{\"activated\":{\"type\":\"boolean\"},\"authorities\":{\"type\":\"array\",\"items\":{\"type\":\"string\"}},\"createdBy\":{\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"email\":{\"maxLength\":254,\"minLength\":5,\"type\":\"string\"},\"firstName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"imageUrl\":{\"maxLength\":256,\"minLength\":0,\"type\":\"string\"},\"langKey\":{\"maxLength\":6,\"minLength\":2,\"type\":\"string\"},\"lastModifiedBy\":{\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"lastName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"login\":{\"maxLength\":50,\"minLength\":1,\"pattern\":\"^[_.@A-Za-z0-9-]*$\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/UserDTO" + } + } + ] + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/users/authorities" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getAuthorities" + }, + "id": { + "element": "string", + "content": "getAuthoritiesUsingGET" + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"type\":\"string\"}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/users/find" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "findByEmail" + }, + "id": { + "element": "string", + "content": "findByEmailUsingGET" + } + }, + "attributes": { + "href": { + "element": "string", + "content": "/api/users/find{?email,page,size,sort*}" + }, + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "email" + } + }, + "content": { + "key": { + "element": "string", + "content": "email" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Page number of the requested page" + } + }, + "content": { + "key": { + "element": "string", + "content": "page" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Size of a page" + } + }, + "content": { + "key": { + "element": "string", + "content": "size" + }, + "value": { + "element": "number" + } + } + }, + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported." + } + }, + "content": { + "key": { + "element": "string", + "content": "sort" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"type\":\"array\",\"items\":{\"$ref\":\"#/definitions/UserDTO\"},\"definitions\":{\"UserDTO\":{\"title\":\"UserDTO\",\"type\":\"object\",\"properties\":{\"activated\":{\"type\":\"boolean\"},\"authorities\":{\"type\":\"array\",\"items\":{\"type\":\"string\"}},\"createdBy\":{\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"email\":{\"maxLength\":254,\"minLength\":5,\"type\":\"string\"},\"firstName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"imageUrl\":{\"maxLength\":256,\"minLength\":0,\"type\":\"string\"},\"langKey\":{\"maxLength\":6,\"minLength\":2,\"type\":\"string\"},\"lastModifiedBy\":{\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"lastName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"login\":{\"maxLength\":50,\"minLength\":1,\"pattern\":\"^[_.@A-Za-z0-9-]*$\",\"type\":\"string\"}}}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "array", + "content": [ + { + "element": "definitions/UserDTO" + } + ] + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "resource", + "attributes": { + "href": { + "element": "string", + "content": "/api/users/{login}" + } + }, + "content": [ + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "getUser" + }, + "id": { + "element": "string", + "content": "getUserUsingGET" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "login" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "login" + }, + "value": { + "element": "string" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + }, + { + "element": "asset", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "messageBodySchema" + } + ] + } + }, + "attributes": { + "contentType": { + "element": "string", + "content": "application/schema+json" + } + }, + "content": "{\"title\":\"UserDTO\",\"type\":\"object\",\"properties\":{\"activated\":{\"type\":\"boolean\"},\"authorities\":{\"type\":\"array\",\"items\":{\"type\":\"string\"}},\"createdBy\":{\"type\":\"string\"},\"createdDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"email\":{\"maxLength\":254,\"minLength\":5,\"type\":\"string\"},\"firstName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"id\":{\"format\":\"int64\",\"type\":\"integer\"},\"imageUrl\":{\"maxLength\":256,\"minLength\":0,\"type\":\"string\"},\"langKey\":{\"maxLength\":6,\"minLength\":2,\"type\":\"string\"},\"lastModifiedBy\":{\"type\":\"string\"},\"lastModifiedDate\":{\"format\":\"date-time\",\"type\":\"string\"},\"lastName\":{\"maxLength\":50,\"minLength\":0,\"type\":\"string\"},\"login\":{\"maxLength\":50,\"minLength\":1,\"pattern\":\"^[_.@A-Za-z0-9-]*$\",\"type\":\"string\"}}}" + }, + { + "element": "dataStructure", + "content": { + "element": "definitions/UserDTO" + } + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "GET" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "404" + } + }, + "content": [ + { + "element": "copy", + "content": "Not Found" + } + ] + } + ] + } + ] + }, + { + "element": "transition", + "meta": { + "title": { + "element": "string", + "content": "deleteUser" + }, + "id": { + "element": "string", + "content": "deleteUserUsingDELETE" + } + }, + "attributes": { + "hrefVariables": { + "element": "hrefVariables", + "content": [ + { + "element": "member", + "meta": { + "description": { + "element": "string", + "content": "login" + } + }, + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "login" + }, + "value": { + "element": "string" + } + } + } + ] + } + }, + "content": [ + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "200" + } + }, + "content": [ + { + "element": "copy", + "content": "OK" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "204" + } + }, + "content": [ + { + "element": "copy", + "content": "No Content" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "401" + } + }, + "content": [ + { + "element": "copy", + "content": "Unauthorized" + } + ] + } + ] + }, + { + "element": "httpTransaction", + "content": [ + { + "element": "httpRequest", + "attributes": { + "method": { + "element": "string", + "content": "DELETE" + } + } + }, + { + "element": "httpResponse", + "attributes": { + "statusCode": { + "element": "string", + "content": "403" + } + }, + "content": [ + { + "element": "copy", + "content": "Forbidden" + } + ] + } + ] + } + ] + } + ] + } + ] + }, + { + "element": "category", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "dataStructures" + } + ] + } + }, + "content": [ + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "description": { + "element": "string", + "content": "Faal Kurum bilgisidir." + }, + "id": { + "element": "string", + "content": "definitions/ActiveCorporationInfoDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "generalInfo" + }, + "value": { + "element": "definitions/CorporationGeneralInfoDTO" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "studentClassificationQuotaInfo" + }, + "value": { + "element": "definitions/CorporationStudentClassificationInfoDTO" + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "ActivityTypeLangDTO" + }, + "description": { + "element": "string", + "content": "Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team." + }, + "id": { + "element": "string", + "content": "definitions/ActivityTypeLangDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "defaultLang" + }, + "value": { + "element": "boolean", + "meta": { + "description": { + "element": "string", + "content": "default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir." + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "ilgili dildeki, Uzun detayli aciklama bilgisi.\n\n- Length of string must be less than, or equal to 1000" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "langCode" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "langId" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Dil kodu bilgisinin icermektedir.\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degisiklik yapan Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degistirilme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "ismin ilgili dildeki karsiligi\n\n- Length of string must be less than, or equal to 50\n- Length of string must be greater than, or equal to 1" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "ownerId" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Tercume edilen obje\n\n- Value must be of format 'int64'" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "AddressCardDTO" + }, + "description": { + "element": "string", + "content": "Address bilgisini sunar. Sadece full address bilgisini ve kategorisini verir.\n Adres kategorisine ait kategori adı bilgisi “ContactMediumType” dır.\n Yani contact medium type \"iletişimde bulunulacak adresler\" bilgisini ifade eder." + }, + "id": { + "element": "string", + "content": "definitions/AddressCardDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "addressCategory" + }, + "value": { + "element": "array", + "meta": { + "description": { + "element": "string", + "content": "Address kategorisi" + } + }, + "content": [ + { + "element": "definitions/ContactMediumCategoryLOV" + } + ] + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "fullAddress" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Full address. İl ilçe mahalle sokak gibi bütün bilgileri içerir." + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Unique ID\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degisiklik yapan Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degistirilme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "AddressCreateDTO" + }, + "description": { + "element": "string", + "content": " Kisi veya kurumun adres bilgisini olusturmak icin kullanılır.\n Adrese ait lokasyon bilgisini içerisinde barındırır.\n Lokasyon bilgisi önceden tanımlı olmalıdır. Lokasyon bilgisi alınırken lokasyon hierarşisinde kullanıcının seçtiği en altta kalan lokasyonun idsi yeterlidir.\n Örneğin Türkiye - İstanbul - Ümraniye lokasyonu için sadece Ümraniyenin id sinin verilmesi yeterlidir." + }, + "id": { + "element": "string", + "content": "definitions/AddressCreateDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "address1" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Açık adres 1. satır" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "address2" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Açık adres 2. satır" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "address3" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Açık adres 3. satır" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "categories" + }, + "value": { + "element": "array", + "meta": { + "description": { + "element": "string", + "content": "Adres kategorileri. İş adresi, Ev adresi, Öncelikli adres" + } + }, + "content": [ + { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'int64'" + } + } + } + ] + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "fullAddress" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Açık adres ve lokasyon bilgilerini içeren tam adres" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degisiklik yapan Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degistirilme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "locationId" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Adresin bağlı olduğu en dip lokasyon bilgisi. Ümraniye, Üsküdar vb.\n\n- Value must be of format 'int64'" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "Root Type for InternalEducationGradeDTO" + }, + "description": { + "element": "string", + "content": "Merbutiyet tanımlarını tutar. Örneğin; ihvan, muhibban, diğer." + }, + "id": { + "element": "string", + "content": "definitions/AdherenceDTO" + } + }, + "attributes": { + "samples": { + "element": "array", + "content": [ + { + "element": "object", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "content": 79 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority" + }, + "value": { + "element": "number", + "content": 31 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status" + }, + "value": { + "element": "boolean", + "content": true + } + } + } + ] + } + ] + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Oluşturan Kullanıcı" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Oluşturulma Tarihi\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Açıklama" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "ID unique alan\n\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son Güncelleyen" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son Güncellenme Zamanı\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "İsmi" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "orderPriority" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Sıralama Öncelik Bilgisi\n\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "status" + }, + "value": { + "element": "boolean", + "meta": { + "description": { + "element": "string", + "content": "Aktiflik Pasiflik Bilgisi" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "AdherenceLOV" + }, + "description": { + "element": "string", + "content": "Key Value şeklinde Merbutiyet tanımlarını tutar. Örneğin; ihvan, muhibban, diğer." + }, + "id": { + "element": "string", + "content": "definitions/AdherenceLOV" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Unique ID\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Merbutiyet adı" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "AuthorityDTO" + }, + "description": { + "element": "string", + "content": "ROLE objesinin Ek verilerini icermektedir. Mevcut yapidaki authority objesinin yapisini bozmamak icin kurulmustur. ROLE adi. Key bilgisidir. ROLE_ ismiyle baslamalidir. name String required minlength(5) maxlength(50) pattern(/[^ ]/), @author Aurora Developer team." + }, + "id": { + "element": "string", + "content": "definitions/AuthorityDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Aciklama Bilgisi\n\n- Length of string must be less than, or equal to 1000" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "AutoIncrement Primary KEY\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degisiklik yapan Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degistirilme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "menus" + }, + "value": { + "element": "array", + "meta": { + "description": { + "element": "string", + "content": "Sistem rolu ile menuler arasindaki coklu yetkisel iliski." + } + }, + "content": [ + { + "element": "definitions/MenuNodeDTO" + } + ] + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ad bilgisidir.\n\n- Length of string must be less than, or equal to 50\n- Length of string must be greater than, or equal to 1" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "orderPriority" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Siralama oncelik bilgisidir.\n\n- Number must be less than, or equal to 999999\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "pages" + }, + "value": { + "element": "array", + "meta": { + "description": { + "element": "string", + "content": "Sistem rolu ile sayfalar arasindaki coklu yetkisel iliski." + } + }, + "content": [ + { + "element": "definitions/PageDefinitionDTO" + } + ] + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "responsibilities" + }, + "value": { + "element": "array", + "meta": { + "description": { + "element": "string", + "content": "Sorumluluklarin sistem rolleri ile olan cokul iliskisi" + } + }, + "content": [ + { + "element": "definitions/ResponsibilityDTO" + } + ] + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "status" + }, + "value": { + "element": "boolean", + "meta": { + "description": { + "element": "string", + "content": "Aktif pasiflik bilgisi" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "users" + }, + "value": { + "element": "array", + "meta": { + "description": { + "element": "string", + "content": "Sistem rolu ile userlar arasindaki coklu iliski." + } + }, + "content": [ + { + "element": "definitions/UserDTO" + } + ] + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "Root Type for InternalEducationGradeDTO" + }, + "description": { + "element": "string", + "content": "Kangurubu Veri Modeli" + }, + "id": { + "element": "string", + "content": "definitions/BloodGroupDTO" + } + }, + "attributes": { + "samples": { + "element": "array", + "content": [ + { + "element": "object", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "content": 79 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority" + }, + "value": { + "element": "number", + "content": 31 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status" + }, + "value": { + "element": "boolean", + "content": true + } + } + } + ] + } + ] + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Oluşturan Kullanıcı" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Oluşturulma Tarihi\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Açıklama" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "ID unique alan\n\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son Güncelleyen" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son Güncellenme Zamanı\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "İsmi" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "orderPriority" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Sıralama Öncelik Bilgisi\n\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "status" + }, + "value": { + "element": "boolean", + "meta": { + "description": { + "element": "string", + "content": "Aktiflik Pasiflik Bilgisi" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "BasicIdentificationInfoDTO" + }, + "description": { + "element": "string", + "content": "Temel kimlik bilgilerini barındırır. Tc kimlik numarası içerir. Tc kimlik bilgisi ile kimlik bilgilerinin uyuşması beklenir." + }, + "id": { + "element": "string", + "content": "definitions/BasicIdentificationInfoDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "citizenNumber" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Vatandaşlık numarası" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "citizenshipId" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Doğduğu Vatanı\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "firstName" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Adı" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "gender" + }, + "value": { + "element": "definitions/GenderLOV" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degisiklik yapan Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degistirilme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastName" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Soyadı" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "BasicUnverifiedIdentificationInfoDTO" + }, + "description": { + "element": "string", + "content": "Temel kimlik bilgilerini barındırır. Vatandaşlık numarası bilgisini barındırmaz. Taşıdığı bilgiler herhangi bir vatandaşlık numarası ile eşleşiyor mu eşleşmiyor mu doğrulanmamıştır edilmemiştir." + }, + "id": { + "element": "string", + "content": "definitions/BasicUnverifiedIdentificationInfoDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "citizenshipId" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Doğduğu Vatanı\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "firstName" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Adı" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "gender" + }, + "value": { + "element": "definitions/GenderLOV" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degisiklik yapan Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degistirilme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastName" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Soyadı" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "BloodGroupLOV" + }, + "description": { + "element": "string", + "content": "Kan grubu tanımıdır." + }, + "id": { + "element": "string", + "content": "definitions/BloodGroupLOV" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Unique ID\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Kan grubu adi" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "Root Type for InternalEducationGradeDTO" + }, + "description": { + "element": "string", + "content": "Bolgeler veri modeli. Tüm dünyadaki bolgeleri ifade eder. Örn: İstanbul Anadolu Bolgesi, İstanbul Avrupa Bölgesi vb.." + }, + "id": { + "element": "string", + "content": "definitions/BolgeDTO" + } + }, + "attributes": { + "samples": { + "element": "array", + "content": [ + { + "element": "object", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "content": 79 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority" + }, + "value": { + "element": "number", + "content": 31 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status" + }, + "value": { + "element": "boolean", + "content": true + } + } + } + ] + } + ] + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Oluşturan Kullanıcı" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Oluşturulma Tarihi\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Açıklama" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "ID unique alan\n\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son Güncelleyen" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son Güncellenme Zamanı\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "İsmi" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "orderPriority" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Sıralama Öncelik Bilgisi\n\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "status" + }, + "value": { + "element": "boolean", + "meta": { + "description": { + "element": "string", + "content": "Aktiflik Pasiflik Bilgisi" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "BolgeLOV" + }, + "description": { + "element": "string", + "content": "Bolgeye ait tanimi tutar." + }, + "id": { + "element": "string", + "content": "definitions/BolgeLOV" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Unique ID\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Bolge adi. Kullanıcının tercih ettiği translation diline göre verilir." + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "Root Type for InternalEducationGradeDTO" + }, + "description": { + "element": "string", + "content": "Bina Türlerini ifade eder. Örnek : Yurt, Ofis, Nehari Yurt, Lokal, Hizmet Mahalli" + }, + "id": { + "element": "string", + "content": "definitions/BuildingTypeDTO" + } + }, + "attributes": { + "samples": { + "element": "array", + "content": [ + { + "element": "object", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "content": 79 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority" + }, + "value": { + "element": "number", + "content": 31 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status" + }, + "value": { + "element": "boolean", + "content": true + } + } + } + ] + } + ] + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Oluşturan Kullanıcı" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Oluşturulma Tarihi\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Açıklama" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "ID unique alan\n\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son Güncelleyen" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son Güncellenme Zamanı\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "İsmi" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "orderPriority" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Sıralama Öncelik Bilgisi\n\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "status" + }, + "value": { + "element": "boolean", + "meta": { + "description": { + "element": "string", + "content": "Aktiflik Pasiflik Bilgisi" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "Root Type for BuildingType" + }, + "description": { + "element": "string", + "content": "Key Value şeklinde; Bina Türlerini ifade eder. Örnek : Yurt, Ofis, Nehari Yurt, Lokal, Hizmet Mahalli" + }, + "id": { + "element": "string", + "content": "definitions/BuildingTypeLOV" + } + }, + "attributes": { + "samples": { + "element": "array", + "content": [ + { + "element": "string", + "content": "{\n \"id\": 1,\n \"name\": \"some text\"\n}" + } + ] + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Bina Türü ID\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Bina Türü Adı" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "CitizenNumberVerify" + }, + "description": { + "element": "string", + "content": "Tc kimlik numarasını DOĞRULAYABİLMEK İÇİN gerekli olan bilgileri içerir. long string string int https://tckimlik.nvi.gov.tr/Service/KPSPublic.asmx?op=TCKimlikNoDogrula" + }, + "id": { + "element": "string", + "content": "definitions/CitizenNumberVerify" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "birthYear" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Dogum Tarihi" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "citizenNumber" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Vatandaslik numarasi" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "firstName" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Adi" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastName" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Soyadi" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "Root Type for InternalEducationGradeDTO" + }, + "description": { + "element": "string", + "content": "Kangurubu Veri Modeli" + }, + "id": { + "element": "string", + "content": "definitions/CitizenshipDTO" + } + }, + "attributes": { + "samples": { + "element": "array", + "content": [ + { + "element": "object", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "content": 79 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority" + }, + "value": { + "element": "number", + "content": 31 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status" + }, + "value": { + "element": "boolean", + "content": true + } + } + } + ] + } + ] + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Oluşturan Kullanıcı" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Oluşturulma Tarihi\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Açıklama" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "ID unique alan\n\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son Güncelleyen" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son Güncellenme Zamanı\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "İsmi" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "orderPriority" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Sıralama Öncelik Bilgisi\n\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "status" + }, + "value": { + "element": "boolean", + "meta": { + "description": { + "element": "string", + "content": "Aktiflik Pasiflik Bilgisi" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "CitizenshipLOV" + }, + "description": { + "element": "string", + "content": "Vatandaşlık bilgilerini taşır" + }, + "id": { + "element": "string", + "content": "definitions/CitizenshipLOV" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Unique ID\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Vatan adi. Kullanıcının tercih ettiği translation diline göre verilir." + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "CityDTO" + }, + "description": { + "element": "string", + "content": "Sehir tanimlarinin tutuldugu obje view - goruntu objesidir. @see GeographicBoundary @see GeographicBoundaryType @author The Aurora Developer team." + }, + "id": { + "element": "string", + "content": "definitions/CityDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "country" + }, + "value": { + "element": "definitions/CountryDTO" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "AutoIncrement Primary KEY\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degisiklik yapan Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degistirilme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "stateAddress" + }, + "value": { + "element": "definitions/StateAddressDTO" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "translation" + }, + "value": { + "element": "definitions/CityLangDTO" + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "CityLangDTO" + }, + "description": { + "element": "string", + "content": "Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team." + }, + "id": { + "element": "string", + "content": "definitions/CityLangDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "defaultLang" + }, + "value": { + "element": "boolean", + "meta": { + "description": { + "element": "string", + "content": "default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir." + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "ilgili dildeki, Uzun detayli aciklama bilgisi.\n\n- Length of string must be less than, or equal to 1000" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "AutoIncrement Primary KEY\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lang" + }, + "value": { + "element": "definitions/LanguageCodeDTO" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degisiklik yapan Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degistirilme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "ismin ilgili dildeki karsiligi\n\n- Length of string must be less than, or equal to 50\n- Length of string must be greater than, or equal to 1" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "ownerId" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Tercume edilen obje\n\n- Value must be of format 'int64'" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "ContactInfoCreateDTO" + }, + "description": { + "element": "string", + "content": "Sadece iletisim bilgisi olusturmak icin kullanılır. Telefon ve email vb tiplerdeki iletisim bilgilerini olustururken kullanılan dto dur." + }, + "id": { + "element": "string", + "content": "definitions/ContactInfoCreateDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "categories" + }, + "value": { + "element": "array", + "meta": { + "description": { + "element": "string", + "content": "Iletişim kategorileri. İş telefonu, ev telefonu, Acil durum telefonu, İş emaili, Ofis fax numarası " + } + }, + "content": [ + { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'int64'" + } + } + } + ] + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "contactInfo" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Iletisim bilgisi. Telefon, email vb." + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degisiklik yapan Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degistirilme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "ContactInfoDTO" + }, + "description": { + "element": "string", + "content": "Iletisim bilgilerini sunmak için kullanılır." + }, + "id": { + "element": "string", + "content": "definitions/ContactInfoDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "categories" + }, + "value": { + "element": "array", + "meta": { + "description": { + "element": "string", + "content": "Category of contact type. For example: Home address, Home telephone, Cell phone etc." + } + }, + "content": [ + { + "element": "definitions/ContactMediumCategoryLOV" + } + ] + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "contactInfo" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Telephone number or email address information depending on the type." + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Unique ID\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degisiklik yapan Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degistirilme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "Root Type for InternalEducationGradeDTO" + }, + "description": { + "element": "string", + "content": "Contact medium kategorileri. Bir kategori tipine ait veriyi tutar." + }, + "id": { + "element": "string", + "content": "definitions/ContactMediumCategoryDTO" + } + }, + "attributes": { + "samples": { + "element": "array", + "content": [ + { + "element": "object", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "content": 79 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority" + }, + "value": { + "element": "number", + "content": 31 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status" + }, + "value": { + "element": "boolean", + "content": true + } + } + } + ] + } + ] + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Oluşturan Kullanıcı" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Oluşturulma Tarihi\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Açıklama" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "ID unique alan\n\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son Güncelleyen" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son Güncellenme Zamanı\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "İsmi" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "orderPriority" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Sıralama Öncelik Bilgisi\n\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "status" + }, + "value": { + "element": "boolean", + "meta": { + "description": { + "element": "string", + "content": "Aktiflik Pasiflik Bilgisi" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "ContactMediumCategoryLOV" + }, + "description": { + "element": "string", + "content": "Contact medium kategorileri. Bir kategori tipine ait veriyi tutar." + }, + "id": { + "element": "string", + "content": "definitions/ContactMediumCategoryLOV" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Unique ID\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Category Name" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "ContactMediumCategoryLangDTO" + }, + "description": { + "element": "string", + "content": "Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team." + }, + "id": { + "element": "string", + "content": "definitions/ContactMediumCategoryLangDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "defaultLang" + }, + "value": { + "element": "boolean", + "meta": { + "description": { + "element": "string", + "content": "default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir." + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "ilgili dildeki, Uzun detayli aciklama bilgisi.\n\n- Length of string must be less than, or equal to 1000" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "langCode" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "langId" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Dil kodu bilgisinin icermektedir.\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degisiklik yapan Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degistirilme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "ismin ilgili dildeki karsiligi\n\n- Length of string must be less than, or equal to 50\n- Length of string must be greater than, or equal to 1" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "ownerId" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Tercume edilen obje\n\n- Value must be of format 'int64'" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "ContactMediumCategoryTypeLangDTO" + }, + "description": { + "element": "string", + "content": "Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team." + }, + "id": { + "element": "string", + "content": "definitions/ContactMediumCategoryTypeLangDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "defaultLang" + }, + "value": { + "element": "boolean", + "meta": { + "description": { + "element": "string", + "content": "default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir." + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "ilgili dildeki, Uzun detayli aciklama bilgisi.\n\n- Length of string must be less than, or equal to 1000" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "langCode" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "langId" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Dil kodu bilgisinin icermektedir.\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degisiklik yapan Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degistirilme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "ismin ilgili dildeki karsiligi\n\n- Length of string must be less than, or equal to 50\n- Length of string must be greater than, or equal to 1" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "ownerId" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Tercume edilen obje\n\n- Value must be of format 'int64'" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "Root Type for CorporationBuildInfo" + }, + "description": { + "element": "string", + "content": "Kurum İnşaat Bilgisi. Bir Kurum ilk inşaat statüsünde açılır. daha sonrasında aktif olur. İnşaat bilgisi Kurumun genel bilgileriyle benzerlik gösterir. Aslında planlanan Kurum bilgileridir." + }, + "id": { + "element": "string", + "content": "definitions/CorporationBuildInfoDTO" + } + }, + "attributes": { + "samples": { + "element": "array", + "content": [ + { + "element": "object", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "constructionDate" + }, + "value": { + "element": "string", + "content": "2018-01-17T00:00:00.000Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "content": 49 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "note" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "openedDate" + }, + "value": { + "element": "string", + "content": "2018-01-17T00:00:00.000Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "plannedCorporationFormalityStatus" + }, + "value": { + "element": "object", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "content": 47 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "content": "some text" + } + } + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "plannedFormalityStatus" + }, + "value": { + "element": "object", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "content": 43 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "content": "some text" + } + } + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "plannedGender" + }, + "value": { + "element": "object", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "content": 87 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "content": "some text" + } + } + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "plannedOwnershipStatus" + }, + "value": { + "element": "object", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "content": 33 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "content": "some text" + } + } + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "plannedQuota" + }, + "value": { + "element": "number", + "content": 70 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "plannedQuotaStudentClassification" + }, + "value": { + "element": "object", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "content": 50 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "content": "some text" + } + } + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "plannedUsageArea" + }, + "value": { + "element": "number", + "content": 51 + } + } + } + ] + } + ] + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "constructionDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "İnşaat Başlama Tarihi\n\n- Value must be of format 'date'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Kurum ID bilgisi\n\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "note" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Açıklama Bilgisi" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "openedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Açılış Tarihi\n\n- Value must be of format 'date'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "plannedCorporationFormalityStatus" + }, + "value": { + "element": "definitions/CorporationFormalityStatusLOV" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "plannedFormalityStatus" + }, + "value": { + "element": "definitions/FormalityStatusLOV" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "plannedGender" + }, + "value": { + "element": "definitions/GenderLOV" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "plannedOwnershipStatus" + }, + "value": { + "element": "definitions/OwnershipStatusLOV" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "plannedQuota" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Planlanan Kontenjan Bilgisi\n\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "plannedQuotaStudentClassification" + }, + "value": { + "element": "definitions/StudentClassificationLOV" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "plannedUsageArea" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Planlanan, Kullanım alanı metrekare olarak bilgisi\n\n- Value must be of format 'int32'" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "description": { + "element": "string", + "content": "Kurum kaydı oluşturmayı sağlayan objedir." + }, + "id": { + "element": "string", + "content": "definitions/CorporationCreateDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "activeCorporationInfo" + }, + "value": { + "element": "definitions/ActiveCorporationInfoDTO" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "address" + }, + "value": { + "element": "definitions/AddressCreateDTO" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "bolge" + }, + "value": { + "element": "definitions/BolgeLOV" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "buildInfo" + }, + "value": { + "element": "definitions/CorporationBuildInfoDTO" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "contactInfo" + }, + "value": { + "element": "definitions/ContactInfoCreateDTO" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "corporationCode" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Sistem tarafından generate edilen Kurum kodu bilgisidir." + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "corporationName" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Kurumun isim bilgisidir." + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "corporationStatus" + }, + "value": { + "element": "definitions/CorporationStatusLOV" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "mintika" + }, + "value": { + "element": "definitions/MintikaLOV" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "note" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Açıklama bilgisidir. " + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "Root Type for CorporationDTO" + }, + "description": { + "element": "string", + "content": "Kuruma ait ana bilgiler yer alır.\nÖrnek : ID, ADI, Organizasyonu, vb..." + }, + "id": { + "element": "string", + "content": "definitions/CorporationDTO" + } + }, + "attributes": { + "samples": { + "element": "array", + "content": [ + { + "element": "object", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "bolge" + }, + "value": { + "element": "object", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "content": 49 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "content": "some text" + } + } + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "code" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "content": 99 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "mintika" + }, + "value": { + "element": "object", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "content": 58 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "content": "some text" + } + } + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status" + }, + "value": { + "element": "object", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "content": 22 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "content": "some text" + } + } + } + ] + } + } + } + ] + } + ] + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "bolge" + }, + "value": { + "element": "definitions/BolgeLOV" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "code" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Kuruma verilen özel code bilgisidir. Kullanıcı tarafından belirli bir düzende oluşturulur." + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "generalInfo" + }, + "value": { + "element": "definitions/CorporationGeneralInfoDTO" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Kurum ID bilgisidir.\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "mintika" + }, + "value": { + "element": "definitions/MintikaLOV" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Kurum ismi bilgisidir." + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "status" + }, + "value": { + "element": "definitions/CorporationStatusLOV" + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "Root Type for CorporationDivisionDTO" + }, + "description": { + "element": "string", + "content": "Kurumdaki bolümleri ifade eden veri modelimizdir. Bina içerisindeki Kat, Blok, Bölüm vb.. bilgiler yer alır." + }, + "id": { + "element": "string", + "content": "definitions/CorporationDivisionDTO" + } + }, + "attributes": { + "samples": { + "element": "array", + "content": [ + { + "element": "string", + "content": "{\n \"id\":1,\n \"name\":\"some text\",\n \"status\":true\n}" + } + ] + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Unique ID\n\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Bölüm adı" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "status" + }, + "value": { + "element": "boolean", + "meta": { + "description": { + "element": "string", + "content": "Kuruma ait bölümün aktiflik bilgisi" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "Root Type for InternalEducationGradeDTO" + }, + "description": { + "element": "string", + "content": "Kurumun resmiyet ve hususiyet durumları : Resmi, hususi." + }, + "id": { + "element": "string", + "content": "definitions/CorporationFormalityStatusDTO" + } + }, + "attributes": { + "samples": { + "element": "array", + "content": [ + { + "element": "object", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "content": 79 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority" + }, + "value": { + "element": "number", + "content": 31 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status" + }, + "value": { + "element": "boolean", + "content": true + } + } + } + ] + } + ] + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Oluşturan Kullanıcı" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Oluşturulma Tarihi\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Açıklama" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "ID unique alan\n\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son Güncelleyen" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son Güncellenme Zamanı\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "İsmi" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "orderPriority" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Sıralama Öncelik Bilgisi\n\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "status" + }, + "value": { + "element": "boolean", + "meta": { + "description": { + "element": "string", + "content": "Aktiflik Pasiflik Bilgisi" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "Root Type for CorporationFormalStatusLOV" + }, + "description": { + "element": "string", + "content": "Kurumun resmiyet ve hususiyet durumları:\nÖrnek :\nKurum RESMİYET DURUMLARI\n\n RESMİ (seçilirse 2. combobox da çıkacak seçenekler)\n ORTAOKUL ERKEK YURDU\n ORTAOKUL KIZ YURDU\n ORTAÖĞRENİM ERKEK YURDU\n ORTAÖĞRENİM ERKEK PANSİYONU\n ORTAÖĞRENİM KIZ YURDU\n ORTAÖĞRENİM KIZ PANSİYONU\n YÜKSEKÖĞRENİM ERKEK YURDU\n YÜKSEKÖĞRENİM ERKEK PANSİYONU\n YÜKSEKÖĞRENİM ERKEK APARTI\n ERKEK KUR’AN KURSU\n KIZ KUR’AN KURSU\n HUSUSİ (seçilirse 2. combobox da çıkacak seçenekler)\n HUSUSİ YURT\n HUSUSİ EV YURDU" + }, + "id": { + "element": "string", + "content": "definitions/CorporationFormalityStatusLOV" + } + }, + "attributes": { + "samples": { + "element": "array", + "content": [ + { + "element": "string", + "content": "{\n \"id\": 1,\n \"name\": \"some text\"\n}" + } + ] + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Kurum resmiyet seçenekleri ID bilgisi\n\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Kurum resmiyet seçenekleri isim bilgisi" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "description": { + "element": "string", + "content": "Faal Kurum bilgisidir." + }, + "id": { + "element": "string", + "content": "definitions/CorporationGeneralInfoDTO" + } + }, + "attributes": { + "samples": { + "element": "array", + "content": [ + { + "element": "object", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "buildingType" + }, + "value": { + "element": "object", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "content": 71 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "content": "some text" + } + } + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "corporationFormalStatus" + }, + "value": { + "element": "object", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "content": 7 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "content": "some text" + } + } + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "formalName" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "formalityStatus" + }, + "value": { + "element": "object", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "content": 74 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "content": "some text" + } + } + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "openingDate" + }, + "value": { + "element": "string", + "content": "2018-01-17T00:00:00.000Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "ownershipStatus" + }, + "value": { + "element": "object", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "content": 12 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "content": "some text" + } + } + } + ] + } + } + } + ] + } + ] + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "buildingType" + }, + "value": { + "element": "definitions/BuildingTypeLOV" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "corporationFormalStatus" + }, + "value": { + "element": "definitions/CorporationFormalityStatusLOV" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "formalName" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Kurumun resmi adı bilgisidir." + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "formalityStatus" + }, + "value": { + "element": "definitions/FormalityStatusLOV" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "openingDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Açılış tarihi bilgisi.\n\n- Value must be of format 'date'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "ownershipStatus" + }, + "value": { + "element": "definitions/OwnershipStatusLOV" + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "Root Type for CorporationGeoLocationDTO" + }, + "description": { + "element": "string", + "content": "Kuruma ait Coğrafi Lokasyon veri modeli. Haritadaki GPS konum verisini (Koordinat) doner." + }, + "id": { + "element": "string", + "content": "definitions/CorporationGeoLocationDTO" + } + }, + "attributes": { + "samples": { + "element": "array", + "content": [ + { + "element": "string", + "content": "{\n \"id\":1,\n \"corporationId\":23,\n \"latitude\":\"40.54684564564564\",\n \"longitude\":\"20.556456464\"\n}" + } + ] + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "corporationId" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Kurum bilgisi\n\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Unique ID\n\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "latitude" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "longitude" + }, + "value": { + "element": "string" + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "CorporationLOV" + }, + "description": { + "element": "string", + "content": "Kurum tanimini tutar." + }, + "id": { + "element": "string", + "content": "definitions/CorporationLOV" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Unique ID\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Kurum adi. Kullanıcının tercih ettiği translation diline göre verilir." + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "Root Type for InternalEducationGradeDTO" + }, + "description": { + "element": "string", + "content": "Kurumun Statüleri belirler.\nÖrnek: Aktif, İnşaat, Kapalı, Tadilatta gibi durumlardır." + }, + "id": { + "element": "string", + "content": "definitions/CorporationStatusDTO" + } + }, + "attributes": { + "samples": { + "element": "array", + "content": [ + { + "element": "object", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "content": 79 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority" + }, + "value": { + "element": "number", + "content": 31 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status" + }, + "value": { + "element": "boolean", + "content": true + } + } + } + ] + } + ] + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Oluşturan Kullanıcı" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Oluşturulma Tarihi\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Açıklama" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "ID unique alan\n\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son Güncelleyen" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son Güncellenme Zamanı\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "İsmi" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "orderPriority" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Sıralama Öncelik Bilgisi\n\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "status" + }, + "value": { + "element": "boolean", + "meta": { + "description": { + "element": "string", + "content": "Aktiflik Pasiflik Bilgisi" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "Root Type for CorporationStatusLOV" + }, + "description": { + "element": "string", + "content": "Kurumun Statüleri belirler.\nÖrnek: Aktif, İnşaat, Kapalı, Tadilatta gibi durumlardır." + }, + "id": { + "element": "string", + "content": "definitions/CorporationStatusLOV" + } + }, + "attributes": { + "samples": { + "element": "array", + "content": [ + { + "element": "string", + "content": "{\n \"id\": 1,\n \"name\": \"some text\"\n}" + } + ] + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Kurum Status ID\n\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Kurum Status Name" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "Root Type for CorporationBuildInfo" + }, + "description": { + "element": "string", + "content": "Kurumda kalan talebe nevileri ve buna ait kontenjan bilgilerini içerir." + }, + "id": { + "element": "string", + "content": "definitions/CorporationStudentClassificationInfoDTO" + } + }, + "attributes": { + "samples": { + "element": "array", + "content": [ + { + "element": "object", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "gender" + }, + "value": { + "element": "object", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "content": 33 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "content": "some text" + } + } + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "note" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "quota" + }, + "value": { + "element": "number", + "content": 24 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "quotaStudentClassification" + }, + "value": { + "element": "array", + "content": [ + { + "element": "object", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "corporationID" + }, + "value": { + "element": "number", + "content": 95 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "corporationStatusID" + }, + "value": { + "element": "number", + "content": 59 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "quota" + }, + "value": { + "element": "number", + "content": 38 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "studentClassificationID" + }, + "value": { + "element": "number", + "content": 1 + } + } + } + ] + }, + { + "element": "object", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "corporationID" + }, + "value": { + "element": "number", + "content": 96 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "corporationStatusID" + }, + "value": { + "element": "number", + "content": 75 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "quota" + }, + "value": { + "element": "number", + "content": 86 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "studentClassificationID" + }, + "value": { + "element": "number", + "content": 28 + } + } + } + ] + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "usageArea" + }, + "value": { + "element": "number", + "content": 9 + } + } + } + ] + } + ] + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "gender" + }, + "value": { + "element": "definitions/GenderLOV" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "note" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Açıklama Bilgisi" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "quota" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Kontenjan Bilgisi\n\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "quotaStudentClassification" + }, + "value": { + "element": "array", + "meta": { + "description": { + "element": "string", + "content": "Kuruma alınacak Talebe nevisi." + } + }, + "content": [ + { + "element": "definitions/CorporationStudentClassificationQuotaDTO" + } + ] + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "usageArea" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Kullanım alanı metrekare olarak bilgisi\n\n- Value must be of format 'int32'" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "Root Type for corporationStudentClassificationQuota" + }, + "description": { + "element": "string", + "content": "Kurum Öğrenci Nevileri kota bilgisi. corporationID, corporationStatusID, studentClassificationID ve kontenjan bilgisi yer alır." + }, + "id": { + "element": "string", + "content": "definitions/CorporationStudentClassificationQuotaDTO" + } + }, + "attributes": { + "samples": { + "element": "array", + "content": [ + { + "element": "object", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "corporationID" + }, + "value": { + "element": "number", + "content": 95 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "corporationStatus" + }, + "value": { + "element": "object", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "content": 14 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "content": "some text" + } + } + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "quota" + }, + "value": { + "element": "number", + "content": 59 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "studentClassification" + }, + "value": { + "element": "object", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "gender" + }, + "value": { + "element": "object", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "content": 88 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "content": "some text" + } + } + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "note" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "quota" + }, + "value": { + "element": "number", + "content": 35 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "quotaStudentClassification" + }, + "value": { + "element": "array", + "content": [ + { + "element": "object", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "corporationID" + }, + "value": { + "element": "number", + "content": 56 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "corporationStatus" + }, + "value": { + "element": "object", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "content": 65 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "content": "some text" + } + } + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "quota" + }, + "value": { + "element": "number", + "content": 64 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "studentClassification" + }, + "value": { + "element": "object" + } + } + } + ] + }, + { + "element": "object", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "corporationID" + }, + "value": { + "element": "number", + "content": 94 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "corporationStatus" + }, + "value": { + "element": "object", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "content": 51 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "content": "some text" + } + } + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "quota" + }, + "value": { + "element": "number", + "content": 72 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "studentClassification" + }, + "value": { + "element": "object" + } + } + } + ] + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "usageArea" + }, + "value": { + "element": "number", + "content": 96 + } + } + } + ] + } + } + } + ] + } + ] + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "corporationID" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Kurum Bilgisi\n\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "corporationStatus" + }, + "value": { + "element": "definitions/CorporationStatusLOV" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "quota" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Kontenjan Bilgisi\n\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "studentClassification" + }, + "value": { + "element": "definitions/CorporationStudentClassificationInfoDTO" + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "CountryDTO" + }, + "description": { + "element": "string", + "content": "Ulke tanimlari @author The Aurora Developer team." + }, + "id": { + "element": "string", + "content": "definitions/CountryDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "AutoIncrement Primary KEY\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degisiklik yapan Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degistirilme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "translation" + }, + "value": { + "element": "definitions/CountryLangDTO" + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "CountryLangDTO" + }, + "description": { + "element": "string", + "content": "Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team." + }, + "id": { + "element": "string", + "content": "definitions/CountryLangDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "defaultLang" + }, + "value": { + "element": "boolean", + "meta": { + "description": { + "element": "string", + "content": "default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir." + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "ilgili dildeki, Uzun detayli aciklama bilgisi.\n\n- Length of string must be less than, or equal to 1000" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "AutoIncrement Primary KEY\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lang" + }, + "value": { + "element": "definitions/LanguageCodeDTO" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degisiklik yapan Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degistirilme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "ismin ilgili dildeki karsiligi\n\n- Length of string must be less than, or equal to 50\n- Length of string must be greater than, or equal to 1" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "ownerId" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Tercume edilen obje\n\n- Value must be of format 'int64'" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "Root Type for InternalEducationGradeDTO" + }, + "description": { + "element": "string", + "content": "Hastalık bilgilerini tutar. Hastalıklar etiket olarak tanımlanabilir." + }, + "id": { + "element": "string", + "content": "definitions/DiseaseDTO" + } + }, + "attributes": { + "samples": { + "element": "array", + "content": [ + { + "element": "object", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "content": 79 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority" + }, + "value": { + "element": "number", + "content": 31 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status" + }, + "value": { + "element": "boolean", + "content": true + } + } + } + ] + } + ] + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Oluşturan Kullanıcı" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Oluşturulma Tarihi\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Açıklama" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "ID unique alan\n\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son Güncelleyen" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son Güncellenme Zamanı\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "İsmi" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "orderPriority" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Sıralama Öncelik Bilgisi\n\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "status" + }, + "value": { + "element": "boolean", + "meta": { + "description": { + "element": "string", + "content": "Aktiflik Pasiflik Bilgisi" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "DiseaseLOV" + }, + "description": { + "element": "string", + "content": "Hastalık bilgilerini tutar. Hastalıklar etiket olarak tanımlanabilir." + }, + "id": { + "element": "string", + "content": "definitions/DiseaseLOV" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Unique ID\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Hastaligin adi" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "DistrictDTO" + }, + "description": { + "element": "string", + "content": "Ilce tanimlarinin tutuldugu obje @author The Aurora Developer team." + }, + "id": { + "element": "string", + "content": "definitions/DistrictDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "city" + }, + "value": { + "element": "definitions/CityDTO" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "AutoIncrement Primary KEY\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degisiklik yapan Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degistirilme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "translation" + }, + "value": { + "element": "definitions/DistrictLangDTO" + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "DistrictLangDTO" + }, + "description": { + "element": "string", + "content": "Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team." + }, + "id": { + "element": "string", + "content": "definitions/DistrictLangDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "defaultLang" + }, + "value": { + "element": "boolean", + "meta": { + "description": { + "element": "string", + "content": "default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir." + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "ilgili dildeki, Uzun detayli aciklama bilgisi.\n\n- Length of string must be less than, or equal to 1000" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "AutoIncrement Primary KEY\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lang" + }, + "value": { + "element": "definitions/LanguageCodeDTO" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degisiklik yapan Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degistirilme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "ismin ilgili dildeki karsiligi\n\n- Length of string must be less than, or equal to 50\n- Length of string must be greater than, or equal to 1" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "ownerId" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Tercume edilen obje\n\n- Value must be of format 'int64'" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "Root Type for InternalEducationGradeDTO" + }, + "description": { + "element": "string", + "content": "Eğitim kategorilerini tutar. Örneğin; Ön lisans, Lisans vb." + }, + "id": { + "element": "string", + "content": "definitions/EducationalStageDTO" + } + }, + "attributes": { + "samples": { + "element": "array", + "content": [ + { + "element": "object", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "content": 79 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority" + }, + "value": { + "element": "number", + "content": 31 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status" + }, + "value": { + "element": "boolean", + "content": true + } + } + } + ] + } + ] + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Oluşturan Kullanıcı" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Oluşturulma Tarihi\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Açıklama" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "ID unique alan\n\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son Güncelleyen" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son Güncellenme Zamanı\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "İsmi" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "orderPriority" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Sıralama Öncelik Bilgisi\n\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "status" + }, + "value": { + "element": "boolean", + "meta": { + "description": { + "element": "string", + "content": "Aktiflik Pasiflik Bilgisi" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "DocumentDTO" + }, + "description": { + "element": "string", + "content": "Evrağın bilgilerini tutar. Kişi veya kuruma ait evrak bilgileridir." + }, + "id": { + "element": "string", + "content": "definitions/DocumentDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Aciklama" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Unique ID\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degisiklik yapan Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degistirilme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "type" + }, + "value": { + "element": "definitions/DocumentTypeLOV" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityEndDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Gecerlilik suresi bitis tarihi\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "validityStartDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Gecerlilik suresi baslangic tarihi\n\n- Value must be of format 'date-time'" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "DocumentTypeLOV" + }, + "description": { + "element": "string", + "content": "Dökümanların tiplerinin tutulduğu yerdir. Örneğin : Transkript, öğrenci belgesi, ehliyet fotokopisi, İskan, KatPlanı, Ruhsat, Resim, Vergi levhası vs." + }, + "id": { + "element": "string", + "content": "definitions/DocumentTypeLOV" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Unique ID\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degisiklik yapan Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degistirilme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Adi" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "DormitoryLOV" + }, + "description": { + "element": "string", + "content": "Yurt tanimini tutar." + }, + "id": { + "element": "string", + "content": "definitions/DormitoryLOV" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Unique ID\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degisiklik yapan Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degistirilme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Yurt adi. Kullanıcının tercih ettiği translation diline göre verilir." + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "DutyCreateDTO" + }, + "description": { + "element": "string", + "content": "Bir kişiye yeni vazife eklemek için kullanılır. Vazife yeri ve vazife türü gibi verileri barındırır." + }, + "id": { + "element": "string", + "content": "definitions/DutyCreateDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "dutyId" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Vazife idsi\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "endDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Vazifelendirme bitiş tarihi\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "organizationId" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Vazifelendirilen kurum idsi. Ümraniye yurdu, Istanbul anadolu bölge sekreterya gibi.\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "startDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Vazifelendirme başlangıç tarihi.\n\n- Value must be of format 'date-time'" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "DutyDTO" + }, + "description": { + "element": "string", + "content": "Kisilere atanan vazifeler ve kurumunu tutmaktadır. Örneğin; Ümraniye erkek tekamul yurdunda yurt mesulu. İstanbul sekreteryada sekreter vb." + }, + "id": { + "element": "string", + "content": "definitions/DutyDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "dutyName" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Vazife adı" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "endDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Role end date\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Unique ID\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degisiklik yapan Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degistirilme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "organizationId" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Organization ID\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "organizationName" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Organization Name" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "startDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Start date of role\n\n- Value must be of format 'date-time'" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "EducationalStageLOV" + }, + "description": { + "element": "string", + "content": "Eğitim kategorilerini tutar. Örneğin; Ön lisans, Lisans vb." + }, + "id": { + "element": "string", + "content": "definitions/EducationalStageLOV" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Unique ID\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Name information" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "EducationalTermDTO" + }, + "description": { + "element": "string", + "content": "Bir eğitim döneminin tanımını tutar. Örneğin 2018-2019 Eğitim öğretim dönemi gibi." + }, + "id": { + "element": "string", + "content": "definitions/EducationalTermDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "endDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Donem bitis tarihi\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Unique ID\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degisiklik yapan Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degistirilme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Dönem adı" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "startDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Donem baslangic tarihi\n\n- Value must be of format 'date-time'" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "EmergencyContactInfoDTO" + }, + "description": { + "element": "string", + "content": "Personele ait acil durum iletişim bilgisidir." + }, + "id": { + "element": "string", + "content": "definitions/EmergencyContactInfoDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "fullName" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ad soyad bilgisidir." + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Unique ID\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "phoneNumber" + }, + "value": { + "element": "definitions/ContactInfoDTO" + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "EntityAuditEvent" + }, + "id": { + "element": "string", + "content": "definitions/EntityAuditEvent" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "action" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "- Length of string must be less than, or equal to 20" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "commitVersion" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "entityId" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "entityType" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "- Length of string must be less than, or equal to 255" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "entityValue" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "modifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "- Length of string must be less than, or equal to 100" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "modifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'date-time'" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "ErrorCodeDTO" + }, + "description": { + "element": "string", + "content": "Business Exceptionlar icin olusturulmus yapidir. Hata kodlari bu objede saklanir. @author The Aurora Developer team." + }, + "id": { + "element": "string", + "content": "definitions/ErrorCodeDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "code" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "hata kodu ," + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Error Code Unique Key\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "message" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Hata mesajinin acik bir sekilde loglanacak kismi" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "File" + }, + "id": { + "element": "string", + "content": "definitions/File" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "absolute" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "absoluteFile" + }, + "value": { + "element": "definitions/File" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "absolutePath" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "canonicalFile" + }, + "value": { + "element": "definitions/File" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "canonicalPath" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "directory" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "file" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "freeSpace" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "hidden" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "parent" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "parentFile" + }, + "value": { + "element": "definitions/File" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "path" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "totalSpace" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "usableSpace" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'int64'" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "ForeignLangInfoDTO" + }, + "description": { + "element": "string", + "content": "Referans tiplerinden gelicek olan yabancı dil bilgilerini kullanır." + }, + "id": { + "element": "string", + "content": "definitions/ForeignLangInfoDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "foreignLang" + }, + "value": { + "element": "definitions/ForeignLanguageLOV" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Unique ID\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degisiklik yapan Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degistirilme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "listening" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Foreign language listening score\n\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "reading" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Foreign language reading score\n\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "speaking" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Foreign language speaking score\n\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "writing" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Foreign language writing score\n\n- Value must be of format 'int32'" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "Root Type for InternalEducationGradeDTO" + }, + "description": { + "element": "string", + "content": "Sabit tanımlanmış yabancı dil bilgisini tutar. Comboboxlar için yabancı dil listesi dönmek için kullanılmaktadır. LanguageCode ile aynı veri değildir. Bu dtoya sağlanan veride olası bütün yabancı diller bulunabilir. LanguageCode sadece sistem içerisinde kullanılan dilleri içerir." + }, + "id": { + "element": "string", + "content": "definitions/ForeignLanguageDTO" + } + }, + "attributes": { + "samples": { + "element": "array", + "content": [ + { + "element": "object", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "content": 79 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority" + }, + "value": { + "element": "number", + "content": 31 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status" + }, + "value": { + "element": "boolean", + "content": true + } + } + } + ] + } + ] + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Oluşturan Kullanıcı" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Oluşturulma Tarihi\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Açıklama" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "ID unique alan\n\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son Güncelleyen" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son Güncellenme Zamanı\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "İsmi" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "orderPriority" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Sıralama Öncelik Bilgisi\n\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "status" + }, + "value": { + "element": "boolean", + "meta": { + "description": { + "element": "string", + "content": "Aktiflik Pasiflik Bilgisi" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "ForeignLanguageLOV" + }, + "description": { + "element": "string", + "content": "Sabit tanımlanmış yabancı dil bilgisini tutar. Comboboxlar için yabancı dil listesi dönmek için kullanılmaktadır. LanguageCode ile aynı veri değildir. Bu dtoya sağlanan veride olası bütün yabancı diller bulunabilir. LanguageCode sadece sistem içerisinde kullanılan dilleri içerir." + }, + "id": { + "element": "string", + "content": "definitions/ForeignLanguageLOV" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "code" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Yabancı Dil bilgisi kodu" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Unique ID\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Yabancı Dil bilgisi adi" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "Root Type for InternalEducationGradeDTO" + }, + "description": { + "element": "string", + "content": "Örgün eğitime ait okul seviyelerini tutar. Örneğin; Orta okul 1.Sınıf, Meslek lisesi 2.Sınıf, Üniversite 3.Sınıf vb." + }, + "id": { + "element": "string", + "content": "definitions/FormalEducationGradeDTO" + } + }, + "attributes": { + "samples": { + "element": "array", + "content": [ + { + "element": "object", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "content": 79 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority" + }, + "value": { + "element": "number", + "content": 31 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status" + }, + "value": { + "element": "boolean", + "content": true + } + } + } + ] + } + ] + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Oluşturan Kullanıcı" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Oluşturulma Tarihi\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Açıklama" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "ID unique alan\n\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son Güncelleyen" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son Güncellenme Zamanı\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "İsmi" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "orderPriority" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Sıralama Öncelik Bilgisi\n\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "status" + }, + "value": { + "element": "boolean", + "meta": { + "description": { + "element": "string", + "content": "Aktiflik Pasiflik Bilgisi" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "FormalEducationGradeInfoDTO" + }, + "description": { + "element": "string", + "content": "Bir kişinin aldığı eğitimin bir dönemine ait bilgileri tutmaktadır.\n Örneğin 4 yıllık bilgisayar mühendisliği bölümünden mezun olan bir kişi için bu dto dan 4 instance tutulmalı ve şu verileri barındırmalı.\n\n 1 - Formal Education - Iğdır üniversitesi - Mühendislik fakültesi - Bilgisayar mühendisliği - 2010.10.01(dönem başlangıcı) - 2011.05.02( dönem bitişi )\n 2 - Formal Education - Iğdır üniversitesi - Mühendislik fakültesi - Bilgisayar mühendisliği - 2011.10.01(dönem başlangıcı) - 2012.05.02( dönem bitişi )\n 3 - Formal Education - Abant Izzet Baysal üniversitesi - Mühendislik ve mimarlık fakültesi - Bilgisayar mühendisliği - 2012.10.01(dönem başlangıcı) - 2013.05.02( dönem bitişi )\n 4 - Formal Education - Abant Izzet Baysal üniversitesi - Mühendislik ve mimarlık fakültesi - Bilgisayar mühendisliği - 2013.10.01(dönem başlangıcı) - 2014.05.02( dönem bitişi )\n\n Yukarıdaki örnekteki tek bir satırı bu dto tutmaktadır.\n Kişi sonuç olarak Abant izzet baysal üniversitesi bilgisayar mühendisliği diplomasına sahip olsada dönemsel olarak eğitim verileri bu şekildedir.\n" + }, + "id": { + "element": "string", + "content": "definitions/FormalEducationGradeInfoDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "department" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Fakulte ve Bölüm bilgileri yer alır. Örneğin : Sosyal bilimler MYO - Pazarlama bölümü" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "educationLangName" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "The language name used while learning" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "educationStageName" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Education stage. For example : Associate degree, Licanse degree etc.. " + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "educationalGradeName" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Sınıf seviye adi" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Unique ID\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degisiklik yapan Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degistirilme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "school" + }, + "value": { + "element": "definitions/SchoolProfileDTO" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "term" + }, + "value": { + "element": "definitions/EducationalTermDTO" + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "FormalEducationGradeLOV" + }, + "description": { + "element": "string", + "content": "Örgün eğitime ait okul seviyelerini tutar. Örneğin; Orta okul 1.Sınıf, Meslek lisesi 2.Sınıf, Üniversite 3.Sınıf vb." + }, + "id": { + "element": "string", + "content": "definitions/FormalEducationGradeLOV" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Unique ID\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degisiklik yapan Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degistirilme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Okul seviye adi" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "Root Type for InternalEducationGradeDTO" + }, + "description": { + "element": "string", + "content": "Resmiyet durumları. Örnek: Resmi ve hususi.\nResmi : Devlet nezdinde resmiyete kavuşturulmuş (tapu, vergi, vb.) kurumlar için kullanılır.\nHususi : Henüz devlet nezdinde resmiyete kavuşturulamamış kurumları ifade eder." + }, + "id": { + "element": "string", + "content": "definitions/FormalityStatusDTO" + } + }, + "attributes": { + "samples": { + "element": "array", + "content": [ + { + "element": "object", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "content": 79 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority" + }, + "value": { + "element": "number", + "content": 31 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status" + }, + "value": { + "element": "boolean", + "content": true + } + } + } + ] + } + ] + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Oluşturan Kullanıcı" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Oluşturulma Tarihi\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Açıklama" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "ID unique alan\n\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son Güncelleyen" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son Güncellenme Zamanı\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "İsmi" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "orderPriority" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Sıralama Öncelik Bilgisi\n\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "status" + }, + "value": { + "element": "boolean", + "meta": { + "description": { + "element": "string", + "content": "Aktiflik Pasiflik Bilgisi" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "description": { + "element": "string", + "content": "Resmiyet durumları. Örnek: Resmi ve hususi.\nResmi : Devlet nezdinde resmiyete kavuşturulmuş (tapu, vergi, vb.) kurumlar için kullanılır.\nHususi : Henüz devlet nezdinde resmiyete kavuşturulamamış kurumları ifade eder." + }, + "id": { + "element": "string", + "content": "definitions/FormalityStatusLOV" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Resmiyet statusü id bilgisi.\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Resmiyet statüsüne ait isim bilgisi." + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "Root Type for FoundationDTO" + }, + "description": { + "element": "string", + "content": "Vakıf-Dernek veri modelidir." + }, + "id": { + "element": "string", + "content": "definitions/FoundationDTO" + } + }, + "attributes": { + "samples": { + "element": "array", + "content": [ + { + "element": "string", + "content": "{\n \"id\": 1,\n \"name\": \"some text\",\n \"bolge\": {},\n \"mintika\": {},\n \"addresses\": {},\n \"contacts\": {}\n}" + } + ] + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "addresses" + }, + "value": { + "element": "definitions/AddressCreateDTO" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "bolge" + }, + "value": { + "element": "definitions/BolgeLOV" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "contacts" + }, + "value": { + "element": "definitions/ContactInfoCreateDTO" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Vakıf Dernek ID bilgisidir.\n\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "mintika" + }, + "value": { + "element": "definitions/MintikaLOV" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Vakfın ismi." + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "Root Type for FoundationLOV" + }, + "description": { + "element": "string", + "content": "Vakıf - Dernek List of values" + }, + "id": { + "element": "string", + "content": "definitions/FoundationLOV" + } + }, + "attributes": { + "samples": { + "element": "array", + "content": [ + { + "element": "string", + "content": "{\n \"id\":1,\n \"name\":\"some text\"\n}" + } + ] + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string" + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "Root Type for InternalEducationGradeDTO" + }, + "description": { + "element": "string", + "content": "Cinsiyet tanimini tutar." + }, + "id": { + "element": "string", + "content": "definitions/GenderDTO" + } + }, + "attributes": { + "samples": { + "element": "array", + "content": [ + { + "element": "object", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "content": 79 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority" + }, + "value": { + "element": "number", + "content": 31 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status" + }, + "value": { + "element": "boolean", + "content": true + } + } + } + ] + } + ] + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Oluşturan Kullanıcı" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Oluşturulma Tarihi\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Açıklama" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "ID unique alan\n\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son Güncelleyen" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son Güncellenme Zamanı\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "İsmi" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "orderPriority" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Sıralama Öncelik Bilgisi\n\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "status" + }, + "value": { + "element": "boolean", + "meta": { + "description": { + "element": "string", + "content": "Aktiflik Pasiflik Bilgisi" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "FormalEducationalGradeInfoCreateDTO" + }, + "description": { + "element": "string", + "content": "Bir kisiye ait yeni bir örgün eğitim dönemi tanımlarken kullanılır. Kişinin eğitim bilgisi ( hangi okulda hangi bölümü ne zaman okumuş vb. ) eğitim dönemlerine bölünerek tutulmaktadır. Bu dto tek bir eğitim dönemi oluşturmak için kullanılır." + }, + "id": { + "element": "string", + "content": "definitions/FormalEducationalGradeInfoCreateDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "departmentName" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eğitim gördüğü fakülte ve bölüm bilgisi" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "educationLangId" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Döneme ait eğitim dili bilgisi.\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "educationStageId" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Eğitim görülen kademe. Lisans, yüksek lisans, lise vb.\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "educationalGradeId" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Eğitim sınıfı bilgisi. \n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degisiklik yapan Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degistirilme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "schoolId" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Eğitim görülen okul bilgisi\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "termId" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Eğitim dönemi bilgisi.\n\n- Value must be of format 'int64'" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "GenderLOV" + }, + "description": { + "element": "string", + "content": "Cinsiyet tanimini tutar." + }, + "id": { + "element": "string", + "content": "definitions/GenderLOV" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Unique ID\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Cinsiyet adi" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "GeneralHealthInfoDTO" + }, + "description": { + "element": "string", + "content": "Kisiye ait bedeni saglik bilgilerini tutar. Boy kilo kan grubu gibi. Rahatsızlık bilgilerini barındırmaz." + }, + "id": { + "element": "string", + "content": "definitions/GeneralHealthInfoDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "bloodGroup" + }, + "value": { + "element": "definitions/BloodGroupLOV" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Unique ID\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degisiklik yapan Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degistirilme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "length" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Body length of person\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lengthMeasurementUnit" + }, + "value": { + "element": "definitions/LengthMeasurementUnitLOV" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "weight" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Body weight of person\n\n- Value must be of format 'double'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "weightMeasurementUnit" + }, + "value": { + "element": "definitions/WeightMeasurementUnitLOV" + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "GeographicBoundaryLangDTO" + }, + "description": { + "element": "string", + "content": "Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team." + }, + "id": { + "element": "string", + "content": "definitions/GeographicBoundaryLangDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "defaultLang" + }, + "value": { + "element": "boolean", + "meta": { + "description": { + "element": "string", + "content": "default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir." + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "ilgili dildeki, Uzun detayli aciklama bilgisi.\n\n- Length of string must be less than, or equal to 1000" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "langCode" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "langId" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Dil kodu bilgisinin icermektedir.\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degisiklik yapan Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degistirilme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "ismin ilgili dildeki karsiligi\n\n- Length of string must be less than, or equal to 50\n- Length of string must be greater than, or equal to 1" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "ownerId" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Tercume edilen obje\n\n- Value must be of format 'int64'" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "GeographicBoundaryRelTypeLangDTO" + }, + "description": { + "element": "string", + "content": "Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team." + }, + "id": { + "element": "string", + "content": "definitions/GeographicBoundaryRelTypeLangDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "defaultLang" + }, + "value": { + "element": "boolean", + "meta": { + "description": { + "element": "string", + "content": "default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir." + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "ilgili dildeki, Uzun detayli aciklama bilgisi.\n\n- Length of string must be less than, or equal to 1000" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "langCode" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "langId" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Dil kodu bilgisinin icermektedir.\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degisiklik yapan Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degistirilme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "ismin ilgili dildeki karsiligi\n\n- Length of string must be less than, or equal to 50\n- Length of string must be greater than, or equal to 1" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "ownerId" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Tercume edilen obje\n\n- Value must be of format 'int64'" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "GeographicBoundaryTreeDTO" + }, + "description": { + "element": "string", + "content": "Adres Datalarinin tutuldugu yerdir. Ornek Data: Turkiye, Istanbul, Uskudar, Kisikli Mahallesi, Hanimseti sokak gibi verileri tutar @author The Aurora Developer team." + }, + "id": { + "element": "string", + "content": "definitions/GeographicBoundaryTreeDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "code" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "orderPriority" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "parentCode" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "parentId" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "parentName" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "parentTypeName" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "relationName" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "status" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "subCount" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "subs" + }, + "value": { + "element": "array", + "content": [ + { + "element": "definitions/GeographicBoundaryTreeDTO" + } + ] + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "typeName" + }, + "value": { + "element": "string" + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "GeographicBoundaryTypeLangDTO" + }, + "description": { + "element": "string", + "content": "Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team." + }, + "id": { + "element": "string", + "content": "definitions/GeographicBoundaryTypeLangDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "defaultLang" + }, + "value": { + "element": "boolean", + "meta": { + "description": { + "element": "string", + "content": "default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir." + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "ilgili dildeki, Uzun detayli aciklama bilgisi.\n\n- Length of string must be less than, or equal to 1000" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "langCode" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "langId" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Dil kodu bilgisinin icermektedir.\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degisiklik yapan Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degistirilme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "ismin ilgili dildeki karsiligi\n\n- Length of string must be less than, or equal to 50\n- Length of string must be greater than, or equal to 1" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "ownerId" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Tercume edilen obje\n\n- Value must be of format 'int64'" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "Root Type for InternalEducationGradeDTO" + }, + "description": { + "element": "string", + "content": "Hafızlık durumlarının tanımlarıdır." + }, + "id": { + "element": "string", + "content": "definitions/HafizStatusDTO" + } + }, + "attributes": { + "samples": { + "element": "array", + "content": [ + { + "element": "object", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "content": 79 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority" + }, + "value": { + "element": "number", + "content": 31 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status" + }, + "value": { + "element": "boolean", + "content": true + } + } + } + ] + } + ] + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Oluşturan Kullanıcı" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Oluşturulma Tarihi\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Açıklama" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "ID unique alan\n\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son Güncelleyen" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son Güncellenme Zamanı\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "İsmi" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "orderPriority" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Sıralama Öncelik Bilgisi\n\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "status" + }, + "value": { + "element": "boolean", + "meta": { + "description": { + "element": "string", + "content": "Aktiflik Pasiflik Bilgisi" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "HafizStatusLOV" + }, + "description": { + "element": "string", + "content": "Hafızlık durumlarının tanımlarıdır." + }, + "id": { + "element": "string", + "content": "definitions/HafizStatusLOV" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Unique ID\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Hafizlik durum adi" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "HealthInfoDTO" + }, + "description": { + "element": "string", + "content": "Kisiye ait saglik bilgilerini tutar." + }, + "id": { + "element": "string", + "content": "definitions/HealthInfoDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "bloodGroup" + }, + "value": { + "element": "definitions/BloodGroupLOV" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "diseases" + }, + "value": { + "element": "array", + "meta": { + "description": { + "element": "string", + "content": "Disease informations" + } + }, + "content": [ + { + "element": "definitions/HealthProblemDTO" + } + ] + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Unique ID\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degisiklik yapan Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degistirilme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "length" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Body length of person\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lengthMeasurementUnit" + }, + "value": { + "element": "definitions/LengthMeasurementUnitLOV" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "weight" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Body weight of person\n\n- Value must be of format 'double'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "weightMeasurementUnit" + }, + "value": { + "element": "definitions/WeightMeasurementUnitLOV" + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "HealthProblemDTO" + }, + "description": { + "element": "string", + "content": "Kişilere ait sağlık problemlerinin tanımını tutar. Hastalık tipi örnek olarak : Geçirdiği rahatsızlıklar, devam eden rahatsızlıklar olabilir. Hastalık devamlılığı türüdür." + }, + "id": { + "element": "string", + "content": "definitions/HealthProblemDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Geçirilen rahatsızlıkla ilgili açıklama ve notlar." + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "disease" + }, + "value": { + "element": "definitions/DiseaseLOV" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Unique ID\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degisiklik yapan Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degistirilme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "type" + }, + "value": { + "element": "definitions/HealthProblemTypeLOV" + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "Root Type for InternalEducationGradeDTO" + }, + "description": { + "element": "string", + "content": "Hastalık türüdür. Örneğin; Geçirilmiş rahatsızlıklar, devam eden rahatsızlıklar vb." + }, + "id": { + "element": "string", + "content": "definitions/HealthProblemTypeDTO" + } + }, + "attributes": { + "samples": { + "element": "array", + "content": [ + { + "element": "object", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "content": 79 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority" + }, + "value": { + "element": "number", + "content": 31 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status" + }, + "value": { + "element": "boolean", + "content": true + } + } + } + ] + } + ] + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Oluşturan Kullanıcı" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Oluşturulma Tarihi\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Açıklama" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "ID unique alan\n\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son Güncelleyen" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son Güncellenme Zamanı\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "İsmi" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "orderPriority" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Sıralama Öncelik Bilgisi\n\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "status" + }, + "value": { + "element": "boolean", + "meta": { + "description": { + "element": "string", + "content": "Aktiflik Pasiflik Bilgisi" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "HealthProblemTypeLOV" + }, + "description": { + "element": "string", + "content": "Hastalık türüdür. Örneğin; Geçirilmiş rahatsızlıklar, devam eden rahatsızlıklar vb." + }, + "id": { + "element": "string", + "content": "definitions/HealthProblemTypeLOV" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Unique ID\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Hastalık türü adı" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "Root Type for InternalEducationGradeDTO" + }, + "description": { + "element": "string", + "content": "Dahili ders seviye bilgisine ait objedir." + }, + "id": { + "element": "string", + "content": "definitions/InternalEducationGradeDTO" + } + }, + "attributes": { + "samples": { + "element": "array", + "content": [ + { + "element": "object", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "content": 79 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority" + }, + "value": { + "element": "number", + "content": 31 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status" + }, + "value": { + "element": "boolean", + "content": true + } + } + } + ] + } + ] + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Oluşturan Kullanıcı" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Oluşturulma Tarihi\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Açıklama" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "ID unique alan\n\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son Güncelleyen" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son Güncellenme Zamanı\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "İsmi" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "orderPriority" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Sıralama Öncelik Bilgisi\n\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "status" + }, + "value": { + "element": "boolean", + "meta": { + "description": { + "element": "string", + "content": "Aktiflik Pasiflik Bilgisi" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "IdentificationInfoDTO" + }, + "description": { + "element": "string", + "content": "Kisiye ait kimlik bilgilerini tutar." + }, + "id": { + "element": "string", + "content": "definitions/IdentificationInfoDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "birthDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Dogum Tarihi\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "birthPlaceName" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Dogum Yeri adi" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "citizenNumber" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Vatandaslik numarasi" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "citizenshipId" + }, + "value": { + "element": "definitions/CitizenshipLOV" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "firstName" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Adi" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "gender" + }, + "value": { + "element": "definitions/GenderLOV" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degisiklik yapan Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degistirilme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastName" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Soyadi" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "InputStream" + }, + "id": { + "element": "string", + "content": "definitions/InputStream" + } + } + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "InternalEducationGradeInfoDTO" + }, + "description": { + "element": "string", + "content": "Talebe veya personelin dahili egitim donemini tutar. Dahili egitim donemi bir kisinin bir Kurumda gecirdigi bir donemi sergiler. Örneğin; 2018-2019 Dahili ders dönemi Ümraniye Kurumunda S1 sınıfı öğrencisi gibi bir bilgi tutulur." + }, + "id": { + "element": "string", + "content": "definitions/InternalEducationGradeInfoDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "corporation" + }, + "value": { + "element": "definitions/CorporationLOV" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "educationalGradeName" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eğitim sınıfı adı" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "educationalStageName" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eğitim kademe adı" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Unique ID\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degisiklik yapan Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degistirilme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "term" + }, + "value": { + "element": "definitions/EducationalTermDTO" + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "InternalEducationGradeLOV" + }, + "description": { + "element": "string", + "content": "Dahili eğitim seviyeleri. Örneğin; S1, S2, S3, S4, S5, S6, S7, ibtidai, ihzari, tekamul altı, tekamul, üniversite Kuran-ı Kerim" + }, + "id": { + "element": "string", + "content": "definitions/InternalEducationGradeLOV" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Unique ID\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Dahili egitim seviyesi adi" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "JWTToken" + }, + "id": { + "element": "string", + "content": "definitions/JWTToken" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id_token" + }, + "value": { + "element": "string" + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "KeyAndPasswordVM" + }, + "id": { + "element": "string", + "content": "definitions/KeyAndPasswordVM" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "key" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "newPassword" + }, + "value": { + "element": "string" + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "LanguageCodeDTO" + }, + "description": { + "element": "string", + "content": "Programin destekledigi dillerin kodlarini icerir Languages codes are ISO_639-1 codes, see http: Codes for the Representation of Names of Languages Codes arranged alphabetically by alpha-3/ISO 639-2 Code Note: ISO 639-2 is the alpha-3 code in Codes for the representation of names of languages-- Part 2. There are 21 languages that have alternative codes for bibliographic or terminology purposes. In those cases, each is listed separately and they are designated as \"B\" (bibliographic) or \"T\" (terminology). In all other cases there is only one ISO 639-2 code. Multiple codes assigned to the same language are to be considered synonyms. ISO 639-1 is the alpha-2 code. @author Aurora Developer team." + }, + "id": { + "element": "string", + "content": "definitions/LanguageCodeDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "attributes" + }, + "value": { + "element": "object", + "meta": { + "description": { + "element": "string", + "content": "organizasyon tipinin ek alanları." + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "code" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "gobal dil kodu. tr, en, fr vb.. ISO 639-1 Code \"https:\n\n- Length of string must be less than, or equal to 50" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Sorumluluk detayli aciklama\n\n- Length of string must be less than, or equal to 1000" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "englishName" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Dilin ingilizce ismi. kullanim kolayligi icin konulmustur.\n\n- Length of string must be less than, or equal to 50\n- Length of string must be greater than, or equal to 1" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "icon" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Dil icin icon bilgisi\n\n- Length of string must be less than, or equal to 1000" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "AutoIncrement Primary KEY\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "iso6392Code" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "ISO 639-2 dil kodlari. tur, eng vb.. ISO 639-2 Code \"https:\n\n- Length of string must be less than, or equal to 50\n- Length of string must be greater than, or equal to 1" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degisiklik yapan Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degistirilme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "dilin original ismi. ENGLISH, TURKCE VS...\n\n- Length of string must be less than, or equal to 50\n- Length of string must be greater than, or equal to 1" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "orderPriority" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Siralama oncelik bilgisidir.\n\n- Number must be less than, or equal to 999999\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "status" + }, + "value": { + "element": "boolean", + "meta": { + "description": { + "element": "string", + "content": "Aktif pasiflik bilgisi" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "LanguageCodeLOV" + }, + "description": { + "element": "string", + "content": "* Sabit tanımlanmış dil bilgisini tutar. Comboboxlar için dil listesi dönmek için kullanılmaktadır. ForeignLanguage bilgisi ile aynı veriyi sağlamaz. Bu dto içerisinde sadece sistem ( translation vb. ) işlemlerinde kullanılabilir dil bilgileri yer alır." + }, + "id": { + "element": "string", + "content": "definitions/LanguageCodeLOV" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "englishName" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Dil bilgisi ingilizce adi" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Unique ID\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Dil bilgisi adi" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "Root Type for InternalEducationGradeDTO" + }, + "description": { + "element": "string", + "content": "Uzunluk ölçü birimleridir. Ölçüm sistemi farketmez. Örneğin : cm, metre, desimetre, mil, km vb.. " + }, + "id": { + "element": "string", + "content": "definitions/LengthMeasurementUnitDTO" + } + }, + "attributes": { + "samples": { + "element": "array", + "content": [ + { + "element": "object", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "content": 79 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority" + }, + "value": { + "element": "number", + "content": 31 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status" + }, + "value": { + "element": "boolean", + "content": true + } + } + } + ] + } + ] + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Oluşturan Kullanıcı" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Oluşturulma Tarihi\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Açıklama" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "ID unique alan\n\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son Güncelleyen" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son Güncellenme Zamanı\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "İsmi" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "orderPriority" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Sıralama Öncelik Bilgisi\n\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "status" + }, + "value": { + "element": "boolean", + "meta": { + "description": { + "element": "string", + "content": "Aktiflik Pasiflik Bilgisi" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "LengthMeasurementUnitLOV" + }, + "description": { + "element": "string", + "content": "Uzunluk ölçü birimleridir. Ölçüm sistemi farketmez. Örneğin : cm, metre, desimetre, mil, km vb.. " + }, + "id": { + "element": "string", + "content": "definitions/LengthMeasurementUnitLOV" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Unique ID\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Adi" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "LogOptionDTO" + }, + "description": { + "element": "string", + "content": "Methodlarin Loglama yontemini, seklini yonetmek icin kullanilacaktir. Her methoda bir ozellik atanir ve bu yontem uzerine loglama yapilir. @author The Aurora Developer team." + }, + "id": { + "element": "string", + "content": "definitions/LogOptionDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "AutoIncrement Primary KEY\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "methodFullName" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "methodId" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "methodlara-yetkilere sorumluluk eslestirme\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "optionType" + }, + "value": { + "element": "enum", + "meta": { + "description": { + "element": "string", + "content": "loglama yontemi. input loglansin, input ve output loglansin, input ve output haricinde sadece hata loglansin" + } + }, + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "LEVEL_0" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "LEVEL_1" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "LEVEL_2" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "LEVEL_3" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "LEVEL_4" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "LEVEL_5" + } + ] + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "LogOptionTypeDTO" + }, + "id": { + "element": "string", + "content": "definitions/LogOptionTypeDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "- Length of string must be less than, or equal to 4000" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "AutoIncrement Primary KEY\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degisiklik yapan Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degistirilme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "- Length of string must be less than, or equal to 100\n- Length of string must be greater than, or equal to 2" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "LoggingBrowserConfigDTO" + }, + "id": { + "element": "string", + "content": "definitions/LoggingBrowserConfigDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "enabled" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "loggingTypes" + }, + "value": { + "element": "array", + "content": [ + { + "element": "definitions/LoggingBrowserEventTypeDTO" + } + ] + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "LoggingBrowserEventDTO" + }, + "description": { + "element": "string", + "content": "Browser eventlerini loglamak icin kullanilmaktadir. Uygulamamiz browserdan calistiginda, sayfa gecislerini-url degisimlerini ve servis cagrimlarini loglamak icin kullaniyoruz. @author The Aurora Developer team." + }, + "id": { + "element": "string", + "content": "definitions/LoggingBrowserEventDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "browserVersion" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "browser bilgisi\n\n- Length of string must be less than, or equal to 4000" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "channelEventId" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Channel EventID, UI event id dir. servis cagrimi yapan uygulamanin kendine verdigi isim\n\n- Length of string must be less than, or equal to 250" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "channelName" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Log kanal Bilgisi. Uygulama, web, desktop, mobil\n\n- Length of string must be less than, or equal to 250" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "currentRoute" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "rest api url bilgisi, parametreler haric\n\n- Length of string must be less than, or equal to 4000" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "data" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "geri kalan hersey.\n\n- Length of string must be less than, or equal to 4000" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "endTime" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Servis response zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "eventType" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "event type\n\n- Length of string must be less than, or equal to 4000" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "AutoIncrement Primary KEY\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "requestMethod" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Request Methodu\n\n- Length of string must be less than, or equal to 4000" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "requestUrl" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "rest api url bilgisi, parametreler haric\n\n- Length of string must be less than, or equal to 4000" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "responseStatus" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "response status\n\n- Length of string must be less than, or equal to 4000" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "startTime" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Servis tetiklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "userName" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Kullanici Adi bilgisidir.\n\n- Length of string must be less than, or equal to 50" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "LoggingBrowserEventTypeDTO" + }, + "id": { + "element": "string", + "content": "definitions/LoggingBrowserEventTypeDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "typeName" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "value" + }, + "value": { + "element": "boolean" + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "LoggingBusinessDTO" + }, + "description": { + "element": "string", + "content": "Business logic log kayitlari. uygulamamizin business islemlerinde basarili veya basariz durumlari kayit altina alinir. @author The Aurora Developer team." + }, + "id": { + "element": "string", + "content": "definitions/LoggingBusinessDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "apiUrl" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "rest api url bilgisi, parametreler haric\n\n- Length of string must be less than, or equal to 250" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "channelEventId" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Channel EventID, UI event id dir.\n\n- Length of string must be less than, or equal to 250" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "channelName" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Log kanal Bilgisi. Uygulama, web, desktop, mobil\n\n- Length of string must be less than, or equal to 250" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "className" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Servis class ismidir.\n\n- Length of string must be less than, or equal to 250" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "endTime" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Servis response zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "exceptionCause" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Hata mesajinin cause bilgisi. Nedeni.\n\n- Length of string must be less than, or equal to 4000" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "exceptionMessage" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Hata Mesaji\n\n- Length of string must be less than, or equal to 4000" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "exceptionStackTrace" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Full Hata mesaji stacktrace\n\n- Length of string must be less than, or equal to 4000" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "exceptionType" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Hata tipi\n\n- Length of string must be less than, or equal to 4000" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "exitCode" + }, + "value": { + "element": "enum", + "meta": { + "description": { + "element": "string", + "content": "Servis cagriminin sonlanma sekli. SUCCESS, BUSINESS_EXCEPTION, SYSTEM_EXCEPTION" + } + }, + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "BUSINESS_EXCEPTION" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "CLIENT_ERROR" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "INFORMATIONAL" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "REDIRECTION" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SERVER_ERROR" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SUCCESS" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "SYSTEM_EXCEPTION" + } + ] + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "AutoIncrement Primary KEY\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "jsonRequestParam" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "JSON request parametrelerin degerleri\n\n- Length of string must be less than, or equal to 4000" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "jsonResponseParam" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "JSON response parametre degerleri\n\n- Length of string must be less than, or equal to 4000" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "methodName" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Servis method ismidir.\n\n- Length of string must be less than, or equal to 250" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "packName" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "java package full name\n\n- Length of string must be less than, or equal to 250" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "requestType" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Request Type GET, POST, PUT, DELETE\n\n- Length of string must be less than, or equal to 250" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "startTime" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Servis tetiklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "userName" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Kullanici Adi bilgisidir.\n\n- Length of string must be less than, or equal to 250" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "LoginVM" + }, + "id": { + "element": "string", + "content": "definitions/LoginVM" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "channel" + }, + "value": { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MAIL" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "MOBILE_APP" + } + ] + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "password" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "- Length of string must be less than, or equal to 100\n- Length of string must be greater than, or equal to 4" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "rememberMe" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "secretCode" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "username" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "- Length of string must be less than, or equal to 50\n- Length of string must be greater than, or equal to 1" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "ManagedUserVM" + }, + "id": { + "element": "string", + "content": "definitions/ManagedUserVM" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "activated" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "authorities" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "email" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "- Length of string must be less than, or equal to 254\n- Length of string must be greater than, or equal to 5" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "firstName" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "- Length of string must be less than, or equal to 50" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "imageUrl" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "- Length of string must be less than, or equal to 256" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "langKey" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "- Length of string must be less than, or equal to 6\n- Length of string must be greater than, or equal to 2" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastName" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "- Length of string must be less than, or equal to 50" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "login" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "- Matches regex pattern: `^[_.@A-Za-z0-9-]*$`\n- Length of string must be less than, or equal to 50\n- Length of string must be greater than, or equal to 1" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "password" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "- Length of string must be less than, or equal to 100\n- Length of string must be greater than, or equal to 4" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "Root Type for InternalEducationGradeDTO" + }, + "description": { + "element": "string", + "content": "Medeni hal durum tanimlerini tutar." + }, + "id": { + "element": "string", + "content": "definitions/MaritalStatusDTO" + } + }, + "attributes": { + "samples": { + "element": "array", + "content": [ + { + "element": "object", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "content": 79 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority" + }, + "value": { + "element": "number", + "content": 31 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status" + }, + "value": { + "element": "boolean", + "content": true + } + } + } + ] + } + ] + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Oluşturan Kullanıcı" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Oluşturulma Tarihi\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Açıklama" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "ID unique alan\n\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son Güncelleyen" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son Güncellenme Zamanı\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "İsmi" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "orderPriority" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Sıralama Öncelik Bilgisi\n\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "status" + }, + "value": { + "element": "boolean", + "meta": { + "description": { + "element": "string", + "content": "Aktiflik Pasiflik Bilgisi" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "MaritalStatusLOV" + }, + "description": { + "element": "string", + "content": "Medeni hal durum tanimlerini tutar." + }, + "id": { + "element": "string", + "content": "definitions/MaritalStatusLOV" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Unique ID\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Adi" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "Root Type for InternalEducationGradeDTO" + }, + "description": { + "element": "string", + "content": "Mezhep tanımını tutar." + }, + "id": { + "element": "string", + "content": "definitions/MazhabDTO" + } + }, + "attributes": { + "samples": { + "element": "array", + "content": [ + { + "element": "object", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "content": 79 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority" + }, + "value": { + "element": "number", + "content": 31 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status" + }, + "value": { + "element": "boolean", + "content": true + } + } + } + ] + } + ] + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Oluşturan Kullanıcı" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Oluşturulma Tarihi\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Açıklama" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "ID unique alan\n\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son Güncelleyen" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son Güncellenme Zamanı\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "İsmi" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "orderPriority" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Sıralama Öncelik Bilgisi\n\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "status" + }, + "value": { + "element": "boolean", + "meta": { + "description": { + "element": "string", + "content": "Aktiflik Pasiflik Bilgisi" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "MazhabLOV" + }, + "description": { + "element": "string", + "content": "Mezhep tanımını tutar." + }, + "id": { + "element": "string", + "content": "definitions/MazhabLOV" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Unique ID\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Mezhep adi" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "MenuNodeCheckVM" + }, + "id": { + "element": "string", + "content": "definitions/MenuNodeCheckVM" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "isChecked" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "orderPriority" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "parentId" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "status" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "subMenus" + }, + "value": { + "element": "array", + "content": [ + { + "element": "definitions/MenuNodeCheckVM" + } + ] + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "MenuNodeDTO" + }, + "description": { + "element": "string", + "content": "Menulerin tanimlarinin yapildigi yerdir. @author The Aurora Developer team." + }, + "id": { + "element": "string", + "content": "definitions/MenuNodeDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Menuye ait aciklama bilgisidir.\n\n- Length of string must be less than, or equal to 1000" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "i18nName" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Menuye ait i18n bilgisidir.\n\n- Length of string must be less than, or equal to 1000" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "icon" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Menunun isminin yaninda gorunecek icon yoludur. bu yol genelde bir url'dir veya dosya yoludur.\n\n- Length of string must be less than, or equal to 1000" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "AutoIncrement Primary KEY\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degisiklik yapan Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degistirilme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "leaf" + }, + "value": { + "element": "boolean", + "meta": { + "description": { + "element": "string", + "content": "Menu dal mi, yaprak mi belirlemek icin kullanilir. eger true ise bunun altinda menu yoktur bu bir sayfayi acmak icin kullanilir. false ise ust menudur." + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Menuye ait isim bilgisidir. Menulerde gorunecek isimdir. Onemlidir.\n\n- Length of string must be less than, or equal to 50\n- Length of string must be greater than, or equal to 1" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "orderPriority" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Menunun listede goruntulenecek sirasidir.\n\n- Number must be less than, or equal to 999999\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "pageId" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Menu Node page urllerle olan bagini gostermektedir.\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "pageUrl" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ust menu bilgisini icermektedir." + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "parentId" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Ust menu bilgisini icermektedir.\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "parentName" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ust menu bilgisini icermektedir." + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "stateRef" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Menunun acacagi state referans bilgisi Orn:#/visitor\n\n- Length of string must be less than, or equal to 1000" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "status" + }, + "value": { + "element": "boolean", + "meta": { + "description": { + "element": "string", + "content": "Aktif pasiflik bilgisidir." + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "subMenus" + }, + "value": { + "element": "array", + "meta": { + "description": { + "element": "string", + "content": "Menulerin icerdigi alt menuleri listeler.." + } + }, + "content": [ + { + "element": "definitions/MenuNodeDTO" + } + ] + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "translation" + }, + "value": { + "element": "definitions/MenuNodeLangDTO" + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "MenuNodeLangDTO" + }, + "description": { + "element": "string", + "content": "Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team." + }, + "id": { + "element": "string", + "content": "definitions/MenuNodeLangDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "defaultLang" + }, + "value": { + "element": "boolean", + "meta": { + "description": { + "element": "string", + "content": "default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir." + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "ilgili dildeki, Uzun detayli aciklama bilgisi.\n\n- Length of string must be less than, or equal to 1000" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "AutoIncrement Primary KEY\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "langCode" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Dil kodu code bilgisinin icermektedir." + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "langId" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Dil kodu id bilgisinin icermektedir.\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "langName" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Dil kodu adidir." + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degisiklik yapan Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degistirilme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "ismin ilgili dildeki karsiligi\n\n- Length of string must be less than, or equal to 50\n- Length of string must be greater than, or equal to 1" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "ownerId" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Tercume edilen obje\n\n- Value must be of format 'int64'" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "MethodDefinitionDTO" + }, + "description": { + "element": "string", + "content": "Uygulamaya disaridan -java disinda- erisilebilecek methodlar burada tanimlanir. Orn- rest methodlari Bu tanim sayesinde yetkilendirme, loglama vb.. yapilabilir. @author The Aurora Developer team." + }, + "id": { + "element": "string", + "content": "definitions/MethodDefinitionDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "className" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Class ismi. User, UserService, PersonServiceImpl gibi...\n\n- Length of string must be less than, or equal to 250\n- Length of string must be greater than, or equal to 1" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Methodun detayli aciklamasi.\n\n- Length of string must be less than, or equal to 1000" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "fullName" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Methodun tam ismi. Package, class ve method isimlerinin birlesmis hali. tr.com.aurora.artes.User.getUserName\n\n- Length of string must be less than, or equal to 1000\n- Length of string must be greater than, or equal to 1" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "AutoIncrement Primary KEY\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "methodName" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Method ismi. getUserName gibi...\n\n- Length of string must be less than, or equal to 250\n- Length of string must be greater than, or equal to 1" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "orderPriority" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Siralama oncelik bilgisidir.\n\n- Number must be less than, or equal to 999999\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "packName" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Java Paket ismi. tr.com.aurora.artes, tr.com.aurora.hbys.permission gibi...\n\n- Length of string must be less than, or equal to 250\n- Length of string must be greater than, or equal to 1" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "status" + }, + "value": { + "element": "boolean", + "meta": { + "description": { + "element": "string", + "content": "Aktif pasiflik bilgisi." + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "userFriendlyName" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son kullanici tarafinda gorulup anlasilacak isim. eger bossa fullName goruntulenir.\n\n- Length of string must be less than, or equal to 1000" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "MilitaryDefermentInfoDTO" + }, + "description": { + "element": "string", + "content": "Bir kişinin tecil bilgisini tutar. Bir kişinin birden çok tecil bilgisi olabilir. Tecil bilgileri MilitaryInfoDTO içerisinde liste halinde tutulmaktadır. Bu dto bir kişinin askerlik bilgilerinin tamamını tutmaz. Sadece tek bir tecil bilgisini tutar." + }, + "id": { + "element": "string", + "content": "definitions/MilitaryDefermentInfoDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "defermentStatus" + }, + "value": { + "element": "definitions/MilitaryDefermentStatusLOV" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "endDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Tecil bitis tarihi\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degisiklik yapan Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degistirilme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "Root Type for InternalEducationGradeDTO" + }, + "description": { + "element": "string", + "content": "Tecil durumu tanımlarını tutar." + }, + "id": { + "element": "string", + "content": "definitions/MilitaryDefermentStatusDTO" + } + }, + "attributes": { + "samples": { + "element": "array", + "content": [ + { + "element": "object", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "content": 79 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority" + }, + "value": { + "element": "number", + "content": 31 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status" + }, + "value": { + "element": "boolean", + "content": true + } + } + } + ] + } + ] + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Oluşturan Kullanıcı" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Oluşturulma Tarihi\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Açıklama" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "ID unique alan\n\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son Güncelleyen" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son Güncellenme Zamanı\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "İsmi" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "orderPriority" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Sıralama Öncelik Bilgisi\n\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "status" + }, + "value": { + "element": "boolean", + "meta": { + "description": { + "element": "string", + "content": "Aktiflik Pasiflik Bilgisi" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "MilitaryDefermentStatusLOV" + }, + "description": { + "element": "string", + "content": "Tecil durumu tanımlarını tutar." + }, + "id": { + "element": "string", + "content": "definitions/MilitaryDefermentStatusLOV" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Unique ID\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Tecil durumu adı" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "MilitaryInfoDTO" + }, + "description": { + "element": "string", + "content": "Askerlik bilgileri. Kişiye ait askerlik başlangıç bitiş ve tecil bilgileri gibi bilgileri barındırır." + }, + "id": { + "element": "string", + "content": "definitions/MilitaryInfoDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "defermentInfos" + }, + "value": { + "element": "array", + "meta": { + "description": { + "element": "string", + "content": "Tecil bilgileri" + } + }, + "content": [ + { + "element": "definitions/MilitaryDefermentInfoDTO" + } + ] + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "endDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Askerlik hizmeti bitiş tarihi\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Unique ID\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degisiklik yapan Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degistirilme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "militaryStatus" + }, + "value": { + "element": "definitions/MilitaryStatusLOV" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "militaryStatusId" + }, + "value": { + "element": "definitions/MilitaryStatusLOV" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "startDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Askerlik hizmeti başlangıç tarihi\n\n- Value must be of format 'date-time'" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "Root Type for InternalEducationGradeDTO" + }, + "description": { + "element": "string", + "content": "Askerlik durumu tanımını tutar. Örneğin; ASKERDE, YAŞINI BEKLİYOR, TECİLLİ, MUAF,KAÇAK vs." + }, + "id": { + "element": "string", + "content": "definitions/MilitaryStatusDTO" + } + }, + "attributes": { + "samples": { + "element": "array", + "content": [ + { + "element": "object", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "content": 79 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority" + }, + "value": { + "element": "number", + "content": 31 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status" + }, + "value": { + "element": "boolean", + "content": true + } + } + } + ] + } + ] + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Oluşturan Kullanıcı" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Oluşturulma Tarihi\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Açıklama" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "ID unique alan\n\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son Güncelleyen" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son Güncellenme Zamanı\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "İsmi" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "orderPriority" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Sıralama Öncelik Bilgisi\n\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "status" + }, + "value": { + "element": "boolean", + "meta": { + "description": { + "element": "string", + "content": "Aktiflik Pasiflik Bilgisi" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "MilitaryStatusLOV" + }, + "description": { + "element": "string", + "content": "Askerlik durumu tanımını tutar. Örneğin; ASKERDE, YAŞINI BEKLİYOR, TECİLLİ, MUAF,KAÇAK vs." + }, + "id": { + "element": "string", + "content": "definitions/MilitaryStatusLOV" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Unique ID\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Askerlik durum adı" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "Root Type for InternalEducationGradeDTO" + }, + "description": { + "element": "string", + "content": "Mıntıka bilgisi Veri Modeli" + }, + "id": { + "element": "string", + "content": "definitions/MintikaDTO" + } + }, + "attributes": { + "samples": { + "element": "array", + "content": [ + { + "element": "object", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "content": 79 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority" + }, + "value": { + "element": "number", + "content": 31 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status" + }, + "value": { + "element": "boolean", + "content": true + } + } + } + ] + } + ] + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "bolgeId" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Mıntıkanın bölge bilgisi.\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Oluşturan Kullanıcı" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Oluşturulma Tarihi\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Açıklama" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "ID unique alan\n\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son Güncelleyen" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son Güncellenme Zamanı\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "İsmi" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "orderPriority" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Sıralama Öncelik Bilgisi\n\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "status" + }, + "value": { + "element": "boolean", + "meta": { + "description": { + "element": "string", + "content": "Aktiflik Pasiflik Bilgisi" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "MintikaLOV" + }, + "description": { + "element": "string", + "content": "Mintika tanimini tutar." + }, + "id": { + "element": "string", + "content": "definitions/MintikaLOV" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Unique ID\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Mintika adi. Kullanıcının tercih ettiği translation diline göre verilir." + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "OrganizationLangDTO" + }, + "description": { + "element": "string", + "content": "Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team." + }, + "id": { + "element": "string", + "content": "definitions/OrganizationLangDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "defaultLang" + }, + "value": { + "element": "boolean", + "meta": { + "description": { + "element": "string", + "content": "default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir." + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "ilgili dildeki, Uzun detayli aciklama bilgisi.\n\n- Length of string must be less than, or equal to 1000" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "AutoIncrement Primary KEY\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "langCode" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Dil kod bilgisi" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "langId" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Dil kodu bilgisinin icermektedir.\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "langName" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Dil kodu adidir." + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degisiklik yapan Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degistirilme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "ismin ilgili dildeki karsiligi\n\n- Length of string must be less than, or equal to 50\n- Length of string must be greater than, or equal to 1" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "ownerId" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'int64'" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "OrganizationLevelDTO" + }, + "description": { + "element": "string", + "content": "Tüzel veya gerçek kişilerin organizasyon ağacındaki hierarşisini taşır." + }, + "id": { + "element": "string", + "content": "definitions/OrganizationLevelDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "bolge" + }, + "value": { + "element": "definitions/BolgeLOV" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "corporation" + }, + "value": { + "element": "definitions/CorporationLOV" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degisiklik yapan Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degistirilme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "mintika" + }, + "value": { + "element": "definitions/MintikaLOV" + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "Root Type for InternalEducationGradeDTO" + }, + "description": { + "element": "string", + "content": "Kurumun mülkiyet durumları bilgisi." + }, + "id": { + "element": "string", + "content": "definitions/OwnershipStatusDTO" + } + }, + "attributes": { + "samples": { + "element": "array", + "content": [ + { + "element": "object", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "content": 79 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority" + }, + "value": { + "element": "number", + "content": 31 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status" + }, + "value": { + "element": "boolean", + "content": true + } + } + } + ] + } + ] + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Oluşturan Kullanıcı" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Oluşturulma Tarihi\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Açıklama" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "ID unique alan\n\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son Güncelleyen" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son Güncellenme Zamanı\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "İsmi" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "orderPriority" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Sıralama Öncelik Bilgisi\n\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "status" + }, + "value": { + "element": "boolean", + "meta": { + "description": { + "element": "string", + "content": "Aktiflik Pasiflik Bilgisi" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "description": { + "element": "string", + "content": "Kurumun mülkiyet durumları bilgisi." + }, + "id": { + "element": "string", + "content": "definitions/OwnershipStatusLOV" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "id bilgisi.\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Mülkiyet adı bilgisi." + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "PageDefinitionCheckVM" + }, + "id": { + "element": "string", + "content": "definitions/PageDefinitionCheckVM" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "isChecked" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "status" + }, + "value": { + "element": "boolean" + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "PageDefinitionDTO" + }, + "description": { + "element": "string", + "content": "Web UI sayfa(route, url) bilgilerini saklanacagi yerdir. Optional, Uygulamamizdaki web page bilgileri hatta bu page lerin yetki kisitlamasida buradan yapilabilir. @author The Aurora Developer team." + }, + "id": { + "element": "string", + "content": "definitions/PageDefinitionDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Uzun detayli aciklama bilgisi.\n\n- Length of string must be less than, or equal to 4000" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "AutoIncrement Primary KEY\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degisiklik yapan Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degistirilme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Kendine has uniqe isim bilgisi. Sayfa ismi\n\n- Length of string must be less than, or equal to 50\n- Length of string must be greater than, or equal to 1" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "parentId" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "page url tanimlarinin birbiriyle olan parent child iliskisi\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "parentName" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "shortName" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Kisa isim bilgisi.\n\n- Length of string must be less than, or equal to 30\n- Length of string must be greater than, or equal to 1" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "status" + }, + "value": { + "element": "boolean", + "meta": { + "description": { + "element": "string", + "content": "Aktiflik Pasiflik bilgisidir. Pasif ise erisime tamamen kapalidir." + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "url" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Sayfa veya sayfanin icindeki, servis cagrimi yapacak url bilgisidir. Sayfanin ana urlsi veya event icinde olabilir.\n\n- Length of string must be less than, or equal to 1000\n- Length of string must be greater than, or equal to 1" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "PartyRelationTypeLangDTO" + }, + "description": { + "element": "string", + "content": "Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team." + }, + "id": { + "element": "string", + "content": "definitions/PartyRelationTypeLangDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "defaultLang" + }, + "value": { + "element": "boolean", + "meta": { + "description": { + "element": "string", + "content": "default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir." + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "ilgili dildeki, Uzun detayli aciklama bilgisi.\n\n- Length of string must be less than, or equal to 1000" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "langCode" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "langId" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Dil kodu bilgisinin icermektedir.\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degisiklik yapan Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degistirilme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "ismin ilgili dildeki karsiligi\n\n- Length of string must be less than, or equal to 50\n- Length of string must be greater than, or equal to 1" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "ownerId" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Tercume edilen obje\n\n- Value must be of format 'int64'" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "PartyRoleTypeLangDTO" + }, + "description": { + "element": "string", + "content": "Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team." + }, + "id": { + "element": "string", + "content": "definitions/PartyRoleTypeLangDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "defaultLang" + }, + "value": { + "element": "boolean", + "meta": { + "description": { + "element": "string", + "content": "default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir." + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "ilgili dildeki, Uzun detayli aciklama bilgisi.\n\n- Length of string must be less than, or equal to 1000" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "langCode" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "langId" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Dil kodu bilgisinin icermektedir.\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degisiklik yapan Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degistirilme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "ismin ilgili dildeki karsiligi\n\n- Length of string must be less than, or equal to 50\n- Length of string must be greater than, or equal to 1" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "ownerId" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Tercume edilen obje\n\n- Value must be of format 'int64'" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "PasswordChangeDTO" + }, + "id": { + "element": "string", + "content": "definitions/PasswordChangeDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "currentPassword" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "newPassword" + }, + "value": { + "element": "string" + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "PersonPictureDTO" + }, + "description": { + "element": "string", + "content": "Öğrenci, veli, öğretmen, ihvan a ait vesikalık resimlerinin tutulduğu modeldir." + }, + "id": { + "element": "string", + "content": "definitions/PersonPictureDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Unique ID\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degisiklik yapan Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degistirilme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "url" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Picture url" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "PersonalGeneralInfoDTO" + }, + "description": { + "element": "string", + "content": "Personele ait genel tanımları tutar.( Hocaefendi, eğitim sorumlusu vb. )" + }, + "id": { + "element": "string", + "content": "definitions/PersonalGeneralInfoDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "childrenCount" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Cocuk sayisi\n\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "driverLicense" + }, + "value": { + "element": "array", + "meta": { + "description": { + "element": "string", + "content": "Surucu belgeleri" + } + }, + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "employmentStatus" + }, + "value": { + "element": "boolean", + "meta": { + "description": { + "element": "string", + "content": "Vazife durumu" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "houseOwner" + }, + "value": { + "element": "boolean", + "meta": { + "description": { + "element": "string", + "content": "Personelin ev sahipligi bilgisi" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "insurance" + }, + "value": { + "element": "boolean", + "meta": { + "description": { + "element": "string", + "content": "Sigortalilik durumu" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degisiklik yapan Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degistirilme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "residenceType" + }, + "value": { + "element": "definitions/ResidenceTypeLOV" + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "Root Type for InternalEducationGradeDTO" + }, + "description": { + "element": "string", + "content": "Vazife durumunu ifade eder. Örneğin : Ön vazifeli, Var, Yok gibi değerler alır. Bunlar şunu ifade eder rabıtası var, rabıtası yok, tesbihli." + }, + "id": { + "element": "string", + "content": "definitions/RabitaDTO" + } + }, + "attributes": { + "samples": { + "element": "array", + "content": [ + { + "element": "object", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "content": 79 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority" + }, + "value": { + "element": "number", + "content": 31 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status" + }, + "value": { + "element": "boolean", + "content": true + } + } + } + ] + } + ] + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Oluşturan Kullanıcı" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Oluşturulma Tarihi\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Açıklama" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "ID unique alan\n\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son Güncelleyen" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son Güncellenme Zamanı\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "İsmi" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "orderPriority" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Sıralama Öncelik Bilgisi\n\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "status" + }, + "value": { + "element": "boolean", + "meta": { + "description": { + "element": "string", + "content": "Aktiflik Pasiflik Bilgisi" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "ProfessionLOV" + }, + "description": { + "element": "string", + "content": "Meslek tanımlarını tutar." + }, + "id": { + "element": "string", + "content": "definitions/ProfessionLOV" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Unique ID\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degisiklik yapan Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degistirilme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Meslek adı" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "RabitaLOV" + }, + "description": { + "element": "string", + "content": "Vazife durumunu ifade eder. Örneğin : Ön vazifeli, Var, Yok gibi değerler alır. Bunlar şunu ifade eder rabıtası var, rabıtası yok, tesbihli." + }, + "id": { + "element": "string", + "content": "definitions/RabitaLOV" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Unique ID\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degisiklik yapan Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degistirilme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Rabita adi" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "ReferenceCodeDTO" + }, + "description": { + "element": "string", + "content": "Uyguluma icinde kullanilacak Ortak Referans kodlarini icerir. Referans Tipleri tablosuyla ManyToOne iliskisi vardir. Aylar:Ocak..Aralik, Gunler:Pazartesi...Pazar, cinsiyetler, @author The Aurora Developer team." + }, + "id": { + "element": "string", + "content": "definitions/ReferenceCodeDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "AutoIncrement Primary KEY\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degisiklik yapan Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degistirilme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "orderPriority" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Siralama oncelik bilgisidir.\n\n- Number must be less than, or equal to 999999\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "status" + }, + "value": { + "element": "boolean", + "meta": { + "description": { + "element": "string", + "content": "aktiflik pasiflik bilgisidir." + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "translation" + }, + "value": { + "element": "definitions/ReferenceCodeLangDTO" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "typeId" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Referans Tipi\n\n- Value must be of format 'int64'" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "ReferenceCodeLangDTO" + }, + "description": { + "element": "string", + "content": "Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team." + }, + "id": { + "element": "string", + "content": "definitions/ReferenceCodeLangDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "defaultLang" + }, + "value": { + "element": "boolean", + "meta": { + "description": { + "element": "string", + "content": "default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir." + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "ilgili dildeki, Uzun detayli aciklama bilgisi.\n\n- Length of string must be less than, or equal to 1000" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "AutoIncrement Primary KEY\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "langCode" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Dil kod bilgisi." + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "langId" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Dil kodu bilgisinin icermektedir.\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "langName" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Dil kodu adidir." + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degisiklik yapan Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degistirilme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "ismin ilgili dildeki karsiligi\n\n- Length of string must be less than, or equal to 50\n- Length of string must be greater than, or equal to 1" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "ownerId" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Tercume edilen obje\n\n- Value must be of format 'int64'" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "ReferenceTypeDTO" + }, + "description": { + "element": "string", + "content": "Uyguluma icinde kullanilacak Ortak Referans tiplerini icerir. Aylar, haftanin gunleri, cinsiyetler, @author The Aurora Developer team." + }, + "id": { + "element": "string", + "content": "definitions/ReferenceTypeDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Uzun Aciklama bilgisidir.\n\n- Length of string must be less than, or equal to 1000" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "AutoIncrement Primary KEY\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degisiklik yapan Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degistirilme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Kendine ozgu unique isim bilgisidir.\n\n- Length of string must be less than, or equal to 50\n- Length of string must be greater than, or equal to 1" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "Root Type for InternalEducationGradeDTO" + }, + "description": { + "element": "string", + "content": "Ikamet tür tanımlarını tutar. Örneğin; Kira, Kendi evi " + }, + "id": { + "element": "string", + "content": "definitions/ResidenceTypeDTO" + } + }, + "attributes": { + "samples": { + "element": "array", + "content": [ + { + "element": "object", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "content": 79 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority" + }, + "value": { + "element": "number", + "content": 31 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status" + }, + "value": { + "element": "boolean", + "content": true + } + } + } + ] + } + ] + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Oluşturan Kullanıcı" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Oluşturulma Tarihi\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Açıklama" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "ID unique alan\n\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son Güncelleyen" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son Güncellenme Zamanı\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "İsmi" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "orderPriority" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Sıralama Öncelik Bilgisi\n\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "status" + }, + "value": { + "element": "boolean", + "meta": { + "description": { + "element": "string", + "content": "Aktiflik Pasiflik Bilgisi" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "ResidenceTypeLOV" + }, + "description": { + "element": "string", + "content": "Ikamet tür tanımlarını tutar. Örneğin; Kira, Kendi evi " + }, + "id": { + "element": "string", + "content": "definitions/ResidenceTypeLOV" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Unique ID\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ikamet tür adı" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "Resource" + }, + "id": { + "element": "string", + "content": "definitions/Resource" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "file" + }, + "value": { + "element": "definitions/File" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "filename" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "inputStream" + }, + "value": { + "element": "definitions/InputStream" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "open" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "readable" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "uri" + }, + "value": { + "element": "definitions/URI" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "url" + }, + "value": { + "element": "definitions/URL" + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "ResponsibilitiesPermissionsCheckVM" + }, + "id": { + "element": "string", + "content": "definitions/ResponsibilitiesPermissionsCheckVM" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "className" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "methodFullName" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "methodId" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "methodName" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "packageName" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "permission" + }, + "value": { + "element": "enum", + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "ALLOW" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "BLANK" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "DENY" + } + ] + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "responsibilityId" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "responsibilityName" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "userFriendlyName" + }, + "value": { + "element": "string" + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "ResponsibilityCheckVM" + }, + "id": { + "element": "string", + "content": "definitions/ResponsibilityCheckVM" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "isChecked" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "orderPriority" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "status" + }, + "value": { + "element": "boolean" + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "ResponsibilityDTO" + }, + "description": { + "element": "string", + "content": "Rollerin sahip oldugu sorumluluklari ifade eder. Surec icerisindeki, en kucuk gorev, vazife ve is parcacigini, ifade eder. Bu tanim, Program tarafindan; Modeller ve actionlar uzerinden erisimi ayarlar. Ornek sorumluluk: Kullanici ekleyebilir(bu sayede kullanici ekle, sil, duzenle, kullaniciya departman ata, unvan tanimla vb..) Fatura Hazirlayabilir, Musteri Kaydi yapabilir, Tc Kimlik Biglisine Erisebilir gibi... @author The Aurora Developer team." + }, + "id": { + "element": "string", + "content": "definitions/ResponsibilityDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Sorumluluk detayli aciklama\n\n- Length of string must be less than, or equal to 1000" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "AutoIncrement Primary KEY\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degisiklik yapan Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degistirilme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Sorumluluk ismi, Keyi\n\n- Length of string must be less than, or equal to 50\n- Length of string must be greater than, or equal to 1" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "orderPriority" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Siralama oncelik bilgisidir.\n\n- Number must be less than, or equal to 999999\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "status" + }, + "value": { + "element": "boolean", + "meta": { + "description": { + "element": "string", + "content": "Aktif pasiflik bilgisi" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "ResponsibilityPermissionDTO" + }, + "description": { + "element": "string", + "content": "Sistemde tanimli olan sorumluluklara, yetki verme veya kisitlama yeridir. Sorumluluk ile methodlar eslestirilir. ALLOW, DENY secenekleri ile yetkilendirilir. @author The Aurora Developer team." + }, + "id": { + "element": "string", + "content": "definitions/ResponsibilityPermissionDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "AutoIncrement Primary KEY\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degisiklik yapan Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degistirilme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "methodFullName" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "methodId" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "methodlara-yetkilere sorumluluk eslestirme\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "permission" + }, + "value": { + "element": "enum", + "meta": { + "description": { + "element": "string", + "content": "Sorumlulugun, ilgili metoda ait, Yetki parametresidir." + } + }, + "attributes": { + "enumerations": { + "element": "array", + "content": [ + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "ALLOW" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "BLANK" + }, + { + "element": "string", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "fixed" + } + ] + } + }, + "content": "DENY" + } + ] + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "responsibilityId" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Sorumluluklara yetki eslestirme\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "responsibilityName" + }, + "value": { + "element": "string" + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "RouteRoleVM" + }, + "id": { + "element": "string", + "content": "definitions/RouteRoleVM" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "roles" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "routeUrl" + }, + "value": { + "element": "string" + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "SchoolProfileDTO" + }, + "description": { + "element": "string", + "content": "Bir okula ait bilgileri tutar. İlk okul - orta okul - lise - üniversite tipinde okulların tanımlarının yapıldığı modeldir." + }, + "id": { + "element": "string", + "content": "definitions/SchoolProfileDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "address" + }, + "value": { + "element": "array", + "meta": { + "description": { + "element": "string", + "content": "Okul adresi" + } + }, + "content": [ + { + "element": "definitions/AddressCardDTO" + } + ] + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "contacts" + }, + "value": { + "element": "array", + "meta": { + "description": { + "element": "string", + "content": "Iletisim bilgileri. Telefon mail vb." + } + }, + "content": [ + { + "element": "definitions/ContactInfoDTO" + } + ] + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Unique ID\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degisiklik yapan Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degistirilme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Okul adi. Kullanıcının tercih ettiği translation diline göre verilir." + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "type" + }, + "value": { + "element": "definitions/EducationalStageLOV" + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "SecretKeyDTO" + }, + "description": { + "element": "string", + "content": "OneTime Password olusturmak icin kullanilacak keydir. Her tip icin ayri aryi olusturulabilir @see SecretKeyType @author The Aurora Developer team." + }, + "id": { + "element": "string", + "content": "definitions/SecretKeyDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "aciklama\n\n- Length of string must be less than, or equal to 1000" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degisiklik yapan Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degistirilme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "adi\n\n- Length of string must be less than, or equal to 250" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "status" + }, + "value": { + "element": "boolean", + "meta": { + "description": { + "element": "string", + "content": "aktiflik bilgisi" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "typeId" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Anahtar tipi\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "userId" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "User id'si\n\n- Value must be of format 'int64'" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "SecretKeyTypeDTO" + }, + "description": { + "element": "string", + "content": "Uygulama uzerinde olsturulabilecek ikincil sifrelerin(login, vb..) tiplerinin belirlendigi yerdir. @author The Aurora Developer team." + }, + "id": { + "element": "string", + "content": "definitions/SecretKeyTypeDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "aciklama\n\n- Length of string must be less than, or equal to 1000" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degisiklik yapan Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degistirilme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "adi\n\n- Length of string must be less than, or equal to 250" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "status" + }, + "value": { + "element": "boolean", + "meta": { + "description": { + "element": "string", + "content": "aktiflik bilgisi" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "StateAddressDTO" + }, + "description": { + "element": "string", + "content": "State - Eyalet bilgilerinin tanimlarinin yapildigi objedir. view - goruntu objesidir. @see GeographicBoundary @see GeographicBoundaryType @author The Aurora Developer team." + }, + "id": { + "element": "string", + "content": "definitions/StateAddressDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "country" + }, + "value": { + "element": "definitions/CountryDTO" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "AutoIncrement Primary KEY\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degisiklik yapan Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degistirilme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "translation" + }, + "value": { + "element": "definitions/StateAddressLangDTO" + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "StateAddressLangDTO" + }, + "description": { + "element": "string", + "content": "Multi Language - farkli dillerdeki gosteriminin yapilacagi translate tablosudur. burada default bir kayit olmak zorundadir. bir tanesi default secilebilir.(constraint) eger dil secenegine ait kayit yoksa default isaretli olan kayit getirilir. @author The Aurora Developer team." + }, + "id": { + "element": "string", + "content": "definitions/StateAddressLangDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "defaultLang" + }, + "value": { + "element": "boolean", + "meta": { + "description": { + "element": "string", + "content": "default olarak gosterilmesi gereken ceviridir. henuz cevirisi yapilmadiysa defaultu gosterilir." + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "ilgili dildeki, Uzun detayli aciklama bilgisi.\n\n- Length of string must be less than, or equal to 1000" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "AutoIncrement Primary KEY\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lang" + }, + "value": { + "element": "definitions/LanguageCodeDTO" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degisiklik yapan Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degistirilme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "ismin ilgili dildeki karsiligi\n\n- Length of string must be less than, or equal to 50\n- Length of string must be greater than, or equal to 1" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "ownerId" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Tercume edilen obje\n\n- Value must be of format 'int64'" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "Root Type for InternalEducationGradeDTO" + }, + "description": { + "element": "string", + "content": "Talebe nevileridir. Örneğin; Orta okul, lise, üniversite, daimi, tekamul, daimi ortaokul, üniversite hazırlık" + }, + "id": { + "element": "string", + "content": "definitions/StudentClassificationDTO" + } + }, + "attributes": { + "samples": { + "element": "array", + "content": [ + { + "element": "object", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "content": 79 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority" + }, + "value": { + "element": "number", + "content": 31 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status" + }, + "value": { + "element": "boolean", + "content": true + } + } + } + ] + } + ] + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Oluşturan Kullanıcı" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Oluşturulma Tarihi\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Açıklama" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "ID unique alan\n\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son Güncelleyen" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son Güncellenme Zamanı\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "İsmi" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "orderPriority" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Sıralama Öncelik Bilgisi\n\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "status" + }, + "value": { + "element": "boolean", + "meta": { + "description": { + "element": "string", + "content": "Aktiflik Pasiflik Bilgisi" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "StudentClassificationLOV" + }, + "description": { + "element": "string", + "content": "Talebe nevileridir. Örneğin; Orta okul, lise, üniversite, daimi, tekamul, daimi ortaokul, üniversite hazırlık" + }, + "id": { + "element": "string", + "content": "definitions/StudentClassificationLOV" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Unique ID\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Talebe nevi adi" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "StudentCreateDTO" + }, + "description": { + "element": "string", + "content": "Talebe oluşturmak için kullanılır." + }, + "id": { + "element": "string", + "content": "definitions/StudentCreateDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "birthDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Dogum Tarihi\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "citizenNumber" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Vatandaslik numarasi" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "citizenshipId" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Kimlik sahibi olduğu ülke\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "corporationId" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Talebenin resmi kayıtlı olduğu ve kaldığı Kurum bilgisi\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createNote" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Oluşturma esnasında verilebilecek serbest açıklama alanı." + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "firstName" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Adi" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "formalEducationGradeId" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Orgun egitim sinif(seviye) idsi\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "genderId" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Cinsiyeti\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "guardians" + }, + "value": { + "element": "array", + "meta": { + "description": { + "element": "string", + "content": "Veli bilgileri" + } + }, + "content": [ + { + "element": "definitions/StudentGuardianCreateDTO" + } + ] + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "internalEducationGradeId" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Dahili egitim seviye idsi\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degisiklik yapan Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degistirilme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastName" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Soyadi" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "mobilePhoneNumber" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Cep telefonu numarasi" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "studentClassificationId" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Talebe nevisi idsi\n\n- Value must be of format 'int64'" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "StudentGuardianCreateDTO" + }, + "description": { + "element": "string", + "content": "Talebe velisi oluşturmak için kullanılır." + }, + "id": { + "element": "string", + "content": "definitions/StudentGuardianCreateDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "addresses" + }, + "value": { + "element": "array", + "meta": { + "description": { + "element": "string", + "content": "Velinin adres bilgisleri. Ev adresi, iş adresi." + } + }, + "content": [ + { + "element": "definitions/AddressCreateDTO" + } + ] + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "adherenceId" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Velinin merbutiyet bilgisi. Ihvan mı, muhibban mı, diger mi oldugunu gosterir.\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "contacts" + }, + "value": { + "element": "array", + "meta": { + "description": { + "element": "string", + "content": "Velinin iletişim bilgileri. Telefon, email vb." + } + }, + "content": [ + { + "element": "definitions/ContactInfoCreateDTO" + } + ] + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "identification" + }, + "value": { + "element": "definitions/IdentificationInfoDTO" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "isPrimary" + }, + "value": { + "element": "boolean", + "meta": { + "description": { + "element": "string", + "content": "Talebe velileri arasinda muhattap olarak alinacak birincil veli isareti." + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degisiklik yapan Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degistirilme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "professionId" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Velinin meslek bilgisi\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "typeId" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Velinin Yakınlık Bilgisi. Anne, Baba Amca vs....\n\n- Value must be of format 'int64'" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "StudentGuardianProfileDTO" + }, + "description": { + "element": "string", + "content": "Talebe veli bilgilerini tutar" + }, + "id": { + "element": "string", + "content": "definitions/StudentGuardianProfileDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "addresses" + }, + "value": { + "element": "array", + "meta": { + "description": { + "element": "string", + "content": "Address bilgileri" + } + }, + "content": [ + { + "element": "definitions/AddressCardDTO" + } + ] + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "adherence" + }, + "value": { + "element": "definitions/AdherenceLOV" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "birthDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Dogum Tarihi\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "citizenship" + }, + "value": { + "element": "definitions/CitizenshipLOV" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "contacts" + }, + "value": { + "element": "array", + "meta": { + "description": { + "element": "string", + "content": "Iletisim bilgileri" + } + }, + "content": [ + { + "element": "definitions/ContactInfoDTO" + } + ] + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "firstName" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Adi" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Unique ID\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "isPrimary" + }, + "value": { + "element": "boolean", + "meta": { + "description": { + "element": "string", + "content": "Talebe velileri arasinda muhattap olarak alinacak birincil veli isareti." + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degisiklik yapan Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degistirilme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastName" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Soyadi" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "type" + }, + "value": { + "element": "definitions/StudentGuardianTypeLOV" + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "Root Type for InternalEducationGradeDTO" + }, + "description": { + "element": "string", + "content": "Talebelerin velisinin yakınlık tipidir. Annesi, Babasi, Amcasi vs." + }, + "id": { + "element": "string", + "content": "definitions/StudentGuardianTypeDTO" + } + }, + "attributes": { + "samples": { + "element": "array", + "content": [ + { + "element": "object", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "content": 79 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority" + }, + "value": { + "element": "number", + "content": 31 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status" + }, + "value": { + "element": "boolean", + "content": true + } + } + } + ] + } + ] + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Oluşturan Kullanıcı" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Oluşturulma Tarihi\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Açıklama" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "ID unique alan\n\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son Güncelleyen" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son Güncellenme Zamanı\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "İsmi" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "orderPriority" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Sıralama Öncelik Bilgisi\n\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "status" + }, + "value": { + "element": "boolean", + "meta": { + "description": { + "element": "string", + "content": "Aktiflik Pasiflik Bilgisi" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "StudentGuardianTypeLOV" + }, + "description": { + "element": "string", + "content": "Talebelerin velisinin yakınlık tipidir. Annesi, Babasi, Amcasi vs." + }, + "id": { + "element": "string", + "content": "definitions/StudentGuardianTypeLOV" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Unique ID\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Veli tipi adi. " + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "StudentIdentificationInfoDTO" + }, + "description": { + "element": "string", + "content": "Talebeye ait kimlik bilgilerini tutar." + }, + "id": { + "element": "string", + "content": "definitions/StudentIdentificationInfoDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "birthDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Dogum Tarihi\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "birthPlaceName" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Dogum Yeri adi" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "citizenNumber" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Vatandaslik numarasi" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "citizenshipId" + }, + "value": { + "element": "definitions/CitizenshipLOV" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "firstName" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Adi" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "gender" + }, + "value": { + "element": "definitions/GenderLOV" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degisiklik yapan Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degistirilme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastName" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Soyadi" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "StudentListDTO" + }, + "description": { + "element": "string", + "content": "Talebenin listeleme işlemlerine ait verilerini tutar" + }, + "id": { + "element": "string", + "content": "definitions/StudentListDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "birthDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Dogum Tarihi\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "citizenNumber" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Vatandaslik Numarasi" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "firstName" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Adi" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "formalEducationGradeName" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eğitim seviyesi idsi" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "genderName" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Cinsiyeti" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Unique ID\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "internalEducationGradeName" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Dahili ders seviyesi" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degisiklik yapan Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degistirilme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastName" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Soyadi" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "organizationLevel" + }, + "value": { + "element": "definitions/OrganizationLevelDTO" + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "StudentProfileDTO" + }, + "description": { + "element": "string", + "content": "Talebe profil bilgilerini tutar" + }, + "id": { + "element": "string", + "content": "definitions/StudentProfileDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "formalEducationGrade" + }, + "value": { + "element": "definitions/FormalEducationGradeLOV" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Unique ID\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "identification" + }, + "value": { + "element": "definitions/StudentIdentificationInfoDTO" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "internalEducationGrade" + }, + "value": { + "element": "definitions/InternalEducationGradeLOV" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degisiklik yapan Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degistirilme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "organizationLevel" + }, + "value": { + "element": "definitions/OrganizationLevelDTO" + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "StudentReligiousInfoDTO" + }, + "description": { + "element": "string", + "content": "Talebenin dini bilgilerini tutar" + }, + "id": { + "element": "string", + "content": "definitions/StudentReligiousInfoDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Unique ID\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degisiklik yapan Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degistirilme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "mazhab" + }, + "value": { + "element": "definitions/MazhabLOV" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "rabita" + }, + "value": { + "element": "definitions/RabitaLOV" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "rabitaStartDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Rabita baslangic tarihi\n\n- Value must be of format 'date-time'" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "TeacherCreateDTO" + }, + "description": { + "element": "string", + "content": "Hocaefendi olusturmak için kullanılır. Şu an bu modelde vatandaşlık bilgisi alınmaktadır. Kimliğin ait olduğu ülke(citizenship) alınmaktadır. Nationality bilgisi yani doğduğu ülke bilgisi alınmamaktadır. \"pronunciationFullName\": \"some text\", \"regionalFullName\": \"some text\" Yukarıdaki bilgiler inputta alınmayacak şimdilik firstName ve lastName birleştirilip regionalFullName e basılacak." + }, + "id": { + "element": "string", + "content": "definitions/TeacherCreateDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "address" + }, + "value": { + "element": "definitions/AddressCreateDTO" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "birthDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Doğum tarihi\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "birthPlaceName" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Doğduğu yer" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "citizenNumber" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Vatandaşlık numarası" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "citizenshipId" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Kimlik sahibi olduğu ülke\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "contacts" + }, + "value": { + "element": "array", + "meta": { + "description": { + "element": "string", + "content": "İletişim bilgileri" + } + }, + "content": [ + { + "element": "definitions/ContactInfoCreateDTO" + } + ] + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "corporationId" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Personelin ait olduğu kurum\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createNote" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Oluşturma esnasında verilebilecek serbest açıklama alanı." + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "firstName" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Adı" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "genderId" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Cinsiyeti\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degisiklik yapan Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degistirilme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastName" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Soyadı" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "maritalStatusId" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Medeni durumu\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "tekamulGraduationDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Tekamulden mezun olduğu tarih\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "tekamulId" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Mezun olduğu tekamul yurdu\n\n- Value must be of format 'int64'" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "TeacherGraduationTekamulInfoDTO" + }, + "description": { + "element": "string", + "content": "Mezun olunan tekamul bilgileri ve vazife başlangıc tarihini tutar." + }, + "id": { + "element": "string", + "content": "definitions/TeacherGraduationTekamulInfoDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "corporation" + }, + "value": { + "element": "definitions/CorporationLOV" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "employmentDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Vazife baslangic tarihi\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "graduationDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Tekamul mezuniyet tarihi\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degisiklik yapan Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degistirilme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "TeacherIdentificationInfoDTO" + }, + "description": { + "element": "string", + "content": "Personele ait kimlik bilgilerini tutar." + }, + "id": { + "element": "string", + "content": "definitions/TeacherIdentificationInfoDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "birthDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Dogum Tarihi\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "birthPlaceName" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Dogum Yeri adi" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "citizenNumber" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Vatandaslik numarasi" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "citizenshipId" + }, + "value": { + "element": "definitions/CitizenshipLOV" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "fatherName" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Baba adi" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "firstName" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Adi" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "gender" + }, + "value": { + "element": "definitions/GenderLOV" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degisiklik yapan Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degistirilme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastName" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Soyadi" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "maritalStatus" + }, + "value": { + "element": "definitions/MaritalStatusLOV" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "motherName" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Anne adi" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "TeacherListDTO" + }, + "description": { + "element": "string", + "content": "Hocaefendilerin listeleme işlemlerine ait verilerini tutar." + }, + "id": { + "element": "string", + "content": "definitions/TeacherListDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "citizenNumber" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Citizen number" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "educationStatusName" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Personal education status" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "firstName" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Adi" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "graduationTekamulCorporation" + }, + "value": { + "element": "definitions/CorporationLOV" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Unique ID\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degisiklik yapan Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degistirilme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastName" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Soyadi" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "mainRoleName" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Personal main role name" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "maritalStatusName" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Personal marital status name" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "organizationLevel" + }, + "value": { + "element": "definitions/OrganizationLevelDTO" + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "TeacherProfileDTO" + }, + "description": { + "element": "string", + "content": "Personel kimlik bilgileri ve uzmanlık alanları ile ilgili bilgileri tutar." + }, + "id": { + "element": "string", + "content": "definitions/TeacherProfileDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "educationalStage" + }, + "value": { + "element": "definitions/EducationalStageLOV" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "generalInfo" + }, + "value": { + "element": "definitions/PersonalGeneralInfoDTO" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Unique ID\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "identification" + }, + "value": { + "element": "definitions/TeacherIdentificationInfoDTO" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degisiklik yapan Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degistirilme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "organizationLevel" + }, + "value": { + "element": "definitions/OrganizationLevelDTO" + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "TimeZoneDefinitionDTO" + }, + "description": { + "element": "string", + "content": "Zone Bilgilerini saklamaktadir. Dunyadaki ulke, zone ve gmt offset bilgileri yer almaktadir.ADAndorraEurope/Andorra72001464453737@author The Aurora Developer team." + }, + "id": { + "element": "string", + "content": "definitions/TimeZoneDefinitionDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "autoUpdate" + }, + "value": { + "element": "boolean", + "meta": { + "description": { + "element": "string", + "content": "Bu time zone bilgisinin otomatik update edilip edilmeyecegine karar verir." + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "countryCode" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "ulke kodu bilgisi. AD, AE, AF vs..." + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "countryName" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "ulke ismi bilgisi. Andorra, United Arab Emirates, Afghanistan vs..." + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "gmtOffset" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "gmt offset bilgisidir. The time offset in seconds based on UTC time.\n\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "AutoIncrement Primary KEY\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degisiklik yapan Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degistirilme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "orderPriority" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Siralama oncelik bilgisidir.\n\n- Number must be less than, or equal to 999999\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "status" + }, + "value": { + "element": "boolean", + "meta": { + "description": { + "element": "string", + "content": "aktiflik pasiflik bilgisidir." + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "zoneName" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "zone ismi bilgisi. Europe/Andorra, Asia/Dubai, Asia/Kabul vs..." + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "URI" + }, + "id": { + "element": "string", + "content": "definitions/URI" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "absolute" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "authority" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "fragment" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "host" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "opaque" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "path" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "port" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "query" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "rawAuthority" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "rawFragment" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "rawPath" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "rawQuery" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "rawSchemeSpecificPart" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "rawUserInfo" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "scheme" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "schemeSpecificPart" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "userInfo" + }, + "value": { + "element": "string" + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "URL" + }, + "id": { + "element": "string", + "content": "definitions/URL" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "authority" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "content" + }, + "value": { + "element": "object" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "defaultPort" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "file" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "host" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "path" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "port" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "protocol" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "query" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "ref" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "userInfo" + }, + "value": { + "element": "string" + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "User" + }, + "id": { + "element": "string", + "content": "definitions/User" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "activated" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "email" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "- Length of string must be less than, or equal to 254\n- Length of string must be greater than, or equal to 5" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "firstName" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "- Length of string must be less than, or equal to 50" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "imageUrl" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "- Length of string must be less than, or equal to 256" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "langKey" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "- Length of string must be less than, or equal to 6\n- Length of string must be greater than, or equal to 2" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastName" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "- Length of string must be less than, or equal to 50" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "required" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "login" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "- Matches regex pattern: `^[_.@A-Za-z0-9-]*$`\n- Length of string must be less than, or equal to 50\n- Length of string must be greater than, or equal to 1" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "resetDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'date-time'" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "UserAdditionDTO" + }, + "description": { + "element": "string", + "content": "User ile ilgili ek bilgilerin tutuldugu ve user objesi ile OneToOne iliskisinin kuruldugu objedir. Default User objesinin editlenmesi istenmiyor. Bu yuzden user ile ilgili ek ne bilgi varsa burada tutulmalidir. @author The Aurora Developer team." + }, + "id": { + "element": "string", + "content": "definitions/UserAdditionDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "AutoIncrement Primary KEY\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "individualId" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "individualRegionalFullName" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degisiklik yapan Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son degistirilme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "timeZoneId" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Kullanicinin zone bilgisi\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "timeZoneZoneName" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "userId" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Master user objesi\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "userLogin" + }, + "value": { + "element": "string" + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "UserCheckVM" + }, + "id": { + "element": "string", + "content": "definitions/UserCheckVM" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "email" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "- Length of string must be less than, or equal to 254\n- Length of string must be greater than, or equal to 5" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "firstName" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "- Length of string must be less than, or equal to 50" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "imageUrl" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "- Length of string must be less than, or equal to 256" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "isChecked" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastName" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "- Length of string must be less than, or equal to 50" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "login" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "- Matches regex pattern: `^[_.@A-Za-z0-9-]*$`\n- Length of string must be less than, or equal to 50\n- Length of string must be greater than, or equal to 1" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "UserDTO" + }, + "id": { + "element": "string", + "content": "definitions/UserDTO" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "activated" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "authorities" + }, + "value": { + "element": "array", + "content": [ + { + "element": "string" + } + ] + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "email" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "- Length of string must be less than, or equal to 254\n- Length of string must be greater than, or equal to 5" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "firstName" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "- Length of string must be less than, or equal to 50" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "imageUrl" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "- Length of string must be less than, or equal to 256" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "langKey" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "- Length of string must be less than, or equal to 6\n- Length of string must be greater than, or equal to 2" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastName" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "- Length of string must be less than, or equal to 50" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "login" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "- Matches regex pattern: `^[_.@A-Za-z0-9-]*$`\n- Length of string must be less than, or equal to 50\n- Length of string must be greater than, or equal to 1" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "UsersRolesCheckVM" + }, + "id": { + "element": "string", + "content": "definitions/UsersRolesCheckVM" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "isChecked" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "orderPriority" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "status" + }, + "value": { + "element": "boolean" + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "Root Type for InternalEducationGradeDTO" + }, + "description": { + "element": "string", + "content": "Ağırlık ölçü birimleridir. Ölçüm sistemi farketmez. Örneğin : kg, gr, ton, galon vb.." + }, + "id": { + "element": "string", + "content": "definitions/WeightMeasurementUnitDTO" + } + }, + "attributes": { + "samples": { + "element": "array", + "content": [ + { + "element": "object", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "content": 79 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "orderPriority" + }, + "value": { + "element": "number", + "content": 31 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "status" + }, + "value": { + "element": "boolean", + "content": true + } + } + } + ] + } + ] + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Oluşturan Kullanıcı" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Oluşturulma Tarihi\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Açıklama" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "ID unique alan\n\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son Güncelleyen" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Son Güncellenme Zamanı\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "İsmi" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "orderPriority" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Sıralama Öncelik Bilgisi\n\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "status" + }, + "value": { + "element": "boolean", + "meta": { + "description": { + "element": "string", + "content": "Aktiflik Pasiflik Bilgisi" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "WeightMeasurementUnitLOV" + }, + "description": { + "element": "string", + "content": "Ağırlık ölçü birimleridir. Ölçüm sistemi farketmez. Örneğin : kg, gr, ton, galon vb.." + }, + "id": { + "element": "string", + "content": "definitions/WeightMeasurementUnitLOV" + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Ekleyen Kullanici" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Eklenme zamani\n\n- Value must be of format 'date-time'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Unique ID\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Agirlik birim adi" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "Root Type for ProfessionDTO" + }, + "description": { + "element": "string", + "content": "Meslek tanımlarını tutan dtodur." + }, + "id": { + "element": "string", + "content": "definitions/ProfessionDTO" + } + }, + "attributes": { + "samples": { + "element": "array", + "content": [ + { + "element": "string", + "content": "{\n \"id\": 1,\n \"name\": \"\",\n \"description\": \"\"\n}" + } + ] + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Unique ID\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Meslek adı" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Meslek açıklaması" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "Root Type for CorporationOperationalPersonel" + }, + "description": { + "element": "string", + "content": "Kurumdaki aktif, operasyon yürüten personellerdir.\n1- Birincil derecede iletişim kurulacak insanlar\n2- Kurumdaki muhatablar" + }, + "id": { + "element": "string", + "content": "definitions/CorporationOperationalTeacherDTO" + } + }, + "attributes": { + "samples": { + "element": "array", + "content": [ + { + "element": "object", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "corporationId" + }, + "value": { + "element": "number", + "content": 6 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "content": 15 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "teacher" + }, + "value": { + "element": "object", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "content": 33 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "surname" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "duty" + }, + "value": { + "element": "object", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "dutyName" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "content": 46 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "organizationId" + }, + "value": { + "element": "number", + "content": 66 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "organizationName" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "contacts" + }, + "value": { + "element": "array", + "content": [ + { + "element": "object", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "categories" + }, + "value": { + "element": "array", + "content": [ + { + "element": "object", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "content": 27 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "content": "some text" + } + } + } + ] + }, + { + "element": "object", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "content": 73 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "content": "some text" + } + } + } + ] + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "contactInfo" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "content": 70 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + } + ] + }, + { + "element": "object", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "categories" + }, + "value": { + "element": "array", + "content": [ + { + "element": "object", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "content": 2 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "content": "some text" + } + } + } + ] + }, + { + "element": "object", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "content": 41 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "content": "some text" + } + } + } + ] + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "contactInfo" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "content": 52 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + } + ] + } + ] + } + } + } + ] + } + } + } + ] + } + ] + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "corporationId" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Kurum bilgisi\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Unique ID\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "teacher" + }, + "value": { + "element": "definitions/TeacherCardDTO" + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "Root Type for TeacherCardDTO" + }, + "description": { + "element": "string", + "content": "Personelin bilgilerini ihtiyaç duyulan basit bilgilerle taşıyan dto dur. Lov kadar az ver içermez TeacherDTO gibi bütün bilgileride taşımaz." + }, + "id": { + "element": "string", + "content": "definitions/TeacherCardDTO" + } + }, + "attributes": { + "samples": { + "element": "array", + "content": [ + { + "element": "object", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "content": 31 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "surname" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "duty" + }, + "value": { + "element": "object", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "dutyName" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "endDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "content": 87 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "organizationId" + }, + "value": { + "element": "number", + "content": 71 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "organizationName" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "startDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "contacts" + }, + "value": { + "element": "array", + "content": [ + { + "element": "object", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "categories" + }, + "value": { + "element": "array", + "content": [ + { + "element": "object", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "content": 15 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "content": "some text" + } + } + } + ] + }, + { + "element": "object", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "content": 52 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "content": "some text" + } + } + } + ] + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "contactInfo" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "content": 50 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + } + ] + }, + { + "element": "object", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "categories" + }, + "value": { + "element": "array", + "content": [ + { + "element": "object", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "content": 26 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "content": "some text" + } + } + } + ] + }, + { + "element": "object", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "content": 70 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "content": "some text" + } + } + } + ] + } + ] + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "contactInfo" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "createdDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "content": 13 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "lastModifiedBy" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "lastModifiedDate" + }, + "value": { + "element": "string", + "content": "2018-02-10T09:30Z" + } + } + } + ] + } + ] + } + } + } + ] + } + ] + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Personel idsi\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Adı" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "surname" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Soyadı" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "duty" + }, + "value": { + "element": "definitions/DutyDTO" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "contacts" + }, + "value": { + "element": "array", + "meta": { + "description": { + "element": "string", + "content": "Telefon ve mail bilgileri" + } + }, + "content": [ + { + "element": "definitions/ContactInfoDTO" + } + ] + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "Root Type for CorporationOperationalTeacherCreateDTO" + }, + "description": { + "element": "string", + "content": "Kurumdaki aktif, operasyon yürüten personel tanımlamak için kullanılır." + }, + "id": { + "element": "string", + "content": "definitions/CorporationOperationalTeacherCreateDTO" + } + }, + "attributes": { + "samples": { + "element": "array", + "content": [ + { + "element": "string", + "content": "{\n \"corporationId\": 6,\n \"id\": 15,\n \"teacherId\":1\n}" + } + ] + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "corporationId" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Kurum bilgisi\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Unique ID\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "teacherId" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Operasyonu yürüten personel bilgisi\n\n- Value must be of format 'int64'" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "Root Type for DocumentTypeClassLOV" + }, + "description": { + "element": "string", + "content": "Döküman tiplerini sınıflandırmak için kullanılan tanımdır. Örneğin; Öğrenci dökümanları, kurum dökümanları, personel dökümanları gibi." + }, + "id": { + "element": "string", + "content": "definitions/DocumentTypeClassLOV" + } + }, + "attributes": { + "samples": { + "element": "array", + "content": [ + { + "element": "string", + "content": "{\n \"id\": 1,\n \"name\": \"name\"\n}" + } + ] + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Unique ID\n\n- Value must be of format 'int64'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Class name" + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "Root Type for InternalClassGroupDTO" + }, + "description": { + "element": "string", + "content": "Dahili Ders Grubu veri modelidir." + }, + "id": { + "element": "string", + "content": "definitions/InternalClassGroupDTO" + } + }, + "attributes": { + "samples": { + "element": "array", + "content": [ + { + "element": "object", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "content": 72 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "descritpion" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "active" + }, + "value": { + "element": "boolean", + "content": true + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "academicYear" + }, + "value": { + "element": "object" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "internalClassLevel" + }, + "value": { + "element": "object" + } + } + } + ] + } + ] + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Dahili Ders grubu Unique ID\n\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Dahili Ders grubunun personeller tarafından anlaşılır kısa adı" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "descritpion" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Dahili Ders grubunun uzun açıklamasıdır. " + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "active" + }, + "value": { + "element": "boolean", + "meta": { + "description": { + "element": "string", + "content": "Dahili Ders grubunun aktiflik pasiflik durumunu ifade eder." + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "internalClassLevel" + }, + "value": { + "element": "object", + "meta": { + "description": { + "element": "string", + "content": "Dahili Ders grubuna dahil olan seviyelerdir. Örneğin tanımlarken kısıtlama yapıldığında; Bu seviyede (S1, S2 seviyesinde) talebe alınmasını sağlayacak." + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "academicYear" + }, + "value": { + "element": "object", + "meta": { + "description": { + "element": "string", + "content": "Dahili Ders seviyesinin geçerli olacağı akademik yıl veya yıllar bilgisidir." + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "code" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Dahili Ders grubuna verilen kısa kod bilgisidir. " + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "Root Type for EtudeGroup" + }, + "description": { + "element": "string", + "content": "Etüt grubu veri modeli. Etüt dimek Okul dersine takviye dimektir. Okuldaki sınıf seviyesine göre etüt grupları belirlenir." + }, + "id": { + "element": "string", + "content": "definitions/EtudeGroupDTO" + } + }, + "attributes": { + "samples": { + "element": "array", + "content": [ + { + "element": "object", + "content": [ + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "content": 16 + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "code" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "content": "some text" + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "active" + }, + "value": { + "element": "boolean", + "content": true + } + } + }, + { + "element": "member", + "content": { + "key": { + "element": "string", + "content": "academicYears" + }, + "value": { + "element": "object" + } + } + } + ] + } + ] + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "Etut grubu UNIQUE ID bilgisidir.\n\n- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "code" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Etude grubuna verilen kısa kod bilgisidir. S1-A : Seviye 1 A sınıfı" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "Etut grubunun uzun açıklama bilgisidir. " + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "active" + }, + "value": { + "element": "boolean", + "meta": { + "description": { + "element": "string", + "content": "Etut grubu aktiflik pasiflik bilgisidir." + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "academicYears" + }, + "value": { + "element": "object", + "meta": { + "description": { + "element": "string", + "content": "Etut grubunun dahil oldugu, Akademik yıl-yıllar bilgisidir. 2018-2019 eğitim öğretim yılı " + } + } + } + } + } + ] + } + }, + { + "element": "dataStructure", + "content": { + "element": "object", + "meta": { + "title": { + "element": "string", + "content": "Root Type for AcademicYear" + }, + "description": { + "element": "string", + "content": "Akademik yılların veri modelidir. Orn: 2018-2019 egitim ogretim yili" + }, + "id": { + "element": "string", + "content": "definitions/AcademicYearDTO" + } + }, + "attributes": { + "samples": { + "element": "array", + "content": [ + { + "element": "string", + "content": "{\n \"id\":1,\n \"name\":\"some text\",\n \"active\":true,\n \"code\":\"some text\",\n \"description\":\"some text\",\n \"startDate\":\"2018-09-14\",\n \"endDate\":\"2019-06-14\"\n}" + } + ] + } + }, + "content": [ + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "id" + }, + "value": { + "element": "number", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'int32'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "name" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "active" + }, + "value": { + "element": "boolean" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "code" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "description" + }, + "value": { + "element": "string" + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "startDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'date'" + } + } + } + } + }, + { + "element": "member", + "attributes": { + "typeAttributes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "optional" + } + ] + } + }, + "content": { + "key": { + "element": "string", + "content": "endDate" + }, + "value": { + "element": "string", + "meta": { + "description": { + "element": "string", + "content": "- Value must be of format 'date'" + } + } + } + } + } + ] + } + } + ] + } + ] + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 22 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 593 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 22 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 43 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 1237 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 43 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 73 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 2190 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 73 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 103 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 3096 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 103 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 133 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 4071 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 133 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 163 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 5039 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 163 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 191 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 5873 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 191 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 216 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 6603 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 216 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 464 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 14898 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 464 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 495 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 15864 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 495 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 525 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 16800 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 525 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 746 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 24067 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 746 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 773 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 24892 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 773 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 799 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 25667 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 799 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 959 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 31001 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 959 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 990 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 31988 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 990 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 1020 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 32948 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 1020 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 1153 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 37254 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 1153 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 1180 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 38091 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 1180 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 1206 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 38867 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 1206 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 1387 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 44924 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 1387 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 1418 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 45918 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 1418 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 1448 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 46883 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 1448 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 1602 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 51911 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 1602 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 1629 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 52752 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 1629 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 1656 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 53615 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 1656 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 1679 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 54495 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 1679 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 1701 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 55287 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 1701 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 1905 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 62111 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 1905 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 1936 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 63134 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 1936 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 1966 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 64136 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 1966 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 2143 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 69933 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 2143 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 2170 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 70791 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 2170 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 2197 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 71661 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 2197 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 2219 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 72440 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 2219 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 2393 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 78189 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 2393 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 2414 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 78815 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 2414 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 2444 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 79764 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 2444 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 2821 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 92305 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 2821 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 2852 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 93306 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 2852 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 2882 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 94278 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 2882 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 3232 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 105787 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 3232 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 3259 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 106632 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 3259 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 3285 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 107410 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 3285 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 3334 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 109107 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 3334 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 3365 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 110109 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 3365 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 3395 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 111075 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 3395 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 3422 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 111921 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 3422 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 3448 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 112740 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 3448 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 3502 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 114646 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 3502 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 3556 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 116558 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 3556 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 3611 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 118507 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 3611 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 3665 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 120438 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 3665 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 3719 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 122358 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 3719 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 3773 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 124243 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 3773 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 3801 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 125187 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 3801 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 3856 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 127116 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 3856 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 3911 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 129109 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 3911 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 3966 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 131137 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 3966 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 4021 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 133091 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 4021 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 4076 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 135031 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 4076 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 4131 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 137014 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 4131 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 4186 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 139039 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 4186 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 4241 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 141057 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 4241 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 4296 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 142980 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 4296 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 4588 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 152623 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 4588 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 4854 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 161260 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 4854 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 4882 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 162178 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 4882 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 4937 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 164135 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 4937 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 4992 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 166120 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 4992 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 5047 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 168094 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 5047 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 5102 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 170062 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 5102 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 5157 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 172026 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 5157 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 5212 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 173940 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 5212 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 5261 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 175654 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 5261 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 5292 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 176685 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 5292 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 5322 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 177685 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 5322 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 5349 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 178548 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 5349 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 5375 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 179326 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 5375 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 5493 + }, + "column": { + "element": "number", + "content": 26 + } + }, + "content": 183203 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 5493 + }, + "column": { + "element": "number", + "content": 33 + } + }, + "content": 7 + } + ] + } + ] + } + ] + } + }, + "content": "Expected type array but found type string" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 5494 + }, + "column": { + "element": "number", + "content": 26 + } + }, + "content": 183237 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 5494 + }, + "column": { + "element": "number", + "content": 33 + } + }, + "content": 7 + } + ] + } + ] + } + ] + } + }, + "content": "Expected type array but found type string" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 5495 + }, + "column": { + "element": "number", + "content": 26 + } + }, + "content": 183271 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 5495 + }, + "column": { + "element": "number", + "content": 33 + } + }, + "content": 7 + } + ] + } + ] + } + ] + } + }, + "content": "Expected type array but found type string" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 5496 + }, + "column": { + "element": "number", + "content": 26 + } + }, + "content": 183305 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 5496 + }, + "column": { + "element": "number", + "content": 33 + } + }, + "content": 7 + } + ] + } + ] + } + ] + } + }, + "content": "Expected type array but found type string" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 5497 + }, + "column": { + "element": "number", + "content": 26 + } + }, + "content": 183339 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 5497 + }, + "column": { + "element": "number", + "content": 33 + } + }, + "content": 7 + } + ] + } + ] + } + ] + } + }, + "content": "Expected type array but found type string" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 5498 + }, + "column": { + "element": "number", + "content": 26 + } + }, + "content": 183373 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 5498 + }, + "column": { + "element": "number", + "content": 33 + } + }, + "content": 7 + } + ] + } + ] + } + ] + } + }, + "content": "Expected type array but found type string" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 5551 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 185213 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 5551 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 5582 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 186215 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 5582 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 5612 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 187216 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 5612 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 5636 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 187989 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 5636 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 5666 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 188946 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 5666 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 5784 + }, + "column": { + "element": "number", + "content": 26 + } + }, + "content": 192823 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 5784 + }, + "column": { + "element": "number", + "content": 33 + } + }, + "content": 7 + } + ] + } + ] + } + ] + } + }, + "content": "Expected type array but found type string" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 5785 + }, + "column": { + "element": "number", + "content": 26 + } + }, + "content": 192857 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 5785 + }, + "column": { + "element": "number", + "content": 33 + } + }, + "content": 7 + } + ] + } + ] + } + ] + } + }, + "content": "Expected type array but found type string" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 5786 + }, + "column": { + "element": "number", + "content": 26 + } + }, + "content": 192891 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 5786 + }, + "column": { + "element": "number", + "content": 33 + } + }, + "content": 7 + } + ] + } + ] + } + ] + } + }, + "content": "Expected type array but found type string" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 5787 + }, + "column": { + "element": "number", + "content": 26 + } + }, + "content": 192925 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 5787 + }, + "column": { + "element": "number", + "content": 33 + } + }, + "content": 7 + } + ] + } + ] + } + ] + } + }, + "content": "Expected type array but found type string" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 5788 + }, + "column": { + "element": "number", + "content": 26 + } + }, + "content": 192959 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 5788 + }, + "column": { + "element": "number", + "content": 33 + } + }, + "content": 7 + } + ] + } + ] + } + ] + } + }, + "content": "Expected type array but found type string" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 5789 + }, + "column": { + "element": "number", + "content": 26 + } + }, + "content": 192993 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 5789 + }, + "column": { + "element": "number", + "content": 33 + } + }, + "content": 7 + } + ] + } + ] + } + ] + } + }, + "content": "Expected type array but found type string" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 5815 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 193801 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 5815 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 5842 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 194647 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 5842 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 5868 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 195467 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 5868 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 7118 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 241382 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 7118 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 7149 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 242455 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 7149 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 7179 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 243499 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 7179 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 7201 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 244246 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 7201 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 7231 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 245275 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 7231 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 8454 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 290159 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 8454 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 8481 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 291046 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 8481 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 8507 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 291851 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 8507 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 9198 + }, + "column": { + "element": "number", + "content": 26 + } + }, + "content": 317001 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 9198 + }, + "column": { + "element": "number", + "content": 44 + } + }, + "content": 18 + } + ] + } + ] + } + ] + } + }, + "content": "Expected type array but found type string" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 9199 + }, + "column": { + "element": "number", + "content": 26 + } + }, + "content": 317046 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 9199 + }, + "column": { + "element": "number", + "content": 38 + } + }, + "content": 12 + } + ] + } + ] + } + ] + } + }, + "content": "Expected type array but found type string" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 9200 + }, + "column": { + "element": "number", + "content": 26 + } + }, + "content": 317085 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 9200 + }, + "column": { + "element": "number", + "content": 39 + } + }, + "content": 13 + } + ] + } + ] + } + ] + } + }, + "content": "Expected type array but found type string" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 9201 + }, + "column": { + "element": "number", + "content": 26 + } + }, + "content": 317125 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 9201 + }, + "column": { + "element": "number", + "content": 37 + } + }, + "content": 11 + } + ] + } + ] + } + ] + } + }, + "content": "Expected type array but found type string" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 9202 + }, + "column": { + "element": "number", + "content": 26 + } + }, + "content": 317163 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 9202 + }, + "column": { + "element": "number", + "content": 38 + } + }, + "content": 12 + } + ] + } + ] + } + ] + } + }, + "content": "Expected type array but found type string" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 9203 + }, + "column": { + "element": "number", + "content": 26 + } + }, + "content": 317202 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 9203 + }, + "column": { + "element": "number", + "content": 33 + } + }, + "content": 7 + } + ] + } + ] + } + ] + } + }, + "content": "Expected type array but found type string" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 9204 + }, + "column": { + "element": "number", + "content": 26 + } + }, + "content": 317236 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 9204 + }, + "column": { + "element": "number", + "content": 42 + } + }, + "content": 16 + } + ] + } + ] + } + ] + } + }, + "content": "Expected type array but found type string" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 9914 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 343126 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 9914 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 9945 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 344170 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 9945 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 9975 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 345192 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 9975 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 10666 + }, + "column": { + "element": "number", + "content": 26 + } + }, + "content": 370342 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 10666 + }, + "column": { + "element": "number", + "content": 44 + } + }, + "content": 18 + } + ] + } + ] + } + ] + } + }, + "content": "Expected type array but found type string" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 10667 + }, + "column": { + "element": "number", + "content": 26 + } + }, + "content": 370387 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 10667 + }, + "column": { + "element": "number", + "content": 38 + } + }, + "content": 12 + } + ] + } + ] + } + ] + } + }, + "content": "Expected type array but found type string" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 10668 + }, + "column": { + "element": "number", + "content": 26 + } + }, + "content": 370426 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 10668 + }, + "column": { + "element": "number", + "content": 39 + } + }, + "content": 13 + } + ] + } + ] + } + ] + } + }, + "content": "Expected type array but found type string" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 10669 + }, + "column": { + "element": "number", + "content": 26 + } + }, + "content": 370466 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 10669 + }, + "column": { + "element": "number", + "content": 37 + } + }, + "content": 11 + } + ] + } + ] + } + ] + } + }, + "content": "Expected type array but found type string" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 10670 + }, + "column": { + "element": "number", + "content": 26 + } + }, + "content": 370504 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 10670 + }, + "column": { + "element": "number", + "content": 38 + } + }, + "content": 12 + } + ] + } + ] + } + ] + } + }, + "content": "Expected type array but found type string" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 10671 + }, + "column": { + "element": "number", + "content": 26 + } + }, + "content": 370543 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 10671 + }, + "column": { + "element": "number", + "content": 33 + } + }, + "content": 7 + } + ] + } + ] + } + ] + } + }, + "content": "Expected type array but found type string" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 10672 + }, + "column": { + "element": "number", + "content": 26 + } + }, + "content": 370577 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 10672 + }, + "column": { + "element": "number", + "content": 42 + } + }, + "content": 16 + } + ] + } + ] + } + ] + } + }, + "content": "Expected type array but found type string" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 11355 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 395436 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 11355 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 11382 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 396306 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 11382 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 11408 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 397080 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 11408 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 11872 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 412439 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 11872 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 11903 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 413434 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 11903 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 11933 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 414397 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 11933 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 12370 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 428753 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 12370 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 12392 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 429465 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 12392 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 12421 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 430374 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 12421 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 12448 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 431216 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 12448 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 12474 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 432022 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 12474 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 12767 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 441770 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 12767 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 12798 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 442821 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 12798 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 12828 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 443848 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 12828 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 13094 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 452564 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 13094 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 13121 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 453438 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 13121 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 13147 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 454236 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 13147 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 13438 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 463858 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 13438 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 13469 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 464895 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 13469 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 13499 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 465906 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 13499 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 13763 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 474496 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 13763 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 13790 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 475362 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 13790 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 13816 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 476136 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 13816 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 13840 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 476893 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 13840 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 13868 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 477804 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 13868 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 13890 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 478560 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 13890 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 13920 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 479559 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 13920 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 14163 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 487714 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 14163 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 14194 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 488744 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 14194 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 14224 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 489747 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 14224 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 14440 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 496856 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 14440 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 14501 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 499005 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 14501 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 14556 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 500929 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 14556 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 14583 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 501791 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 14583 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 14609 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 502585 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 14609 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 14748 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 507204 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 14748 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 14779 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 508234 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 14779 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 14809 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 509237 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 14809 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 14921 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 512812 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 14921 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 14975 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 514681 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 14975 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 15002 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 515543 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 15002 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 15030 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 516372 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 15030 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 15056 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 517217 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 15056 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 15301 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 525399 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 15301 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 15332 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 526435 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 15332 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 15362 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 527447 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 15362 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 15580 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 534597 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 15580 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 15607 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 535462 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 15607 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 15633 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 536300 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 15633 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 15752 + }, + "column": { + "element": "number", + "content": 26 + } + }, + "content": 540197 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 15752 + }, + "column": { + "element": "number", + "content": 31 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Expected type array but found type string" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 15753 + }, + "column": { + "element": "number", + "content": 26 + } + }, + "content": 540229 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 15753 + }, + "column": { + "element": "number", + "content": 31 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Expected type array but found type string" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 15754 + }, + "column": { + "element": "number", + "content": 26 + } + }, + "content": 540261 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 15754 + }, + "column": { + "element": "number", + "content": 30 + } + }, + "content": 4 + } + ] + } + ] + } + ] + } + }, + "content": "Expected type array but found type string" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 15844 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 543426 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 15844 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 15875 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 544533 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 15875 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 15905 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 545624 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 15905 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 16017 + }, + "column": { + "element": "number", + "content": 26 + } + }, + "content": 549271 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 16017 + }, + "column": { + "element": "number", + "content": 31 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Expected type array but found type string" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 16018 + }, + "column": { + "element": "number", + "content": 26 + } + }, + "content": 549303 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 16018 + }, + "column": { + "element": "number", + "content": 31 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Expected type array but found type string" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 16019 + }, + "column": { + "element": "number", + "content": 26 + } + }, + "content": 549335 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 16019 + }, + "column": { + "element": "number", + "content": 30 + } + }, + "content": 4 + } + ] + } + ] + } + ] + } + }, + "content": "Expected type array but found type string" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 16091 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 551789 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 16091 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 16121 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 552857 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 16121 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 16192 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 555362 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 16192 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 16219 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 556268 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 16219 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 16245 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 557063 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 16245 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 16299 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 558931 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 16299 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 16331 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 559960 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 16331 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 16370 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 561206 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 16370 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 16409 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 562473 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 16409 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 16448 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 563729 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 16448 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 16485 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 564898 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 16485 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 16552 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 567210 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 16552 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 16619 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 569509 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 16619 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 16687 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 571848 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 16687 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 16736 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 573660 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 16736 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 16792 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 575653 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 16792 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 16881 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 578935 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 16881 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 16915 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 580341 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 16915 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 16957 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 581897 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 16957 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 17006 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 583661 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 17006 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 17090 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 586725 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 17090 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 17199 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 590849 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 17199 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 17240 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 592354 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 17240 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 17263 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 593218 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 17263 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 17312 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 595080 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 17312 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 17335 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 595937 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 17335 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 17358 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 596843 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 17358 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 17407 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 598747 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 17407 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 17456 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 600607 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 17456 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 17479 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 601503 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 17479 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 17528 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 603383 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 17528 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 17577 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 605263 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 17577 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 17626 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 607107 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 17626 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 17675 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 609007 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 17675 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 17825 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 614582 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 17825 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 17917 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 617880 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 17917 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 18027 + }, + "column": { + "element": "number", + "content": 26 + } + }, + "content": 621449 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 18027 + }, + "column": { + "element": "number", + "content": 29 + } + }, + "content": 3 + } + ] + } + ] + } + ] + } + }, + "content": "Expected type array but found type string" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 18028 + }, + "column": { + "element": "number", + "content": 26 + } + }, + "content": 621479 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 18028 + }, + "column": { + "element": "number", + "content": 31 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Expected type array but found type string" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 18155 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 625995 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 18155 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 18194 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 627516 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 18194 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 18229 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 628893 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 18229 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 18383 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 635049 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 18383 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 18432 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 636901 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 18432 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 18470 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 638328 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 18470 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 18518 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 640138 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 18518 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 18572 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 642171 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 18572 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 18614 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 643714 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 18614 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 18652 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 645156 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 18652 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 18702 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 647220 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 18702 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 18756 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 649247 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 18756 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 18798 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 650803 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 18798 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 18839 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 652393 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 18839 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 18885 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 654106 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 18885 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 18943 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 656325 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 18943 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 18985 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 657909 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 18985 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 19024 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 659447 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 19024 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 19072 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 661381 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 19072 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 19116 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 663052 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 19116 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 19166 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 665141 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 19166 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 19220 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 667363 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 19220 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 19266 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 669028 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 19266 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 19304 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 670532 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 19304 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 19351 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 672301 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 19351 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 19387 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 673674 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 19387 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 19435 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 675522 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 19435 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 19473 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 677005 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 19473 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 19521 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 678799 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 19521 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 19575 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 680756 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 19575 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 19619 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 682373 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 19619 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 19817 + }, + "column": { + "element": "number", + "content": 26 + } + }, + "content": 688929 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 19817 + }, + "column": { + "element": "number", + "content": 29 + } + }, + "content": 3 + } + ] + } + ] + } + ] + } + }, + "content": "Expected type array but found type string" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 19818 + }, + "column": { + "element": "number", + "content": 26 + } + }, + "content": 688959 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 19818 + }, + "column": { + "element": "number", + "content": 31 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Expected type array but found type string" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 19892 + }, + "column": { + "element": "number", + "content": 26 + } + }, + "content": 691425 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 19892 + }, + "column": { + "element": "number", + "content": 34 + } + }, + "content": 8 + } + ] + } + ] + } + ] + } + }, + "content": "Expected type array but found type string" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 19893 + }, + "column": { + "element": "number", + "content": 26 + } + }, + "content": 691460 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 19893 + }, + "column": { + "element": "number", + "content": 33 + } + }, + "content": 7 + } + ] + } + ] + } + ] + } + }, + "content": "Expected type array but found type string" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 19894 + }, + "column": { + "element": "number", + "content": 26 + } + }, + "content": 691494 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 19894 + }, + "column": { + "element": "number", + "content": 32 + } + }, + "content": 6 + } + ] + } + ] + } + ] + } + }, + "content": "Expected type array but found type string" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 19895 + }, + "column": { + "element": "number", + "content": 26 + } + }, + "content": 691527 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 19895 + }, + "column": { + "element": "number", + "content": 31 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Expected type array but found type string" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 20062 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 697322 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 20062 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 20103 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 699097 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 20103 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 20136 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 700380 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 20136 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 20168 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 701513 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 20168 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 20218 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 703396 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 20218 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 20272 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 705395 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 20272 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 20316 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 707010 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 20316 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 20351 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 708384 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 20351 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 20399 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 710208 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 20399 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 20453 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 712201 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 20453 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 20497 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 713823 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 20497 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 20535 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 715162 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 20535 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 20567 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 716292 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 20567 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 20615 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 718121 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 20615 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 20669 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 720172 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 20669 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 20711 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 721739 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 20711 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 20749 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 723198 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 20749 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 20799 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 725201 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 20799 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 20853 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 727318 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 20853 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 20895 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 728873 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 20895 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 20927 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 730006 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 20927 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 20977 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 732009 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 20977 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 21031 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 734062 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 21031 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 21075 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 735732 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 21075 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 21116 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 737532 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 21116 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 21164 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 739435 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 21164 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 21197 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 740655 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 21197 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 21249 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 742750 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 21249 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 21293 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 744402 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 21293 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 21339 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 746126 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 21339 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 21387 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 747968 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 21387 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 21417 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 749058 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 21417 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 21465 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 750882 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 21465 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 21495 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 751971 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 21495 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 21543 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 753892 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 21543 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 21575 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 755020 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 21575 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 21626 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 757061 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 21626 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 21680 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 759089 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 21680 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 21721 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 760527 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 21721 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 21878 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 765727 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 21878 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 21909 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 766758 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 21909 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 21939 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 767763 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 21939 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 22069 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 771932 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 22069 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 22096 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 772795 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 22096 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 22122 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 773573 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 22122 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 22323 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 780204 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 22323 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 22354 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 781206 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 22354 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 22384 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 782177 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 22384 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 22558 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 787776 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 22558 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 22585 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 788622 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 22585 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 22611 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 789438 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 22611 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 22897 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 798989 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 22897 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 22928 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 800055 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 22928 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 22958 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 801100 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 22958 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 23217 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 809636 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 23217 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 23235 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 810211 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 23235 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 23262 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 811094 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 23262 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 23288 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 811884 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 23288 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 23513 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 819427 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 23513 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 23544 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 820450 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 23544 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 23574 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 821445 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 23574 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 23772 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 827956 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 23772 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 23799 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 828814 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 23799 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 23825 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 829611 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 23825 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 23893 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 831929 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 23893 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 23930 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 833072 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 23930 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 23979 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 834748 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 23979 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 24010 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 835714 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 24010 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 24040 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 836654 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 24040 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 24062 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 837311 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 24062 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 24116 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 839138 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 24116 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 24142 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 839934 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 24142 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 24168 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 840794 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 24168 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 25643 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 896059 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 25643 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 25683 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 897670 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 25683 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 25764 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 900701 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 25764 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 25844 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 903677 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 25844 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 25901 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 905654 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 25901 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 25962 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 907789 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 25962 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 26000 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 909230 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 26000 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 26080 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 912181 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 26080 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 26160 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 915130 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 26160 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 26217 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 917109 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 26217 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 26309 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 920384 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 26309 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 26386 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 923188 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 26386 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 26555 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 929581 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 26555 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 26635 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 932713 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 26635 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 26689 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 934847 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 26689 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 26788 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 938663 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 26788 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 26870 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 941857 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 26870 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 26924 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 943994 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 26924 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 26979 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 945893 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 26979 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 27017 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 947398 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 27017 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + }, + { + "element": "annotation", + "meta": { + "classes": { + "element": "array", + "content": [ + { + "element": "string", + "content": "warning" + } + ] + }, + "links": { + "element": "array", + "content": [ + { + "element": "link", + "attributes": { + "relation": { + "element": "string", + "content": "origin" + }, + "href": { + "element": "string", + "content": "http://docs.apiary.io/validations/swagger#swagger-validation" + } + } + } + ] + } + }, + "attributes": { + "code": { + "element": "number", + "content": 6 + }, + "sourceMap": { + "element": "array", + "content": [ + { + "element": "sourceMap", + "content": [ + { + "element": "array", + "content": [ + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 27161 + }, + "column": { + "element": "number", + "content": 18 + } + }, + "content": 952676 + }, + { + "element": "number", + "attributes": { + "line": { + "element": "number", + "content": 27161 + }, + "column": { + "element": "number", + "content": 23 + } + }, + "content": 5 + } + ] + } + ] + } + ] + } + }, + "content": "Invalid content type '*/*', invalid media type" + } + ] +} \ No newline at end of file diff --git a/packages/fury-cli/package.json b/packages/cli/package.json similarity index 89% rename from packages/fury-cli/package.json rename to packages/cli/package.json index e1a680efd..6fd5953fe 100644 --- a/packages/fury-cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { - "name": "fury-cli", - "version": "0.9.4", + "name": "@apielements/cli", + "version": "0.10.0", "description": "Command line tool interface for Fury.js", "author": "Apiary.io ", "license": "MIT", @@ -10,11 +10,11 @@ "files": [ "lib/fury.js" ], - "homepage": "https://github.com/apiaryio/api-elements.js/tree/master/packages/fury-cli", + "homepage": "https://github.com/apiaryio/api-elements.js/tree/master/packages/cli", "repository": { "type": "git", "url": "https://github.com/apiaryio/api-elements.js.git", - "directory": "packages/fury-cli" + "directory": "packages/cli" }, "scripts": { "lint": "eslint .", From 868343a11a198b27131eb55d7d648933bab810c1 Mon Sep 17 00:00:00 2001 From: Kyle Fuller Date: Fri, 12 Jun 2020 13:31:35 +0100 Subject: [PATCH 3/3] chore(project): release adapters for @apielements/core --- packages/apiaryb-parser/CHANGELOG.md | 4 ++++ packages/apiaryb-parser/package.json | 2 +- packages/apib-parser/CHANGELOG.md | 4 ++++ packages/apib-parser/package.json | 2 +- packages/apib-serializer/CHANGELOG.md | 4 ++++ packages/apib-serializer/package.json | 2 +- packages/cli/package.json | 10 +++++----- packages/openapi2-parser/CHANGELOG.md | 4 ++++ packages/openapi2-parser/package.json | 2 +- packages/openapi3-parser/CHANGELOG.md | 4 ++++ packages/openapi3-parser/package.json | 2 +- packages/remote/CHANGELOG.md | 4 ++++ packages/remote/package.json | 2 +- 13 files changed, 35 insertions(+), 11 deletions(-) diff --git a/packages/apiaryb-parser/CHANGELOG.md b/packages/apiaryb-parser/CHANGELOG.md index 4f3868b2d..7ec120c62 100644 --- a/packages/apiaryb-parser/CHANGELOG.md +++ b/packages/apiaryb-parser/CHANGELOG.md @@ -1,5 +1,9 @@ # API Elements: Apiary Blueprint Parser Changelog +## 0.2.0 (2020-06-12) + +The package has been updated for compatibility with `@apielements/core`. + ## 0.1.0 (2020-04-30) The package has been renamed to `@apielements/apiaryb-parser`. diff --git a/packages/apiaryb-parser/package.json b/packages/apiaryb-parser/package.json index a0ac3f325..ec33e9231 100644 --- a/packages/apiaryb-parser/package.json +++ b/packages/apiaryb-parser/package.json @@ -1,6 +1,6 @@ { "name": "@apielements/apiaryb-parser", - "version": "0.1.0", + "version": "0.2.0", "description": "API Elements parser for deprecated Apiary Blueprint language", "author": "Apiary.io ", "license": "MIT", diff --git a/packages/apib-parser/CHANGELOG.md b/packages/apib-parser/CHANGELOG.md index 2d1a904ef..a136d874b 100644 --- a/packages/apib-parser/CHANGELOG.md +++ b/packages/apib-parser/CHANGELOG.md @@ -1,5 +1,9 @@ # API Elements: API Blueprint Parser Changelog +## 0.20.0 (2020-06-12) + +The package has been updated for compatibility with `@apielements/core`. + ## 0.19.0 (2020-04-29) The package has been renamed to `@apielements/apib-parser`. diff --git a/packages/apib-parser/package.json b/packages/apib-parser/package.json index 831cc9cdd..827d0a28c 100644 --- a/packages/apib-parser/package.json +++ b/packages/apib-parser/package.json @@ -1,6 +1,6 @@ { "name": "@apielements/apib-parser", - "version": "0.19.0", + "version": "0.20.0", "description": "API Blueprint parser for API Elements", "author": "Apiary.io ", "license": "MIT", diff --git a/packages/apib-serializer/CHANGELOG.md b/packages/apib-serializer/CHANGELOG.md index 48622655c..ad2e4190e 100644 --- a/packages/apib-serializer/CHANGELOG.md +++ b/packages/apib-serializer/CHANGELOG.md @@ -1,5 +1,9 @@ # API Elements: API Blueprint Serializer Changelog +## 0.16.0 (2020-06-12) + +The package has been updated for compatibility with `@apielements/core`. + ## 0.15.0 (2020-04-30) The package has been renamed to `@apielements/apib-serializer`. diff --git a/packages/apib-serializer/package.json b/packages/apib-serializer/package.json index 79da8d69a..de63b662b 100644 --- a/packages/apib-serializer/package.json +++ b/packages/apib-serializer/package.json @@ -1,6 +1,6 @@ { "name": "@apielements/apib-serializer", - "version": "0.15.0", + "version": "0.16.0", "description": "API Blueprint serializer for API Elements", "author": "Apiary.io ", "license": "MIT", diff --git a/packages/cli/package.json b/packages/cli/package.json index 6fd5953fe..50429579f 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -22,12 +22,12 @@ "test": "exit 0" }, "dependencies": { - "@apielements/apiaryb-parser": "^0.1.0", - "@apielements/apib-parser": "^0.19.0", - "@apielements/apib-serializer": "^0.15.0", + "@apielements/apiaryb-parser": "^0.2.0", + "@apielements/apib-parser": "^0.20.0", + "@apielements/apib-serializer": "^0.16.0", "@apielements/core": "^0.1.0", - "@apielements/openapi2-parser": "^0.31.1", - "@apielements/openapi3-parser": "^0.12.3", + "@apielements/openapi2-parser": "^0.32.0", + "@apielements/openapi3-parser": "^0.13.0", "cardinal": "^2.1.1", "commander": "^5.1.0", "js-yaml": "^3.12.0", diff --git a/packages/openapi2-parser/CHANGELOG.md b/packages/openapi2-parser/CHANGELOG.md index 68e5d34e2..465a0fd9a 100644 --- a/packages/openapi2-parser/CHANGELOG.md +++ b/packages/openapi2-parser/CHANGELOG.md @@ -1,5 +1,9 @@ # API Elements: OpenAPI 2 Parser Changelog +## 0.32.0 (2020-06-12) + +The package has been updated for compatibility with `@apielements/core`. + ## 0.31.1 (2020-06-09) ### Bug Fixes diff --git a/packages/openapi2-parser/package.json b/packages/openapi2-parser/package.json index 35df7e981..10823ff33 100644 --- a/packages/openapi2-parser/package.json +++ b/packages/openapi2-parser/package.json @@ -1,6 +1,6 @@ { "name": "@apielements/openapi2-parser", - "version": "0.31.1", + "version": "0.32.0", "description": "Swagger 2.0 parser for Fury.js", "author": "Apiary.io ", "license": "MIT", diff --git a/packages/openapi3-parser/CHANGELOG.md b/packages/openapi3-parser/CHANGELOG.md index 773357c87..008b49b1c 100644 --- a/packages/openapi3-parser/CHANGELOG.md +++ b/packages/openapi3-parser/CHANGELOG.md @@ -1,5 +1,9 @@ # Fury OAS3 Parser Changelog +## 0.13.0 (2020-06-12) + +The package has been updated for compatibility with `@apielements/core`. + ## 0.12.3 (2020-06-10) ### Bug Fixes diff --git a/packages/openapi3-parser/package.json b/packages/openapi3-parser/package.json index c3fe84eca..f749c1118 100644 --- a/packages/openapi3-parser/package.json +++ b/packages/openapi3-parser/package.json @@ -1,6 +1,6 @@ { "name": "@apielements/openapi3-parser", - "version": "0.12.3", + "version": "0.13.0", "description": "Open API Specification 3 API Elements Parser", "author": "Apiary.io ", "license": "MIT", diff --git a/packages/remote/CHANGELOG.md b/packages/remote/CHANGELOG.md index 11f94a593..49fab2a4c 100644 --- a/packages/remote/CHANGELOG.md +++ b/packages/remote/CHANGELOG.md @@ -1,5 +1,9 @@ # API Elements: Remote Adapter Changelog +## 0.6.0 (2020-06-12) + +The package has been updated for compatibility with `@apielements/core`. + ## 0.5.1 (2020-06-10) The package has been renamed to `@apielements/remote`. diff --git a/packages/remote/package.json b/packages/remote/package.json index d12e9048f..b551abb9b 100644 --- a/packages/remote/package.json +++ b/packages/remote/package.json @@ -1,6 +1,6 @@ { "name": "@apielements/remote", - "version": "0.5.1", + "version": "0.6.0", "description": "API Elements adapter for performing actions via a remote API", "author": "Apiary.io ", "license": "MIT",