12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- {
- "definitions": {
- "active": {
- "type": "boolean"
- },
- "userName": {
- "type": "string"
- },
- "schemas": {
- "type": "array",
- "items": {
- "type": "string"
- }
- },
- "name": {
- "type": "object",
- "properties": {
- "givenName": {
- "type": "string"
- },
- "familyName": {
- "type": "string"
- }
- }
- },
- "emails": {
- "type": "array",
- "items": {
- "type": "object",
- "properties": {
- "type": {
- "type": "string"
- },
- "value": {
- "type": "string"
- },
- "primary": {
- "type": "boolean"
- }
- }
- }
- },
- "meta": {
- "type": "object",
- "properties": {
- "resourceType": {
- "type": "string"
- }
- }
- }
- },
- "User": {
- "type": "object",
- "required": ["schemas","id","active","userName","name","meta","emails"],
- "properties": {
- "schemas": {"$ref": "#/definitions/schemas"},
- "id": {
- "type": "string"
- },
- "active": {"$ref": "#/definitions/active"},
- "userName": {"$ref": "#/definitions/userName"},
- "name": {"$ref": "#/definitions/name"},
- "meta": {"$ref": "#/definitions/meta"},
- "emails": {"$ref": "#/definitions/emails"}
- }
- }
- }
|